main {
  gap: 0;
}

.hero-title {
  padding: 20px 20px 10px;
  text-align: center;
  background: #fff;
}

.hero-title-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title h1 {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: #000;
}

.hero-title p {
  margin: 28px auto 0;
  max-width: 820px;
  font-size: 20px;
  line-height: 1.6;
  color: #222;
}

@media (max-width: 768px) {
  .hero-title {
    padding: 16px 20px 40px;
  }

  .hero-title h1 {
    font-size: 36px;
  }

  .hero-title p {
    font-size: 16px;
  }
}

/* ===========================
   Banner Section
=========================== */
.madmon-banner-section {
  width: 100%;
  line-height: 0; /* ป้องกัน gap ใต้ภาพ */
}

.madmon-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===========================
   Agency Description
=========================== */
.madmon-desc-section {
  background: #f0f1f5;
  padding: 60px 24px;
}

.madmon-desc-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.madmon-desc-inner p {
  font-size: clamp(16px, 2vw, 26px);
  line-height: 1.75;
  color: #111;
  margin: 0;
}

.madmon-desc-inner strong {
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  .madmon-desc-section {
    padding: 32px 20px;
  }

  .madmon-desc-inner p {
    font-size: 14px;
    line-height: 1.45;
  }

  .madmon-desc-inner strong {
    font-size: 20px;
  }
}

/* ===========================
   Hero Section
=========================== */
.hero-bg {
  position: relative;
  min-height: 82vh;
  padding: 80px 20px;
  background: #f0f1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===========================
   Floating Mascots
=========================== */
.mascot {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 160px;
  height: auto;
}

.mascot-tl {
  top: 6%;
  left: 3%;
}

.mascot-tr {
  top: 6%;
  right: 3%;
}

.mascot-bl {
  bottom: 8%;
  left: 3%;
}

.mascot-br {
  bottom: 8%;
  right: 3%;
}

@media (max-width: 1100px) {
  .mascot {
    width: 110px;
  }
}

@media (max-width: 768px) {
  .mascot {
    display: none;
  }

  .hero-bg {
    padding: 34px 20px;
    min-height: auto;
  }
}

/* ===========================
   Wheel Container
=========================== */
.hero-center {
  position: relative;
  z-index: 10;
  width: min(620px, 84vw);
  aspect-ratio: 1 / 1;
}

/* yellow disk background */
.bg-disk {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   Center Mascot
=========================== */
.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.center-mascot {
  width: 70%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

@media (max-width: 768px) {
  .center-circle {
    width: 34%;
  }
}

/* ===========================
   Pulse rings
=========================== */
.hero-center::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border: 6px solid #FFE600;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.6;
  z-index: 999;
  pointer-events: none;
  animation: pulseRing 8s ease-in-out infinite;
}

.hero-center::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border: 4px solid rgba(255, 230, 0, 0.8);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  pointer-events: none;
  z-index: 999;
  animation: pulseRing 8s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 0.15;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.5;
  }
}

/* ===========================
   Service Items (6 items, 60° each)
=========================== */
.service-item {
  position: absolute;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #000;
}

.service-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-item a img {
  width: 44px;
  height: auto;
  margin-bottom: 6px;
}

.service-item a span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-item a:hover {
  opacity: 0.80;
  transform: translateY(-2px);
}

.service-item a:hover img {
  transform: scale(1.5);
}

.service-item a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.6);
  border-radius: 6px;
}

/*
  หมุน 20° ตามเข็ม จาก 0° → 20°, 60° → 80°, ...
  r = 36%, cx = 50 + 36*sin(θ), cy = 50 - 36*cos(θ)
  ทุก item ใช้ translate(-50%,-50%) เพื่อ center icon+text ตรง sector
*/

/* Full Campaign — θ=20° → cx=62.3%, cy=16.2% */
.service-item.full {
  top: 18.2%;
  left: 67.3%;
  transform: translate(-50%, -50%);
}

/* Event / Activation — θ=80° → cx=85.5%, cy=43.8% */
.service-item.event {
  top: 49.8%;
  left: 85.5%;
  transform: translate(-50%, -50%);
}

/* VDO Production — θ=140° → cx=73.1%, cy=77.6% */
.service-item.vdo {
  top: 77.6%;
  left: 67.1%;
  transform: translate(-50%, -50%);
}

/* Social Management — θ=200° → cx=37.7%, cy=83.8% */
.service-item.social {
  top: 78.8%;
  left: 32.7%;
  transform: translate(-50%, -50%);
}

/* Media Hub & KOL — θ=260° → cx=14.5%, cy=56.3% */
.service-item.kol {
  top: 49.3%;
  left: 15.5%;
  transform: translate(-50%, -50%);
}

/* Design & Merchandise — θ=320° → cx=26.9%, cy=22.4% */
.service-item.design {
  top: 19.4%;
  left: 32.9%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .service-item {
    width: 62px;
  }

  .service-item a img {
    width: 26px;
    margin-bottom: 3px;
  }

  .service-item a span {
    font-size: 8px;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

/* ===========================
   OUR CLIENTS Section
=========================== */
.clients-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 60px;
  color: #000;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.client-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.client-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* ===========================
   Logo Box
=========================== */
.logo-center {
  width: 100%;
  max-width: 650px;
}

.logo-center img {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .clients-section {
    padding: 50px 16px;
  }

  .clients-title {
    margin-bottom: 40px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .client-card {
    padding: 16px 12px;
    min-height: 80px;
  }
}
