body {
  margin: 0;
  background: #f2fff8;
  color: #1a3d2e;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.orb-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(120, 220, 180, 0.35), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(180, 255, 200, 0.4), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(100, 200, 160, 0.2), transparent 45%);
  z-index: 0;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(14px, 4vw, 32px);
  background: rgba(242, 255, 248, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 61, 46, 0.1);
}

.top strong { font-size: 1.15rem; flex: 1; }

#mb {
  display: none;
  border: 0;
  background: #1a3d2e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.nv { display: flex; gap: 18px; flex-wrap: wrap; }
.nv a { color: #1a3d2e; text-decoration: none; font-weight: 700; font-size: 0.92rem; }

@media (max-width: 720px) {
  #mb { display: inline-block; }
  .nv {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    background: #fff;
    padding: 12px 16px 18px;
    display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .nv.open { display: flex; }
}

.flow {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem clamp(14px, 3vw, 28px) 3rem;
}

.orbit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.bubble {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 61, 46, 0.15);
  background: #cdebd8;
}

.bubble.big { width: min(52vw, 280px); height: min(52vw, 280px); }
.bubble.mid { width: min(40vw, 200px); height: min(40vw, 200px); }

.bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro {
  flex: 1 1 280px;
  max-width: 480px;
}

.intro h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 12px;
}

.intro p { margin: 0; line-height: 1.75; }

.pill-list {
  background: #fff;
  border-radius: 24px;
  padding: clamp(20px, 4vw, 32px);
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(26, 61, 46, 0.08);
}

.pill-list h2 { margin-top: 0; font-size: 1.25rem; }
.pill-list ul { margin: 0; padding-left: 1.2rem; line-height: 1.75; }

.ring-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 2rem;
}

.ring {
  margin: 0;
  text-align: center;
}

.ring img {
  width: min(100%, 200px);
  height: min(100%, 200px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 8px;
  border: 4px solid rgba(26, 61, 46, 0.15);
  background: #c8ead6;
}

@media (max-width: 800px) {
  .ring-grid { grid-template-columns: repeat(2, 1fr); }
}

.note {
  background: linear-gradient(135deg, #e8ffe8, #fff);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 36px);
  margin-bottom: 2rem;
  border: 1px dashed rgba(26, 61, 46, 0.2);
}

.note h2 { margin-top: 0; }

.lone {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 16px;
  display: block;
  background: #ccc;
}

.legal {
  color: #2d5c47;
  line-height: 1.75;
  padding-bottom: 1rem;
}

.foot {
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.87rem;
  color: #4a7260;
}

/* บล็อกนโยบายร่วม: ติดต่อ / นโยบายความเป็นส่วนตัว / ข้อกำหนด */
.policy-std-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(14px, 4vw, 32px);
  font-size: 0.93rem;
  line-height: 1.75;
}
.policy-std-wrap h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin: 0 0 0.75rem;
}
.policy-std-wrap p { margin: 0 0 0.75rem; }
.policy-std-wrap p:last-child { margin-bottom: 0; }
.foot-pol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.foot-pol a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}