/* =========================================================
   home.css — Hero + Promo Cards
   สำหรับ home.html (ไม่รวม Header / Footer เพราะอยู่ใน base.html)
   ========================================================= */

:root {
    --bg: #292929;
    --surface: #333333;
    --surface2: #3a3a3a;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #0097B0;
    --accent2: #00C2A8;
    --accent3: #005F73;
    --text: #f0f0f5;
    --muted: #aaaaaa;
}

/* Override .body_pattern { background: #fff } และ font จาก style.css */
.body_pattern,
.body_pattern .index_page,
.body_pattern .main,
.body_pattern .content {
  background-color: #292929 !important;
  color: #f0f0f5 !important;
}

/* บังคับ font ทั้ง content — style.css กำหนด body font เป็น Arial ไว้ */
/* ยกเว้น i, span[class*="fa"] เพราะ Font Awesome ใช้ font-family ของตัวเองในการ render icon */
#content *:not(i):not([class*="fa"]):not([class*="fontawesome"]) {
  font-family: 'Noto Sans Thai', 'DM Sans', sans-serif !important;
}

/* Bebas Neue สำหรับ heading */
#content .hero h1,
#content .section-title,
#content .card-title,
#content .stat-num {
  font-family: 'Bebas Neue', sans-serif !important;
}

/* ── Reset fix: style.css reset margin/padding ทำให้ card elements พัง ── */
/* ต้องใช้ #content เป็น prefix เพื่อชนะ specificity ของ style.css */
#content .promo-card {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

#content .card-body {
  padding: 1.4rem 1.5rem 1.6rem !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

#content .card-footer {
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

#content .card-visual {
  height: 200px !important;
  position: relative !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#content .promo-card.featured .card-visual {
  height: 260px !important;
}

#content .card-title {
  font-size: 1.55rem !important;
  line-height: 1.1 !important;
  margin: 0 0 0.6rem 0 !important;
  padding: 0 !important;
  color: var(--text) !important;
  text-align: left !important;
}

#content .card-desc {
  font-size: 0.84rem !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
  flex: 1 !important;
  margin: 0 0 1.2rem 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

#content .card-cat {
  font-size: 0.7rem !important;
  margin: 0 0 0.5rem 0 !important;
  padding: 0 !important;
}

#content .card-cta {
  padding: 0.5rem 1.2rem !important;
  margin: 0 !important;
}

#content h2.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
  color: var(--text) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  background: none !important;
}


/* ── NOISE OVERLAY (global atmosphere) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 999;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 2rem 80px;   /* ลด padding-top จาก 120px → 80px */
  text-align: center;
  overflow: hidden;
}

/* Animated background blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: var(--accent);  top: -150px; left: -150px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: var(--accent3); bottom: -100px; right: -100px; animation-delay: -4s; }
.blob-3 { width: 350px; height: 350px; background: var(--accent2); top: 50%; left: 60%; animation-delay: -8s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0, 217, 255, 0.544);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 217, 255, 0.03);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Headline */
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 .line-1 { display: block; color: var(--text); font-size: 80px; text-align: center;}
.hero h1 .line-2 {
  display: block;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.8s 0.2s ease both, shimmer 4s linear infinite;
  font-size: 50px;
  text-align: center;
}

.hero-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.8rem auto 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}

.btn-primary {
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #00C2A8);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.544);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0, 217, 255, 0.544) }

.btn-ghost {
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 700px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.04rem;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.6rem 0;

}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════
   PROMO SECTION
══════════════════════════════════════ */
.section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.section-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.section-more:hover { color: var(--text); border-color: var(--text); }

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.04em;
}
.tab:hover { border-color: rgba(255, 255, 255, 0.2); color: var(--text); }
.tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 77, 109, 0.35);
}

/* ── Card Grid ── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.promo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.promo-card.featured { grid-column: span 2; }

.card-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.promo-card.featured .card-visual { height: 260px; }

.card-visual-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.promo-card:hover .card-visual-bg { transform: scale(1.06); }

/* Visual themes */
.bg-flash  { background: linear-gradient(135deg, #ff4d6d 0%, #ff9a3c 100%); }
.bg-member { background: linear-gradient(135deg, #7b61ff 0%, #3d9be9 100%); }
.bg-new    { background: linear-gradient(135deg, #00c896 0%, #00e0ff 100%); }
.bg-season { background: linear-gradient(135deg, #ff6b35 0%, #f7c59f 100%); }
.bg-bundle { background: linear-gradient(135deg, #e040fb 0%, #7b61ff 100%); }
.bg-cash   { background: linear-gradient(135deg, #ffcc00 0%, #ff9a3c 100%); }

.card-icon {
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-size: 5rem;
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s;
}
.promo-card:hover .card-icon { transform: scale(1.15) rotate(-5deg); opacity: 0.45; }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.card-discount span { font-size: 0.55rem; font-weight: 600; opacity: 0.8; }

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-timer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.timer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c896;
  animation: pulse 1.5s ease-in-out infinite;
}

.card-cta {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.card-cta:hover { background: rgba(255, 255, 255, 0.13); transform: scale(1.03); }

.promo-card.featured .card-cta {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.35);
}
.promo-card.featured .card-cta:hover { opacity: 0.88; }

/* ══════════════════════════════════════
   ANIMATIONS & UTILITIES
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .promo-card.featured { grid-column: span 1; }
  .promo-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem;}
}
/* ══════════════════════════════════════
   HERO SLIDER (hs-)
══════════════════════════════════════ */
.hs-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  display: block;
  z-index: 1;
  margin: 0;
  padding: 0;
  height: 750px !important;
  isolation: isolate;
}

/* ── BG Stage — independent layer outside track ── */
.hs-bg-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hs-bg-layer {
  position: absolute;
  inset: -5%;          /* เผื่อ space สำหรับ float + scale */
  opacity: 0;
  transform: translateX(100%);
  will-change: transform, opacity;
}

.hs-bg-layer.is-current {
  opacity: 1;
  transform: translateX(0) scale(1.04);
}

.hs-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: 300%;
  height: 100%;
  will-change: transform;
  pointer-events: none;
}

.hs-track .hs-content,
.hs-track a,
.hs-track button,
.hs-track .hs-split-left,
.hs-track .hs-split-right,
.hs-track .hs-block,
.hs-track .cn-content-panel,
.hs-track .cn-btn {
  pointer-events: all;
}

.hs-slide {
  position: relative;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 8%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.hs-slide-bg {
  position: absolute;
  inset: 0;
}
.hs-bg-1 { background: linear-gradient(135deg, #002d3d 0%, #004d6b 40%, #0097b0 100%); }
.hs-bg-2 { background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 40%, #00639a 100%); }
.hs-bg-3 { background: linear-gradient(135deg, #000d1f 0%, #001a3d 35%, #002a5c 65%, #001020 100%); }


.hs-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hs-slide-razberi {
  position: relative;
  overflow: hidden;
}

/* wrapper ครอบ img */
.hs-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* รูป */
.hs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.7); /* ทำให้ภาพหม่นนิด */
}

/* overlay สีแดง */
.hs-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.674);
  /* หรือ gradient */
  /*background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(150, 0, 0, 0.532), rgba(0, 0, 0, 0));*/ 
}

.hs-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

/* JS controls all motion — hs-tag, hs-title etc. start invisible via JS initFirstSlide */
.hs-tag,
.hs-title,
.hs-desc,
.hs-btn,
.hs-two-col {
  will-change: transform, opacity, filter;
}

/* bg scale-in: JS overrides this during transitions */
.hs-slide-bg {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
}
.hs-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 2px solid rgba(212, 0, 0, 0.5);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff7373;
  margin-bottom: 1.4rem;
}

.hs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 1.2rem 0;
  padding: 0;
  text-align: left;
  background: none;
  font-weight: 400;
}
.hs-title span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 2rem 0;
  max-width: 420px;
  text-align: left;
}

/* ══════════════════════════════════════════════════════════
   SLIDE 2 — RAZBERI: Centered Cinematic / Black-Red Theme
   ══════════════════════════════════════════════════════════ */

/* Override: center the content for razberi slide */
.hs-slide-razberi {
  justify-content: center !important;
  align-items: center !important;
}

/* Content block centered */
.hs-content-center {
  text-align: center !important;
  max-width: 780px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Scanline grid texture overlay */
.hs-rz-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(180, 0, 0, 0.04) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(180, 0, 0, 0.03) 40px
    );
  pointer-events: none;
}

/* Red glow blobs */
.hs-rz-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(120px);
}
.hs-rz-glow--left {
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(180, 0, 0, 0.22) 0%, transparent 70%);
}
.hs-rz-glow--right {
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(120, 0, 0, 0.18) 0%, transparent 70%);
}

/* Icon hex badge */
.hs-rz-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-rz-hex {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a0000, #4a0000);
  border: 1px solid rgba(200, 0, 0, 0.5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ff4444;
  box-shadow: 0 0 30px rgba(180, 0, 0, 0.4), inset 0 1px 0 rgba(255,100,100,0.15);
  z-index: 2;
  position: relative;
}
.hs-rz-hex-ring {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px solid rgba(200, 0, 0, 0.2);
  animation: rzHexPulse 2.5s ease-in-out infinite;
}
@keyframes rzHexPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Tag — Razberi version */
.hs-tag-rz {
  border-color: rgba(200, 0, 0, 0.5) !important;
  color: #ff6060 !important;
  letter-spacing: 0.2em !important;
  font-size: 0.68rem !important;
  margin-bottom: 1.2rem !important;
}

/* Title — Razberi: larger + centered */
.hs-title-rz {
  font-size: clamp(2.8rem, 3vw, 6.5rem) !important;
  text-align: center !important;
  line-height: 0.88 !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: 0.04em !important;
}

/* Span gradient: BLACK → RED (dark to vivid) */
.hs-rz-span {
  display: block;
  background: linear-gradient(90deg, #cc0000 0%, #ff2020 35%, #ff6a00 70%, #cc0000 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: rzGradientShift 4s linear infinite !important;
}
@keyframes rzGradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Desc — centered */
.hs-desc-rz {
  text-align: center !important;
  max-width: 560px !important;
  margin: 0 auto 2rem !important;
  font-size: 0.92rem !important;
  line-height: 1.75 !important;
  color: rgba(255, 200, 200, 0.65) !important;
}

/* Stats row */
.hs-rz-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto 2.2rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(180, 0, 0, 0.25);
  border-radius: 12px;
  padding: 1rem 2rem;
  backdrop-filter: blur(12px);
  width: fit-content;
}
.hs-rz-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 1.6rem;
}
.hs-rz-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: #fff;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #ff5555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-rz-plus,
.hs-rz-pct {
  font-size: 1.1rem;
}
.hs-rz-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 180, 180, 0.5);
}
.hs-rz-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(200, 0, 0, 0.4), transparent);
  flex-shrink: 0;
}

/* Button — Razberi: Black-Red gradient */
.hs-btn-rz {
  background: linear-gradient(135deg, #1a0000 0%, #8b0000 50%, #cc0000 100%) !important;
  border: 1px solid rgba(220, 0, 0, 0.6) !important;
  box-shadow: 0 6px 30px rgba(180, 0, 0, 0.45), inset 0 1px 0 rgba(255,100,100,0.2) !important;
  color: #fff !important;
  padding: 0.85rem 2.2rem !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 8px !important;
  position: relative !important;
  overflow: hidden !important;
}
.hs-btn-rz::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 60, 60, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.hs-btn-rz:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(200, 0, 0, 0.6), inset 0 1px 0 rgba(255,120,120,0.3) !important;
  background: linear-gradient(135deg, #2a0000 0%, #aa0000 50%, #ee0000 100%) !important;
}
.hs-btn-rz:hover::before { opacity: 1; }

/* Slide 3 gets its own class now */
/* ══════════════════════════════════════════════════════════
   SLIDE 3 — COMNET: Image BG + Blue Theme + Right Content
   prefix: cn-  (แยกอิสระจาก hs- ทั้งหมด)
   ══════════════════════════════════════════════════════════ */

.hs-slide-comnet {
  justify-content: flex-end !important;
  align-items: stretch !important;
  padding: 0 !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: row !important;
}

/* ── Background Image ─────────────────────────────────── */
.cn-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Full-bleed background image */
.cn-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) saturate(1.15);
}

/* Gradient overlay: ซ้ายโปร่ง → ขวาเข้มน้ำเงินเข้ม (panel zone) */
.cn-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 15, 40, 0.2)  0%,
    rgba(0, 20, 60, 0.5)  40%,
    rgba(0, 10, 40, 0.85) 65%,
    rgba(0, 5,  25, 0.97) 100%
  );
}

/* Top + Bottom vignette */
.cn-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,5,20,0.55) 0%, transparent 20%, transparent 75%, rgba(0,5,20,0.65) 100%);
}

/* ── Circuit Line Decoration ──────────────────────────── */
.cn-circuit-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.cn-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 160, 220, 0.25), transparent);
}
.cn-line--h1 {
  top: 28%;
  left: 0;
  width: 55%;
  height: 1px;
  animation: cnLineScan 6s ease-in-out infinite;
}
.cn-line--h2 {
  top: 68%;
  left: 0;
  width: 40%;
  height: 1px;
  animation: cnLineScan 8s ease-in-out infinite 1.5s;
}
.cn-line--v1 {
  top: 0;
  left: 38%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 160, 220, 0.15), transparent);
}
@keyframes cnLineScan {
  0%   { opacity: 0; transform: scaleX(0); transform-origin: left; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: scaleX(1.2); transform-origin: left; }
}

/* Circuit nodes */
.cn-node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00aadd;
  box-shadow: 0 0 10px rgba(0, 170, 220, 0.8);
  animation: cnNodePulse 3s ease-in-out infinite;
}
.cn-node--1 { top: 28%; left: 20%;  animation-delay: 0s; }
.cn-node--2 { top: 28%; left: 40%;  animation-delay: 1s; }
.cn-node--3 { top: 68%; left: 28%;  animation-delay: 2s; }
@keyframes cnNodePulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.6); }
}

/* ── Blue Glow Orb ──────────────────────────────────────── */
.cn-glow-orb {
  position: absolute;
  right: 420px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 130, 200, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  filter: blur(30px);
  animation: cnOrbFloat 7s ease-in-out infinite;
}
@keyframes cnOrbFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%       { transform: translateY(-52%) scale(1.06); }
}

/* ── RIGHT-SIDE CONTENT PANEL ─────────────────────────── */
.cn-content-panel {
  position: relative;
  z-index: 2;
  width: 46%;
  min-width: 380px;
  max-width: 540px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6% 80px 5%;
  box-sizing: border-box;
  /* glass backing */
  background: linear-gradient(135deg,
    rgba(0, 20, 55, 0.6) 0%,
    rgba(0, 10, 35, 0.85) 100%
  );
  border-left: 1px solid rgba(0, 150, 210, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ── Brand Badge ──────────────────────────────────────── */
.cn-brand-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: rgba(100, 200, 255, 0.7);
  text-transform: uppercase;
}
.cn-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00b4e6;
  box-shadow: 0 0 12px rgba(0, 180, 230, 0.9);
  animation: cnBrandBlink 2s ease-in-out infinite;
}
@keyframes cnBrandBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── Category Tag ─────────────────────────────────────── */
.cn-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.9rem;
  border: 1px solid rgba(0, 160, 220, 0.4);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5ad4ff;
  background: rgba(0, 120, 200, 0.1);
  margin-bottom: 1.5rem;
  width: fit-content;
  will-change: transform, opacity, filter;
}

/* ── Title ────────────────────────────────────────────── */
.cn-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 0.3rem 0;
  padding: 0;
  will-change: transform, opacity, filter;
}
/* "Network" — blue gradient */
.cn-title-span {
  display: block;
  background: linear-gradient(90deg, #00aaff 0%, #00e5ff 50%, #0077dd 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cnGradShift 5s linear infinite;
}
/* "Solutions" — smaller, muted */
.cn-title-sub {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.25em;
  color: rgba(120, 200, 255, 0.55);
  -webkit-text-fill-color: rgba(120, 200, 255, 0.55);
  background: none;
  margin-top: 0.3em;
}
@keyframes cnGradShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Divider ──────────────────────────────────────────── */
.cn-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.4rem 0 1.4rem;
  will-change: transform, opacity, filter;
}
.cn-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 160, 220, 0.6), transparent);
  max-width: 80px;
}
.cn-divider-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c8ff;
  box-shadow: 0 0 14px rgba(0, 200, 255, 0.8);
  animation: cnNodePulse 2s ease-in-out infinite;
}

/* ── Description ──────────────────────────────────────── */
.cn-desc {
  font-size: 0.88rem;
  color: rgba(200, 230, 255, 0.6);
  line-height: 1.75;
  margin: 0 0 1.6rem 0;
  will-change: transform, opacity, filter;
}

/* ── Feature Pills ────────────────────────────────────── */
.cn-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  will-change: transform, opacity, filter;
}
.cn-feat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: rgba(160, 220, 255, 0.75);
  letter-spacing: 0.04em;
}
.cn-feat .fa {
  color: #00b4e6;
  font-size: 0.72rem;
}

/* ── CTA Row ──────────────────────────────────────────── */
.cn-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  will-change: transform, opacity, filter;
}

/* Button — split arrow style */
.cn-btn {
  display: inline-flex;
  align-items: stretch;
  width: fit-content;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 160, 220, 0.5);
  box-shadow: 0 6px 28px rgba(0, 130, 200, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cn-btn-text {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #003d70 0%, #005fa3 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.25s;
}
.cn-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, #0077c2 0%, #00aaee 100%);
  color: #fff;
  font-size: 0.9rem;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: background 0.25s, padding 0.25s;
}
.cn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 150, 220, 0.55);
}
.cn-btn:hover .cn-btn-arrow {
  padding-left: 1.3rem;
  background: linear-gradient(135deg, #0088dd 0%, #00ccff 100%);
}

/* CTA note */
.cn-cta-note {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(100, 180, 255, 0.35);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hs-slide-comnet { justify-content: center !important; }
  .cn-content-panel {
    width: 100%;
    min-width: unset;
    max-width: unset;
    border-left: none;
    border-top: 1px solid rgba(0,150,210,0.2);
    padding: 100px 7% 6rem;
  }
  .cn-circuit-lines { display: none; }
}

.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 24px rgba(0, 151, 176, 0.4);
}
.hs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 151, 176, 0.6);
  background: var(--accent2);
  color: #fff;
}

.hs-btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: none;
}
.hs-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: none;
}

/* ── 2-Column layout ── */
.hs-content-wide { max-width: 780px; }

.hs-two-col {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.hs-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hs-col-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.15);
  margin: 0 2rem;
  flex-shrink: 0;
}

.hs-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.hs-col-list {
  list-style: none;
  margin: 0 0 1.2rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.hs-col-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.hs-col-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hs-two-col { flex-direction: column; gap: 1.5rem; }
  .hs-col-divider { width: 100%; height: 1px; margin: 0; }
  .hs-content-wide { max-width: 100%; }
}

/* ── Split Slide Layout ── */
.hs-slide-split {
  padding: 0 !important;
  align-items: stretch;
}

.hs-slide-split .hs-split-left,
.hs-slide-split .hs-split-right {
  will-change: transform, opacity, filter;
}

@keyframes hsFadeLeft  { to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes hsFadeRight { to { opacity: 1; transform: translateX(0) scale(1); } }

.hs-split-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 5% 60px 7%;
  max-width: none;
  position: relative;
  z-index: 2;
}

.hs-split-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom,
    transparent 5%,
    rgba(0, 194, 168, 0.35) 25%,
    rgba(0, 151, 176, 0.5)  50%,
    rgba(0, 194, 168, 0.35) 75%,
    transparent 95%
  );
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hs-split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: none;
  position: relative;
  z-index: 2;
  padding: 0;
  gap: 0;
}

/* Each block fills half the height */
.hs-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 7% 2.2rem 5%;
  gap: 0.7rem;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

/* bg image เต็ม block — ใส่ผ่าน inline style: background-image: url(...) */
.hs-block-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  clip-path: inset(0);  /* clip แทน overflow:hidden */
}
/* overlay สำหรับให้ text อ่านออก */
.hs-block-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  clip-path: inset(0);
}
/* content ใน block ต้องอยู่เหนือ bg */
.hs-block > *:not(.hs-block-bg):not(.hs-block-overlay) {
  position: relative;
  z-index: 2;
}

.hs-block--top {
  background: rgba(0, 151, 176, 0.12);
  border-bottom: 1px solid rgba(0, 194, 168, 0.25);
  padding: 6rem 0 2rem 5%;
  justify-content: flex-end;
}

.hs-block--bottom {
  background: rgba(0, 0, 0, 0.22);
  padding: 3rem 5% 2rem 5%;
  justify-content: flex-end;
}

/* ── title/desc/tag ใน block — scoped ให้แคบ ไม่กระทบ slide อื่น ── */
.hs-block .hs-title {
  font-size: clamp(1.1rem, 2vw, 2.2rem) !important;
  margin: 0 0 0.4rem 0 !important;
  line-height: 1 !important;
}
.hs-block .hs-desc {
  font-size: 0.8rem !important;
  margin: 0 0 0.8rem 0 !important;
  max-height: 2.8em;
  overflow: hidden;
}
.hs-block .hs-tag {
  margin-bottom: 0.5rem !important;
}
.hs-block .hs-btn {
  align-self: flex-start;
}

.hs-split-panels {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

/* Stacked (top-bottom) variant */
.hs-split-panels--stacked {
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  gap: 0;
}

.hs-split-panels--stacked .hs-panel {
  flex: 1;
  padding: 1.4rem 0;
}

.hs-panel-divider--h {
  display: block !important;
  width: 100% !important;
  min-height: 1px !important;
  height: 1px !important;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(0, 194, 168, 0.6) 20%,
    rgba(0, 194, 168, 0.9) 50%,
    rgba(0, 194, 168, 0.6) 80%,
    transparent 100%
  ) !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
}

.hs-panel--bottom {
  border-top: 1px solid rgba(0, 194, 168, 0.5) !important;
  padding-top: 1.4rem !important;
}

/* Inline list: wrap items horizontally */
.hs-col-list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.hs-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hs-panel-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 1.8rem;
  flex-shrink: 0;
}

.hs-panel-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.hs-panel-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 194, 168, 0.15);
  border: 1px solid rgba(0, 194, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent2);
  flex-shrink: 0;
}

.hs-panel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
}

.hs-btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.78rem;
  margin-top: auto;
  align-self: flex-start;
}

/* ── Block inner: text ซ้าย + รูปขวา ── */
.hs-block-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hs-block-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.hs-block-text .hs-title {
  font-size: clamp(1rem, 1.8vw, 2rem) !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.hs-block-text .hs-desc {
  font-size: 0.78rem !important;
  margin: 0 !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hs-block-img {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-120%);
  height: 150%;        /* 80% ของ block height */
  max-height: 200px;
  width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,151,176,0.3));
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hs-slide-split { flex-direction: column; }
  .hs-split-divider {
    width: 60%; height: 1px; align-self: center;
    background: linear-gradient(to right, transparent, rgba(0,194,168,0.4), transparent);
  }
  .hs-split-left  { padding: 90px 6% 2rem; }
  .hs-split-right { padding: 1.5rem 6% 5rem; background: rgba(0,0,0,0.2); }
}

.hs-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) translateX(30px);
  width: 320px;
  height: 320px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s 0.4s ease, transform 0.6s 0.4s ease;
}
.hs-slide.active .hs-deco {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hs-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: hsSpin 18s linear infinite;
}
.r1 { width: 320px; height: 320px; border: 1px solid rgba(0,194,168,0.15); animation-duration: 20s; }
.r2 { width: 230px; height: 230px; border: 1px solid rgba(0,151,176,0.2);  animation-duration: 14s; animation-direction: reverse; }
.r3 { width: 140px; height: 140px; border: 1px solid rgba(255,255,255,0.12); animation-duration: 10s; }

@keyframes hsSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hs-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  color: rgba(255,255,255,0.15);
}

.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  pointer-events: all;
}
.hs-arrow:hover {
  background: rgba(0,151,176,0.4);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.hs-prev { left: 2rem; }
.hs-next { right: 2rem; }

.hs-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
  pointer-events: all;
}
.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  padding: 0;
}
.hs-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}
.hs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .hs-wrapper { height: 900px !important; }
  .hs-slide { padding: 80px 5% 0; }
  .hs-deco { display: none; }
  .hs-title { font-size: 2.5rem; }
}
/* ── Split Left: Product Image Layout ── */
.hs-split-left {
  justify-content: flex-end !important;
  padding: 0 0 60px 0 !important;
  overflow: hidden;
  /* กำหนด bg ของ left pane ผ่าน inline style หรือ class ได้เลย */
  /* ตัวอย่าง: background: url("../images/ActPro1500.png") center/cover no-repeat; */
}

/* ── bg pseudo-layer สำหรับแต่ละ pane ── */
/* ใส่ bg ผ่าน data-bg หรือ inline style: background-image: url(...) */
.hs-split-left::before,
.hs-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

/* เมื่อมี custom bg ให้ซ่อน bg layer เดิมที่ส่องผ่านมา */
.hs-split-left[style*="background"] {
  isolation: isolate;
}
.hs-block[style*="background"] {
  isolation: isolate;
}

.hs-product-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;   /* 🔥 จาก center → flex-start */
  justify-content: center;
  padding-top: 140px;         /* 🔥 ระยะดันลงมาจากบน (ปรับได้) */
  pointer-events: none;
  z-index: 1;
}

.hs-product-glow { display: none; }

.hs-product-img {
  position: relative;
  z-index: 2;
  width: 62%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,151,176,0.35));

  transform: none; /* 🔥 เอาออกก่อน */
}

.hs-split-text {
  position: relative;
  z-index: 2;
  padding: 0 5% 0 7%;
  max-width: none;
}

/* end home */

/* act pro */

/* ═══════════════════════════════════════════════════
   act-page.css — ACT Product Page
   prefix: ap- ป้องกันชนกับ home.css / style.css

   Classes ที่ใช้จาก home.css โดยตรง (ไม่ต้องนิยามใหม่):
   - .reveal / .reveal.visible       (scroll reveal)
   - .badge-dot                      (pulse animation)
   - .section-label                  (eyebrow label)
   - .btn-primary / .btn-ghost       (CTA buttons)
   - keyframes: fadeUp, pulse
   ═══════════════════════════════════════════════════ */

/* ── HERO ── */
.ap-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 100px 7% 64px;
  overflow: hidden;
  background: linear-gradient(135deg, #002d3d 0%, #004d6b 45%, #0097b0 100%);
}
.ap-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 55%);
  pointer-events: none;
}

.ap-hero-watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(130px, 20vw, 260px);
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
  animation: fadeUp 1.2s ease both;
}

.ap-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* badge — ใช้ .badge-dot จาก home.css */
.ap-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(0,194,168,0.4);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(0,194,168,0.06);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.ap-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.2s ease both;
  color: var(--text);
  background: none !important;
  -webkit-text-fill-color: unset !important;
  text-align: left;
}
.ap-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap-hero-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.85;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* ── PAGE BODY ── */
.ap-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6% 100px;
}

/* ── SHARED TYPOGRAPHY ── */
.ap-sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  color: var(--text);
  text-align: left;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}
.ap-sec-heading span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap-body-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
  text-align: left;
}

.ap-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4rem 0;
}

/* ── INTRO SPLIT ── */
.ap-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0 4rem;
}

.ap-intro-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.ap-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,194,168,0.12);
  animation: apSpin 20s linear infinite;
}
.ap-ring-1 { width: 280px; height: 280px; }
.ap-ring-2 { width: 200px; height: 200px; border-color: rgba(0,151,176,0.15); animation-duration: 14s; animation-direction: reverse; }

@keyframes apSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes apFloat { from { transform: translateY(0); } to { transform: translateY(-14px); } }

.ap-product-img {
  position: relative;
  z-index: 2;
  width: 72%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0,151,176,0.4));
  animation: apFloat 5s ease-in-out infinite alternate;
}

.ap-highlight {
  background: rgba(0,151,176,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.4rem 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

/* ── FEATURE CARDS ── */
.ap-cards-section {
  padding: 4rem 0;
}

.ap-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.ap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.ap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
}
.ap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,151,176,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.ap-card:hover::before { opacity: 1; }

.ap-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,151,176,0.1);
  border: 1px solid rgba(0,151,176,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent2);
  margin-bottom: 1.1rem;
}

.ap-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--text);
  text-align: left;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

.ap-card-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
  text-align: left;
}

/* ── MILESTONE ── */
.ap-milestone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
}

.ap-cert-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.4rem 0;
}

.ap-cert-link {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--accent2);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ap-cert-link:hover {
  background: var(--surface2);
  border-color: rgba(0,194,168,0.3);
  transform: translateX(4px);
  color: var(--accent2);
}
.ap-cert-arrow { margin-left: auto; opacity: 0.6; font-size: 0.8rem; }

.ap-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  aspect-ratio: 16/9;
}
.ap-video-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* ── INTEGRATION ── */
.ap-int-section { padding: 4rem 0; }

.ap-int-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.ap-int-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.ap-int-item:hover {
  border-color: rgba(0,151,176,0.3);
  background: var(--surface2);
  transform: translateX(4px);
}

.ap-int-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.ap-int-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  min-width: 180px;
}

.ap-int-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA ── */
.ap-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3.5rem 0 0;
  border-top: 1px solid var(--border);
}

.ap-cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  color: var(--text);
  background: none !important;
  -webkit-text-fill-color: unset !important;
  text-align: left;
}

.ap-cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ap-intro        { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 2rem; }
  .ap-intro-img    { display: none; }
  .ap-milestone    { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-cards-grid   { grid-template-columns: 1fr 1fr; }
  .ap-cta          { flex-direction: column; align-items: flex-start; }
  .ap-int-name     { min-width: 130px; }
}

@media (max-width: 600px) {
  .ap-hero         { padding: 80px 6% 48px; min-height: 360px; }
  .ap-cards-grid   { grid-template-columns: 1fr; }
  .ap-int-item     { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .ap-int-name     { min-width: unset; }
}

/* SiPass */
/* ── CSS Variables override สำหรับ SiPass (ม่วง-น้ำเงิน) ── */
.sp-body {
  --sp-blue:   #4A6CF7;
  --sp-teal:   #00C2A8;
  --sp-purple: #8B5CF6;
  --sp-glow:   rgba(74,108,247,0.25);
}

/* ══ HERO ══ */
.sp-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 120px 7% 60px;
  background: linear-gradient(160deg, #0a0f2c 0%, #111840 40%, #1a1060 70%, #292929 100%);
}
.sp-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, #292929 100%);
  pointer-events: none;
  z-index: 1;
}
.sp-hero-content,
.sp-hero-watermark,
.sp-hero-pills {
  position: relative;
  z-index: 2;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(74,108,247,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(139,92,246,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid overlay */
.sp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,108,247,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,108,247,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.sp-hero-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 18vw, 220px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(74,108,247,0.06);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.sp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.sp-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.2s ease both;
  color: var(--text);
  background: none !important;
  -webkit-text-fill-color: unset !important;
  text-align: left;
}
.sp-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #4A6CF7, #8B5CF6, #00C2A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating pills */
.sp-hero-pills {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(74,108,247,0.1);
  border: 1px solid rgba(74,108,247,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a0b4ff;
  letter-spacing: 0.05em;
  animation: fadeUp 0.6s ease both;
}
.sp-pill i { font-size: 0.75rem; color: #4A6CF7; }

/* ══ INTRO ══ */
.sp-intro-img {
  position: relative;
}
.sp-hex-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  border-style: solid;
  animation: apSpin 25s linear infinite;
}
.sp-hex-1 { width: 300px; height: 300px; border-width: 1px; border-color: rgba(74,108,247,0.15); }
.sp-hex-2 { width: 220px; height: 220px; border-width: 1px; border-color: rgba(139,92,246,0.12); animation-duration: 18s; animation-direction: reverse; }
.sp-hex-3 { width: 140px; height: 140px; border-width: 1px; border-color: rgba(0,194,168,0.1); animation-duration: 12s; }

.sp-product-img {
  filter: drop-shadow(0 16px 48px rgba(74,108,247,0.45)) !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  animation: none !important;
}

.sp-intro-img {
  min-height: 420px;
  align-items: flex-start;
}

.ap-intro {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-start;
}

/* Highlight override */
.sp-highlight {
  background: rgba(74,108,247,0.07) !important;
  border-left-color: #4A6CF7 !important;
}

/* Intro stats */
.sp-intro-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.sp-istat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #4A6CF7, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.sp-istat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ══ FEATURE CARDS ══ */
.sp-card::before {
  background: linear-gradient(90deg, #4A6CF7, #8B5CF6) !important;
}
.sp-card:hover {
  border-color: rgba(74,108,247,0.3) !important;
}
.sp-card-icon {
  color: #a0b4ff !important;
}
.sp-icon-blue  { background: rgba(74,108,247,0.1) !important; border-color: rgba(74,108,247,0.2) !important; color: #4A6CF7 !important; }
.sp-icon-teal  { background: rgba(0,194,168,0.1)  !important; border-color: rgba(0,194,168,0.2)  !important; color: #00C2A8 !important; }
.sp-icon-purple{ background: rgba(139,92,246,0.1) !important; border-color: rgba(139,92,246,0.2) !important; color: #8B5CF6 !important; }

/* ══ APERIO SECTION ══ */
.sp-aperio-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.sp-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.sp-point-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4A6CF7;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.sp-aperio-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}

.sp-aperio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.sp-aperio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A6CF7, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s;
}
.sp-aperio-card:hover {
  border-color: rgba(74,108,247,0.35);
  transform: translateY(-4px);
}
.sp-aperio-card:hover::before { opacity: 1; }

/* Featured card (spans full width) */
.sp-aperio-card:first-child {
  grid-column: span 2;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.sp-aperio-card--sm { padding: 1.2rem 1.4rem; }

.sp-aperio-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(74,108,247,0.1);
  border: 1px solid rgba(74,108,247,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #4A6CF7;
  margin-bottom: 0.5rem;
}
.sp-icon-sm { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; margin-bottom: 0; }

.sp-aperio-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #4A6CF7, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-aperio-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ══ VR SECTION ══ */
.sp-vr-section { padding: 4rem 0; }

.sp-vr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.sp-vr-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sp-vr-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.sp-vr-feat:hover {
  border-color: rgba(74,108,247,0.3);
  transform: translateX(4px);
}

.sp-vr-feat-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(74,108,247,0.1);
  border: 1px solid rgba(74,108,247,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: #4A6CF7;
  flex-shrink: 0;
}

.sp-vr-feat-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.sp-vr-feat-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.sp-vr-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sp-vr-glow {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,108,247,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.sp-vr-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(74,108,247,0.35));
  animation: apFloat 5s ease-in-out infinite alternate;
}
.sp-vr-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  background: rgba(74,108,247,0.15);
  border: 1px solid rgba(74,108,247,0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #a0b4ff;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

/* ══ INT DOTS color variants ══ */
.sp-dot-blue   { background: #4A6CF7 !important; }
.sp-dot-teal   { background: #00C2A8 !important; }
.sp-dot-purple { background: #8B5CF6 !important; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sp-vr-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .sp-vr-image-wrap  { display: none; }
  .sp-aperio-visual  { grid-template-columns: 1fr; }
  .sp-aperio-card:first-child { grid-column: span 1; }
  .sp-hero-watermark { display: none; }
}
@media (max-width: 600px) {
  .sp-hero { padding: 80px 6% 48px; min-height: 360px; }
  .sp-intro-stats { gap: 1.2rem; }
  .sp-hero-pills { gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════════
   VCredential Product Page  (prefix: vc-)
   เพิ่มเข้า page.css — ไม่ชนกับ ap-, sp-, hs- classes
   ═══════════════════════════════════════════════════ */

/* ── Color tokens สำหรับหน้า VCredential ── */
.vc-hero {
  --vc-amber:       #37eeff;
  --vc-amber-dim:   #D97706;
  --vc-amber-glow:  rgba(245,158,11,0.18);
  --vc-amber-soft:  rgba(245,158,11,0.08);
}
.vc-body {
  --vc-cyan:    #00D4FF;
  --vc-teal:    #00C2A8;
  --vc-blue:    #0097B0;
  --vc-glow:    rgba(0, 212, 255, 0.22);
  --vc-glow2:   rgba(0, 194, 168, 0.18);
}

/* ══ HERO ══ */
.vc-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 120px 7% 68px;
  background: linear-gradient(155deg, #001a2e 0%, #003045 35%, #005068 65%, #292929 100%);
  overflow: hidden;
}
.vc-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent 0%, #292929 100%);
  pointer-events: none;
  z-index: 1;
}

/* Orbit rings */
.vc-hero-orbits {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  pointer-events: none;
}

.vc-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border-style: solid;
}
.vc-orbit-1 {
  width: 420px; height: 420px;
  border-width: 1px;
  border-color: rgba(47, 242, 213, 0.727);
  animation: vcOrbit 30s linear infinite;
}
.vc-orbit-2 {
  width: 290px; height: 290px;
  border-width: 1px;
  border-color: rgba(2, 251, 230, 0.292);
  animation: vcOrbit 20s linear infinite reverse;
}
.vc-orbit-3 {
  width: 170px; height: 170px;
  border-width: 1px;
  border-color: rgba(180, 255, 254, 0.711);
  animation: vcOrbit 14s linear infinite;
}
.vc-orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--vc-amber);
  box-shadow: 0 0 16px var(--vc-amber);
}

@keyframes vcOrbit {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.vc-hero-content,
.vc-hero-watermark,
.vc-hero-pills { position: relative; z-index: 2; }

.vc-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 85% 40%, rgba(0,212,255,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 5% 85%, rgba(0,194,168,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated arc (แทน grid ของ SiPass) */
.vc-hero-arc {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 55%, rgba(0,212,255,0.06) 0px, transparent 350px),
    radial-gradient(circle at 20% 30%, rgba(0,151,176,0.05) 0px, transparent 280px);
  pointer-events: none;
}

/* Particle dots overlay */
.vc-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.vc-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.5);
  animation: vcFloat 8s ease-in-out infinite alternate;
}

.vc-hero-watermark {
  position: absolute;
  right: -2%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 15vw, 16rem);
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 5px rgba(0, 212, 255, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.vc-hero-content { max-width: 660px; }

.vc-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.2s ease both;
  color: var(--text);
  background: none !important;
  -webkit-text-fill-color: unset !important;
  text-align: left;
}
.vc-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #00D4FF, #00C2A8, #0097B0);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* Pills */
.vc-hero-pills {
  position: relative;
  z-index: 2;  
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.vc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(74,108,247,0.1);
  border: 1px solid rgba(74,108,247,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a0b4ff;
  letter-spacing: 0.05em;
  animation: fadeUp 0.6s ease both;
}
.vc-pill i { font-size: 0.75rem; color: #4A6CF7; }


/* ══ INTRO SPLIT (2-col: SVG | Text) ══ */
.vc-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
.vc-intro-img {
  position: relative;
}

.vc-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border-style: solid;
  animation: apSpin 22s linear infinite;
}
.vc-ring-1 { width: 320px; height: 320px; border-width: 1px; border-color: rgba(0,212,255,0.12); }
.vc-ring-2 { width: 230px; height: 230px; border-width: 1px; border-color: rgba(0,194,168,0.1); animation-duration: 16s; animation-direction: reverse; }
.vc-ring-3 { width: 150px; height: 150px; border-width: 1px; border-color: rgba(0,151,176,0.08); animation-duration: 11s; }

/* BLE pulse ring */
.vc-ble-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  animation: vcPulseRing 3s ease-in-out infinite;
}
@keyframes vcPulseRing {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%,-50%) scale(1.35); opacity: 0.4; }
}

.vc-reader-svg {
  position: relative;
  z-index: 2;
  width: 68%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 16px 52px rgba(0,212,255,0.4));
  animation: apFloat 5.5s ease-in-out infinite alternate;
}

/* Text column */
.vc-highlight {
  background: rgba(0, 212, 255, 0.06) !important;
  border-left-color: var(--accent) !important;
}

.vc-intro-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.vc-istat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #00D4FF, #00C2A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.vc-istat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}


/* ══ HOW IT WORKS ══ */
.vc-how-section { padding: 4rem 0; }

.vc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

/* Horizontal line connecting steps */
.vc-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), rgba(0,194,168,0.3), transparent);
  pointer-events: none;
}

.vc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.vc-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.vc-step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(0,212,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  box-shadow: 0 0 0 8px rgba(0,212,255,0.05);
}
.vc-step:hover .vc-step-icon {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.45);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,212,255,0.2);
}

.vc-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.6rem;
  text-align: center;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

.vc-step-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
}

.vc-step-connector { display: none; }


/* ══ FEATURE CARDS (override accent for vc-) ══ */
.vc-card::before {
  background: linear-gradient(90deg, #00D4FF, #00C2A8) !important;
}
.vc-card:hover {
  border-color: rgba(0,212,255,0.3) !important;
}
.vc-card-icon { color: #7fe8ff !important; }
.vc-icon-cyan   { background: rgba(0,212,255,0.08) !important; border-color: rgba(0,212,255,0.2) !important; color: #00D4FF !important; }
.vc-icon-teal   { background: rgba(0,194,168,0.08) !important; border-color: rgba(0,194,168,0.2) !important; color: #00C2A8 !important; }
.vc-icon-blue   { background: rgba(0,151,176,0.08) !important; border-color: rgba(0,151,176,0.2) !important; color: #0097B0 !important; }


/* ══ 4 MODES SECTION ══ */
.vc-modes-section { padding: 4rem 0; }
.vc-modes-intro { max-width: 560px; margin-bottom: 0.5rem; }

.vc-modes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.vc-mode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.vc-mode-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.vc-mode-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.08);
}
.vc-mode-card:hover::after { opacity: 1; }

/* Featured card */
.vc-mode-card--featured {
  border-color: rgba(0,212,255,0.18);
  background: linear-gradient(160deg, var(--surface) 60%, rgba(0,212,255,0.05) 100%);
}
.vc-mode-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00D4FF, #00C2A8, transparent);
}

.vc-mode-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.vc-mode-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.vc-mode-icon svg { width: 28px; height: 28px; }

.vc-mode-icon--1 { background: rgba(0,212,255,0.10); border: 1px solid rgba(0,212,255,0.2); color: #00D4FF; }
.vc-mode-icon--2 { background: rgba(0,194,168,0.10); border: 1px solid rgba(0,194,168,0.2); color: #00C2A8; }
.vc-mode-icon--3 { background: rgba(0,151,176,0.12); border: 1px solid rgba(0,151,176,0.25); color: #0097B0; }
.vc-mode-icon--4 { background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.3);  color: #00D4FF; }

.vc-mode-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vc-mode-star {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00D4FF;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  align-self: flex-start;
}

.vc-mode-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.vc-mode-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.7rem;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

.vc-mode-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* Range bar */
.vc-mode-bar {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.vc-mode-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 1s ease;
}
.vc-mode-bar--long {
  background: linear-gradient(90deg, #00D4FF, #00C2A8, #0097B0) !important;
  animation: vcBarShimmer 2.5s linear infinite;
  background-size: 200% 100% !important;
}

.vc-mode-svg {
  height: 35px;
  width: auto;
}
@keyframes vcBarShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.vc-mode-bar-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}


/* ══ SYSTEMS SECTION ══ */
.vc-systems { }

.vc-sys-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0;
}
.vc-sys-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.vc-sys-item:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateX(4px);
}
.vc-sys-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vc-dot-cyan   { background: #00D4FF; }
.vc-dot-teal   { background: #00C2A8; }
.vc-dot-blue   { background: #0097B0; }

.vc-sys-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.vc-sys-sub {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.vc-cert-link {
  border-color: rgba(0,212,255,0.2) !important;
  color: var(--accent) !important;
}
.vc-cert-link:hover {
  border-color: rgba(0,212,255,0.4) !important;
  color: var(--accent) !important;
}

/* Systems visual grid */
.vc-sys-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.vc-sys-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.vc-sys-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D4FF, #00C2A8);
  opacity: 0;
  transition: opacity 0.3s;
}
.vc-sys-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); }
.vc-sys-card:hover::before { opacity: 1; }

.vc-sys-card--main {
  grid-column: span 2;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.vc-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(45, 234, 234, 0.4);
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.vc-video-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.vc-sys-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #00D4FF;
  margin-bottom: 0.5rem;
}
.vc-sys-icon--sm { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; margin-bottom: 0; }
.vc-sys-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #00D4FF, #00C2A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-sys-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}


/* ══ CTA ══ */
.vc-cta {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0,212,255,0.15) !important;
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, rgba(0,194,168,0.03) 100%);
  padding: 3rem !important;
  margin-top: 2rem;
}
.vc-cta-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}


/* ══ ANIMATIONS ══ */
@keyframes vcFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-8px) scale(1.05); }
}


/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .vc-intro           { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .vc-intro-visual    { display: none; }
  .vc-modes-grid      { grid-template-columns: 1fr; }
  .vc-steps           { grid-template-columns: 1fr; gap: 2rem; }
  .vc-steps::before   { display: none; }
  .vc-sys-visual      { grid-template-columns: 1fr; }
  .vc-sys-card--main  { grid-column: span 1; }
  .vc-hero-watermark  { display: none; }
}
@media (max-width: 600px) {
  .vc-hero      { padding: 80px 6% 52px; min-height: 380px; }
  .vc-hero-pills { gap: 0.5rem; }
  .vc-intro-stats { gap: 1.2rem; }
  .vc-modes-grid  { grid-template-columns: 1fr; }
  .vc-cta { padding: 2rem !important; }
}