.applications-main {
  padding-bottom: 34px;
}

.app-hero {
  position: relative;
  min-height: clamp(340px, 46vh, 460px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #00142d;
}

.app-hero-visual {
  position: absolute;
  inset: 0;
}

.app-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.05);
  animation: appHeroZoom 4s ease-out forwards;
}

.app-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 45, 0.45);
}

.app-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(36px, 5vh, 52px) 0;
  display: flex;
  justify-content: center;
}

.app-hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.app-hero-eyebrow,
.app-hero-title,
.app-hero-desc,
.app-hero-cta {
  opacity: 0;
  transform: translateY(40px);
}

.app-hero-eyebrow {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: appHeroFadeUp 0.8s ease forwards;
}

.app-hero-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: appHeroFadeUp 0.8s ease forwards;
}

.app-hero-desc {
  margin: 18px 0 0;
  max-width: 560px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  animation: appHeroFadeUp 0.8s ease 0.2s forwards;
}

.app-hero-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  background: #ffffff;
  color: #002b5c;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  animation: appHeroFadeUp 0.8s ease 0.4s forwards;
}

.app-hero-cta:hover {
  background: #d42027;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(212, 32, 39, 0.28);
}

@keyframes appHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appHeroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.app-section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.app-section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.app-section-en {
  margin: 0 0 10px;
  color: #6b7c92;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.app-section-title {
  margin: 0;
  color: #0f2747;
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.app-section-sub {
  margin: 14px 0 0;
  color: #5a6a7e;
  font-size: 1rem;
  line-height: 1.75;
}

.app-field-list {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.app-field-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid #e3e9f0;
  border-radius: 4px;
  background: #ffffff;
}

.app-field-card.is-reverse .app-field-media {
  order: 2;
}

.app-field-card.is-reverse .app-field-body {
  order: 1;
}

.app-field-media {
  overflow: hidden;
  border-radius: 2px;
  background: #e8edf3;
  aspect-ratio: 16 / 10;
}

.app-field-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92);
}

.app-field-en {
  margin: 0 0 8px;
  color: #7a8a9c;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.app-field-body h3 {
  margin: 0 0 12px;
  color: #0f2747;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

.app-field-body p {
  margin: 0 0 18px;
  color: #5a6a7e;
  font-size: 0.95rem;
  line-height: 1.72;
}

.app-link-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #2f4a68;
  border-radius: 2px;
  color: #2f4a68;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease;
}

.app-link-btn:hover {
  background: #2f4a68;
  color: #ffffff;
}

.app-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 32px);
}

.app-product-card {
  border: 1px solid #e3e9f0;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

.app-product-media {
  aspect-ratio: 16 / 9;
  background: #e8edf3;
  overflow: hidden;
}

.app-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}

.app-product-body {
  padding: 22px 24px 26px;
}

.app-product-en {
  margin: 0 0 8px;
  color: #7a8a9c;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-product-body h3 {
  margin: 0 0 10px;
  color: #0f2747;
  font-size: 1.15rem;
  font-weight: 600;
}

.app-product-body p {
  margin: 0;
  color: #5a6a7e;
  font-size: 0.92rem;
  line-height: 1.7;
}

.app-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.app-case-card {
  border: 1px solid #e3e9f0;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.app-case-card:hover {
  box-shadow: 0 14px 32px rgba(15, 39, 71, 0.08);
  transform: translateY(-2px);
}

.app-case-media {
  aspect-ratio: 16 / 10;
  background: #e8edf3;
  overflow: hidden;
}

.app-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.app-case-body {
  padding: 18px 20px 22px;
}

.app-case-body h3 {
  margin: 0 0 8px;
  color: #0f2747;
  font-size: 1.02rem;
  font-weight: 600;
}

.app-case-body p {
  margin: 0;
  color: #5a6a7e;
  font-size: 0.88rem;
  line-height: 1.65;
}

.app-stats-section {
  padding-bottom: clamp(72px, 9vw, 104px);
}

.app-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 40px);
}

.app-stat-item {
  padding: clamp(24px, 3vw, 32px) 20px;
  border: 1px solid rgba(16, 42, 76, 0.08);
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 22px rgba(16, 42, 76, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.app-stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(16, 42, 76, 0.1);
  border-color: #102a4c;
}

.app-stat-number {
  margin: 0 0 8px;
  color: #102a4c;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.app-stat-label {
  margin: 0;
  color: #102a4c;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .app-product-grid {
    grid-template-columns: 1fr;
  }

  .app-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .app-hero-title {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .app-hero-desc {
    font-size: 16px;
    line-height: 1.75;
  }

  .app-hero-cta {
    margin-top: 24px;
    padding: 12px 28px;
  }

  .app-field-card,
  .app-field-card.is-reverse {
    grid-template-columns: 1fr;
  }

  .app-field-card.is-reverse .app-field-media,
  .app-field-card.is-reverse .app-field-body {
    order: unset;
  }

  .app-case-grid {
    grid-template-columns: 1fr;
  }

  .app-stats-grid {
    grid-template-columns: 1fr;
  }
}
