/* ============================================
   YUNCUT JP — Layout
   ============================================ */

.container { width: min(1140px, calc(100% - 40px)); margin: auto; }

section { padding: 88px 0; position: relative; }

/* PAGE HERO */
.page-hero {
  padding: 130px 0 72px;
  background: linear-gradient(135deg, #F0F5FC 0%, #E8EFF8 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}

/* HOME HERO */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #050709 !important;
}
.home-hero .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.home-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(5,7,9,.95) 0%,
    rgba(5,7,9,.90) 25%,
    rgba(5,7,9,.70) 45%,
    rgba(5,7,9,.35) 65%,
    rgba(5,7,9,.10) 100%
  );
  z-index: 1;
}
.home-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 64px;
}
.hero-copy {
  max-width: 680px;
}

/* GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mini-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }

/* SECTION HEAD */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 40px;
}
.section-head p { max-width: 440px; color: var(--muted); font-size: 16px; }

/* DARK/LIGHT BANDS */
.dark-band {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* CTA SECTION */
.cta {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #EBF2FC, #F5F7FB);
  border-top: 1px solid var(--line);
}
.cta h2 { margin-left: auto; margin-right: auto; }
.cta p { max-width: 600px; margin: 0 auto 32px; color: var(--muted); font-size: 17px; }
