/* ===== Landing Split Page ===== */
.landing-page {
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Welcome banner */
.welcome {
  background: linear-gradient(135deg, var(--primary) 0%, #0F2922 100%);
  padding: 40px 32px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.06) 0%, transparent 60%);
  border-radius: 50%;
}

.welcome__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.welcome__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
}

.welcome__icon img {
  width: 100%;
  height: 100%;
}

.welcome__brand {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.welcome__brand span {
  color: var(--accent);
  font-weight: 900;
}

.welcome__divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.welcome__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.welcome__text strong {
  color: var(--accent);
  font-weight: 700;
}

.split {
  display: flex;
  flex: 1;
  position: relative;
}

.split__side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.split__side:hover {
  flex: 1.15;
}

.split__side--left {
  background: linear-gradient(160deg, #1A3C34 0%, #0F2922 100%);
}

.split__side--right {
  background: linear-gradient(160deg, #245248 0%, #1A3C34 100%);
}

.split__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.split__side--left .split__overlay {
  background: linear-gradient(160deg, rgba(200, 164, 90, 0.08) 0%, transparent 60%);
}

.split__side--right .split__overlay {
  background: linear-gradient(160deg, rgba(200, 164, 90, 0.12) 0%, transparent 60%);
}

.split__side:hover .split__overlay {
  opacity: 1;
}

.split__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 380px;
  padding: 40px 32px;
}

.split__icon {
  font-size: 3rem;
  margin-bottom: 24px;
  filter: grayscale(0.2);
}

.split__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.split__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.split__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.split__services span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.split__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}

.split__side:hover .split__cta {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.split__cta--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
}

/* Divider line */
.split::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(200, 164, 90, 0.2);
  z-index: 5;
}

/* Responsive */
@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }

  .split__side:hover {
    flex: 1.08;
  }

  .split__content {
    padding: 28px 24px;
  }

  .split__title {
    font-size: 1.3rem;
  }

  .split__subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .split__services {
    margin-bottom: 20px;
  }

  .welcome {
    padding: 28px 20px;
  }

  .welcome__brand {
    font-size: 1.4rem;
  }

  .welcome__icon {
    width: 44px;
    height: 44px;
  }

  .split::after {
    top: 50%;
    left: 10%;
    right: 10%;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 164, 90, 0.3), transparent);
  }

  .split__icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }
}
