/* ============================================
   MISSION Section — Hero
   ============================================ */
.mission-section {
  padding: 140px 0 100px;
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fbfd 0%, #fff 40%, #fff 100%);
}

.mission-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.mission-description {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

/* ---------- background layer ---------- */
.mission-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mission-bg__shape {
  position: absolute;
  border-radius: 50%;
}

/* Large primary blob — top-left, strong presence */
.mission-bg__shape--1 {
  width: 800px;
  height: 800px;
  top: -300px;
  left: -200px;
  background: radial-gradient(
    ellipse 60% 55% at 55% 55%,
    rgba(9, 147, 176, 0.28) 0%,
    rgba(25, 192, 215, 0.14) 40%,
    rgba(89, 213, 230, 0.04) 70%,
    transparent 100%
  );
  animation: float-slow 18s ease-in-out infinite;
}

/* Right sweep — large, overlapping */
.mission-bg__shape--2 {
  width: 650px;
  height: 650px;
  top: -20px;
  right: -200px;
  background: radial-gradient(
    ellipse 55% 60% at 45% 50%,
    rgba(89, 213, 230, 0.26) 0%,
    rgba(25, 192, 215, 0.10) 45%,
    transparent 100%
  );
  animation: float-slow 22s ease-in-out infinite reverse;
}

/* Mid-right glow orb */
.mission-bg__shape--3 {
  width: 340px;
  height: 340px;
  bottom: 40px;
  right: 8%;
  background: radial-gradient(circle, rgba(25, 192, 215, 0.25) 0%, rgba(89, 213, 230, 0.08) 50%, transparent 70%);
  filter: blur(30px);
  animation: float-slow 14s ease-in-out infinite;
}

/* Small accent orb — center area */
.mission-bg__shape--4 {
  width: 180px;
  height: 180px;
  top: 35%;
  left: 50%;
  background: radial-gradient(circle, rgba(9, 147, 176, 0.20) 0%, transparent 70%);
  filter: blur(16px);
  animation: float-slow 10s ease-in-out infinite reverse;
}


@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(12px, -18px) scale(1.02); }
  66%      { transform: translate(-8px, 10px) scale(0.98); }
}

@media (max-width: 768px) {
  .mission-section {
    min-height: 460px;
    padding: 120px 0 80px;
  }

  .mission-bg__shape--1 {
    width: 480px;
    height: 480px;
    top: -200px;
    left: -160px;
  }

  .mission-bg__shape--2 {
    width: 360px;
    height: 360px;
    top: -20px;
    right: -140px;
  }

  .mission-bg__shape--3 {
    width: 200px;
    height: 200px;
    bottom: 20px;
    right: 0;
  }

  .mission-bg__shape--4 {
    display: none;
  }
}

/* ============================================
   VISION Section
   ============================================ */
.vision-section {
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ---------- background layer ---------- */
.vision-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.vision-bg__shape {
  position: absolute;
  border-radius: 50%;
}

/* Large centre blob */
.vision-bg__shape--1 {
  width: 700px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 60% 55% at 50% 50%,
    rgba(9, 147, 176, 0.22) 0%,
    rgba(25, 192, 215, 0.10) 40%,
    rgba(89, 213, 230, 0.03) 70%,
    transparent 100%
  );
  animation: float-slow 20s ease-in-out infinite;
}

/* Secondary offset blob */
.vision-bg__shape--2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 55% 60% at 50% 50%,
    rgba(89, 213, 230, 0.18) 0%,
    rgba(25, 192, 215, 0.06) 50%,
    transparent 100%
  );
  animation: float-slow 16s ease-in-out infinite reverse;
}

.vision-content {
  position: relative;
  z-index: 1;
}

.vision-label {
  text-align: center;
}

.vision-text {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vision-text {
    font-size: var(--font-size-xl);
  }

  .vision-bg__shape--1 {
    width: 420px;
    height: 320px;
  }

  .vision-bg__shape--2 {
    width: 260px;
    height: 260px;
  }
}

/* ============================================
   VALUES Section
   ============================================ */
.values-section {
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  background: var(--color-bg-gray);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.value-card__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.value-card__label {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.value-card__number {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1;
}

.value-card__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICE Section
   ============================================ */
.service-section {
  position: relative;
  overflow: hidden;
}

.service-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 192, 215, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}

.service-subtitle {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.service-name {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.service-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: var(--space-lg);
}

.service-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .service-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .service-image {
    order: -1;
  }

  .service-section::after {
    width: 250px;
    height: 250px;
    right: -80px;
  }
}

/* ============================================
   COMPANY Section
   ============================================ */
.company-content {
  max-width: 700px;
}

.company-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.company-map-link:hover {
  text-decoration: underline;
}

.company-cta {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: flex-end;
}

/* ============================================
   NEWS Section
   ============================================ */
.news-list {
  border-top: 1px solid var(--color-border);
}

.news-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.news-date {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  flex-shrink: 0;
  width: 100px;
}

.news-title {
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    gap: var(--space-xs);
  }
}
