/* ===== Hero slider ===== */
.hero {
  position: relative;
  height: min(80vh, 640px);
  min-height: 420px;
  overflow: hidden;
  margin-top: -84px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 39, 80, 0.55) 0%, rgba(20, 39, 80, 0.35) 60%, rgba(20, 39, 80, 0.7) 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
}

.hero__en {
  font-size: 14px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.5;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero__lead {
  margin-top: 20px;
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.9);
}

.hero__btn {
  margin-top: 36px;
}

.hero__dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero__dot.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

/* ===== Mission ===== */
.mission {
  padding: 100px 4% 0;
  text-align: center;
}

.mission__inner {
  max-width: 760px;
  margin: 0 auto;
}

.mission__lead {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.7;
}

.mission__text {
  margin-top: 24px;
  color: var(--text-light);
  font-size: 15px;
}

/* ===== Service cards ===== */
.service {
  padding: 100px 4%;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.serviceCard {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.serviceCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(20, 39, 80, 0.16);
}

.serviceCard__imgWrap {
  height: 220px;
  overflow: hidden;
}

.serviceCard__imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.serviceCard:hover .serviceCard__imgWrap img {
  transform: scale(1.08);
}

.serviceCard__body {
  padding: 28px 28px 32px;
}

.serviceCard__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(240, 121, 26, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.serviceCard__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
}

.serviceCard__text {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.serviceCard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.25s ease;
}

.serviceCard__link:hover {
  gap: 10px;
}

@media screen and (max-width: 760px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About preview ===== */
.aboutPreview {
  padding: 0 4% 100px;
}

.aboutPreview__inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.aboutPreview__row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.aboutPreview__row:last-child {
  border-bottom: none;
}

.aboutPreview__label {
  width: 8em;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--blue);
}

.aboutPreview__more {
  text-align: center;
  margin-top: 32px;
}

@media screen and (max-width: 600px) {
  .aboutPreview__inner {
    padding: 32px 24px;
  }

  .aboutPreview__row {
    flex-direction: column;
    gap: 4px;
  }

  .aboutPreview__label {
    width: auto;
  }
}

/* ===== News preview ===== */
.newsPreview {
  padding: 0 4% 100px;
}

.newsList {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.newsList__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s ease;
}

.newsList__item:hover {
  background: var(--bg-soft);
}

.newsList__date {
  font-size: 13px;
  color: var(--text-light);
  flex-shrink: 0;
}

.newsList__empty {
  text-align: center;
  padding: 48px 8px;
  color: var(--text-light);
  font-size: 14px;
}

.newsPreview__more {
  text-align: center;
  margin-top: 32px;
}