/* ====== Stats (เหมือนในภาพ) ====== */
:root {
  --flw-card-bg: #fff;
  --flw-card-radius: 22px;
  --flw-card-shadow: 0 10px 28px rgba(190, 145, 110, 0.15);
  --flw-num: #c59264; /* โทนทองนุ่ม ๆ */
  --flw-label: #6a6a6a;
  --flw-ring: #f2e7de; /* เฉดครีมจาง */
}
:root {
  --flw-surface: #ffffff;
  --flw-soft: #fbf4ee;
  --flw-line: rgba(0, 0, 0, 0.06);
  --flw-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  --flw-text: #2b2b2b;
  --flw-muted: #6b6b6b;
  --flw-brand: #d9a877; /* โทนครีมทอง */
  --flw-brand-2: #c98a58; /* โทนส้มทองเข้ม */
  --flw-success: #2ecc71;
}

.flw-about-stats {
  padding: 28px 16px;
  max-width: 1400px;
  width: 100%;
  margin: auto;
}

.flw-stats__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.flw-stat {
  background: var(--flw-card-bg);
  border-radius: var(--flw-card-radius);
  box-shadow: 0 12px 30px rgba(201, 138, 88, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  border: 2px solid rgb(255, 255, 255);
  padding: 32px 28px;
  position: relative;
  text-align: center;
  isolation: isolate;
}

/* วงโกลว์เบา ๆ ด้านหลัง */
.flw-stat::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
      120px 60px at 50% -30px,
      var(--flw-ring),
      transparent 60%
    ),
    radial-gradient(120px 60px at 50% 120%, var(--flw-ring), transparent 60%);
  z-index: -1;
}

.flw-stat__num {
  font-weight: 900;
  font-size: clamp(26px, 4vw, 36px);
  background: linear-gradient(90deg, #f2c9a4, #c18e69);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flw-stat__label {
  margin-top: 10px;
  font-size: 16px;
  color: var(--flw-label);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991.98px) {
  .flw-stats__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .flw-stat {
    padding: 26px 20px;
  }
}
@media (max-width: 575.98px) {
  .flw-stats__wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .flw-stat__label {
    font-size: 15px;
  }
}

/* ---------- Follow strip ---------- */
.flw-about-trust {
  padding: 0px 16px;
}

.flw-trust__wrap {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--flw-soft);
  border: 1px solid var(--flw-line);
  border-radius: 14px;
  box-shadow: var(--flw-shadow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.flw-trust__txt {
  color: #a9805a;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-right: 6px;
  white-space: nowrap;
}

.flw-social-logos {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.flw-social-logos li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--flw-line);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.flw-social-logos li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.flw-social-logos img {
  width: 22px;
  height: 22px;
  display: block;
}

/* ---------- CTA Card ---------- */
.flw-about-cta {
  padding: 28px 16px;
}

.flw-cta__card {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--flw-surface);
  border: 1px solid var(--flw-line);
  border-radius: 18px;
  box-shadow: var(--flw-shadow);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.flw-cta__text h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--flw-text);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.flw-cta__text p {
  margin: 0;
  color: var(--flw-muted);
}

.flw-cta__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.flw-btn {
  --pad-y: 11px;
  --pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.flw-btn--solid {
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--flw-brand) 0%,
    var(--flw-brand-2) 100%
  );
  box-shadow: 0 6px 16px rgba(201, 138, 88, 0.28);
}

.flw-btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 138, 88, 0.35);
}

.flw-btn--ghost {
  color: var(--flw-brand-2);
  background: #fff;
  border: 2px solid rgba(201, 138, 88, 0.45);
}

.flw-btn--ghost:hover {
  border-color: var(--flw-brand-2);
  background: rgba(201, 138, 88, 0.06);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .flw-trust__wrap {
    padding: 16px 18px;
  }
  .flw-cta__card {
    padding: 20px 22px;
  }
}

@media (max-width: 768px) {
  .flw-trust__wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    text-align: center;
  }
  .flw-cta__card {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .flw-cta__actions {
    width: 100%;
    justify-content: center;
  }
  .flw-btn {
    width: auto;
  }
}

@media (max-width: 480px) {
  .flw-social-logos li a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }
  .flw-social-logos img {
    width: 20px;
    height: 20px;
  }
  .flw-btn {
    width: 100%;
  }
}

/* =========================
   FOLLOW STRIP (ติดตามเราได้ที่)
   ไม่แตะ HTML — สวยจบในตัว
   ========================= */

/* โครง layout เผื่อยังไม่ได้เซ็ตไว้ */
.flw-trust__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
}

/* กล่องรวม: กลาส + นีโอมอร์ฟิค */
.flw-trust__wrap {
  background: linear-gradient(180deg, #fdf7f1 0%, #fbf2ea 100%);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(201, 138, 88, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}
.flw-trust__wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  pointer-events: none;
  background: radial-gradient(
      1200px 120px at 50% -50%,
      rgba(255, 255, 255, 0.65),
      transparent 55%
    ),
    radial-gradient(
      600px 80px at 30% 120%,
      rgba(255, 213, 170, 0.1),
      transparent 60%
    );
  mix-blend-mode: screen;
}

/* หัวข้อ “ติดตามเราได้ที่” ให้ดูพรีเมียม */
.flw-trust__txt {
  font-weight: 800;
  letter-spacing: 0.25px;
  background: linear-gradient(180deg, #c58d5b 0%, #9f6c40 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}

/* แถวไอคอน */
.flw-social-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ปุ่มไอคอนไสตล์นีโอมอร์ฟิค ใสนุ่ม */
.flw-social-logos li a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  position: relative;
  isolation: isolate;
}
.flw-social-logos li a::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(201, 138, 88, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: -1;
}
.flw-social-logos li a:hover,
.flw-social-logos li a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(201, 138, 88, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.flw-social-logos li a:hover::after,
.flw-social-logos li a:focus-visible::after {
  opacity: 1;
}

/* ขนาดโลโก้ด้านใน */
.flw-social-logos img {
  width: 24px;
  height: 24px;
}

/* Fade-up เบา ๆ ตอนโผล่ */
@keyframes flwFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flw-trust__txt {
  animation: flwFadeUp 0.35s ease both;
}
.flw-social-logos li {
  animation: flwFadeUp 0.35s ease both;
}
.flw-social-logos li:nth-child(1) {
  animation-delay: 0.04s;
}
.flw-social-logos li:nth-child(2) {
  animation-delay: 0.08s;
}
.flw-social-logos li:nth-child(3) {
  animation-delay: 0.12s;
}
.flw-social-logos li:nth-child(4) {
  animation-delay: 0.16s;
}
.flw-social-logos li:nth-child(5) {
  animation-delay: 0.2s;
}

/* ----------------- Responsive ----------------- */
@media (max-width: 768px) {
  .flw-trust__wrap {
    padding: 12px 14px;
  }
  .flw-social-logos {
    gap: 12px;
  }
  .flw-social-logos li a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .flw-social-logos img {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .flw-trust__wrap {
    flex-wrap: wrap;
    gap: 10px 14px;
    justify-content: center;
    text-align: center;
  }
  .flw-trust__txt {
    width: 100%;
  }
  .flw-social-logos {
    gap: 10px;
  }
  .flw-social-logos li a {
    width: 38px;
    height: 38px;
  }
  .flw-social-logos img {
    width: 20px;
    height: 20px;
  }
}
