/* ── WRAP ──────────────────────────────────── */
.block-aiwelcome-wrap {
  width: 100%;
  color: #fff;
  padding: 24px 48px;
position: relative;
overflow: hidden;
}
.block-aiwelcome-wrap::before {
  content: '';
  position: absolute;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  bottom: 0;
  right: 0;
  transform: translate(40%, 40%);

  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    circle,
    rgba(140,220,255,0.95) 0%,
    rgba(120,200,255,0.7) 20%,
    rgba(120,200,255,0.4) 40%,
    rgba(120,200,255,0.2) 60%,
    transparent 80%
  );

  filter: blur(80px);
  mix-blend-mode: screen;
}
/* ── LOGO STRIP ────────────────────────────── */
.block-aiwelcome-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.block-aiwelcome-logos::-webkit-scrollbar { display: none; }

/* ── LOGO ITEM ───────────────────────────── */
.block-aiwelcome-logo-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.block-aiwelcome-logo-item img {
  height: 42px;
  width: auto;
  display: block;
  opacity: 0.8;
  filter: grayscale(0.2);
  transition: transform 0.2s, opacity 0.2s;
}
.block-aiwelcome-logo-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero-bloom {
    position: absolute;
    width: 1000px;
    height: 1000px;

    right: -500px;
    bottom: -450px; /* 👈 จุดสำคัญ */

      background: radial-gradient(
        circle,
        #6abcff,
        transparent 80%
    );

    filter: blur(100px);
    z-index: 0;
}
/* Layout */
.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr; /* ซ้าย / ขวา */
    align-items: center;

    height: 100%;
    padding: 40px 0px;
}

/* LEFT */
.hero-left {
    display: flex;
    flex-direction: column;
}

/* Video */
.hero-video {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}
/* Play */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* 👇 INFO ใต้คลิป */
.hero-info {
    margin-top: 16px;
    color: #fff;
}

.hero-info h3 {
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-info p {
    opacity: 0.8;
    margin: 0;
}

/* RIGHT TEXT */
.hero-text {
    max-width: 720px;
}

.hero-text h1 {
    margin-bottom: 16px;
}

.hero-text p {
    line-height: 1.6;
}