/* ================= BUSINESS ================= */

.business-page {
  background:
    linear-gradient(
      to bottom,
      rgba(5,6,10,0.85),
      rgba(5,6,10,0.95)
    ),
    url("../../img/background1.png") center top / cover no-repeat fixed;
}

.business-page .page-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  background: url("../../img/head.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.business-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,6,10,0.35),
    rgba(5,6,10,0.85)
  );
  z-index: 1;
}

.business-page .page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: 1px;
}

.business-page .glass-container {
  position: relative;
  margin-top: -90px;
  padding: 100px 24px 140px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  z-index: 2;
}

.business-page .glass-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.business-page .content-section {
  margin-bottom: 80px;
}

.business-page .content-section h2 {
  font-size: 26px;
  margin-bottom: 22px;
  font-weight: 500;
}

.business-page .content-section p {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 18px;
}

.business-page .experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.business-page .experience-card {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: 16px;
  text-decoration: none;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.business-page .experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,8,12,0.85),
    rgba(6,8,12,0.2)
  );
  z-index: 1;
}

.business-page .experience-card-inner {
  position: relative;
  z-index: 2;
}

.business-page .experience-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.business-page .experience-card p {
  font-size: 16px;
  opacity: 0.75;
  margin: 0;
}

.business-page .experience-card:hover,
.business-page .experience-card:focus-visible {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.business-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.business-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .business-page .glass-container {
    padding: 80px 20px 110px;
  }

  .business-page .content-section p {
    font-size: 17px;
  }
}
