/* Applications Page — Modern Enterprise Industrial Style */

.applications-page {
  min-width: 320px;
  margin: 0;
  color: var(--text-body, #475569);
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.applications-page a {
  color: inherit;
  text-decoration: none;
}

.applications-page img {
  display: block;
  max-width: 100%;
  border: 0;
}

.applications-main {
  overflow: hidden;
}

.applications-section-inner {
  box-sizing: border-box;
  width: 1200px;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Modern Hero Banner */
.applications-hero {
  position: relative;
  height: 360px;
  background-color: #0b132a;
  background-image: url("../images/ABUIABACGAAgtejbowYo7Mb3-wMw8C44gA8.jpg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.applications-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 19, 42, 0.84) 0%, rgba(11, 19, 42, 0.70) 100%);
}

.applications-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
  padding: 0 20px;
}

.applications-hero-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 16px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.applications-hero-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.applications-hero-desc {
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}

/* Content block */
.applications-content {
  padding: 80px 0;
  background: #ffffff;
}

.applications-lead-title {
  margin: 0 auto 24px;
  color: var(--text-dark, #0f172a);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  max-width: 800px;
}

.applications-lead-text {
  margin: 0 auto 64px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  max-width: 900px;
}

.applications-section-title {
  margin: 0 0 20px;
  color: var(--text-dark, #0f172a);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.applications-section-note {
  margin: 0 0 24px;
  color: #475569;
  font-size: 15.5px;
  line-height: 1.75;
}

.applications-section-note.is-muted {
  color: #64748b;
}

.applications-block {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.applications-block.is-reverse {
  flex-direction: row-reverse;
}

.applications-block-body {
  flex: 1;
  min-width: 0;
  color: #475569;
  font-size: 15.5px;
  line-height: 1.75;
}

.applications-block-body p {
  margin: 0 0 16px;
  text-align: justify;
}

.applications-block-body p:last-child {
  margin-bottom: 0;
}

.applications-block-body b,
.applications-list b {
  color: var(--text-dark, #0f172a);
  font-weight: 700;
}

.applications-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.applications-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 20px;
  text-align: justify;
  line-height: 1.6;
}

.applications-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #0284c7;
  border-radius: 50%;
}

.applications-block-image {
  flex: 0 0 auto;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border: 1px solid #f1f5f9;
}

.applications-block-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.applications-block:hover .applications-block-image img {
  transform: scale(1.03);
}

.applications-block-image.is-930 { width: 493px; height: 269px; }
.applications-block-image.is-935 { width: 507px; height: 254px; }
.applications-block-image.is-960 { width: 480px; height: 320px; }
.applications-block-image.is-964 { width: 428px; height: 286px; }
.applications-block-image.is-967 { width: 482px; height: 272px; }
.applications-block-image.is-972 { width: 455px; height: 302px; }
.applications-block-image.is-975 { width: 476px; height: 318px; }
.applications-block-image:not([class*="is-"]) { width: 480px; height: 300px; }

.applications-block-body.is-standalone {
  margin-bottom: 48px;
}

/* Feature card section */
.applications-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 64px 0 0;
  padding-top: 48px;
  border-top: 1px solid #f1f5f9;
}

.applications-feature {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.015);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.applications-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  border-color: #e2e8f0;
}

.applications-feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.applications-feature-title {
  margin: 0 0 12px;
  color: var(--text-dark, #0f172a);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.applications-feature-desc {
  margin: 0;
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.6;
}

.applications-page .reveal-section {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s ease;
}

.applications-page .reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 992px) {
  .applications-block {
    flex-direction: column !important;
    align-items: stretch;
    gap: 32px;
  }
  .applications-block-image {
    width: 100% !important;
    height: auto !important;
  }
  .applications-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
