@charset "UTF-8";
/* ════════════════════════════════════════════════════════════════
   อารี ซอฟต์แวร์ — ระบบดีไซน์
   ชุดสีมาจาก แบรนด์-อารีซอฟต์แวร์/โลโก้/README.md (ล็อกแล้ว 13 ส.ค. 2569)
   ห้ามเปลี่ยนค่า HEX ในบล็อก "สีแบรนด์" โดยไม่ได้ตกลงกันก่อน
   ════════════════════════════════════════════════════════════════ */

@import url('/fonts/fonts.css');

/* ── 1. สีแบรนด์ (ค่าคงที่ ไม่ขึ้นกับธีม) ───────────────────── */
:root {
  /* ชุดพื้นเข้ม — เสื้อดำ · เว็บโหมดมืด · แถบสีเข้ม */
  --c-aqua: #3fd0c0;
  --c-amber: #f5b63c;
  --c-coral: #f2705e;
  --c-blue: #5aa5de;
  --c-cream: #f4f1e8;
  --c-ink: #131315;

  /* ชุดพื้นสว่าง — กระดาษ · เว็บโหมดสว่าง (คอนทราสต์ผ่านบนขาว) */
  --c-aqua-deep: #0f766e;
  --c-amber-deep: #b8862f;
  --c-coral-deep: #c2503c;
  --c-blue-deep: #2e6fa8;

  /* ── ระยะและรูปทรง ── */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;

  /* รัศมีมุมอิงจากโลโก้ — บล็อก 51 หน่วยใช้ rx 9 ≈ 17% */
  --r-sm: 8px;  --r-md: 12px;  --r-lg: 18px;  --r-xl: 26px;  --r-full: 999px;

  --container: 1140px;
  --container-narrow: 760px;

  --font-display: 'Kanit', -apple-system, 'Noto Sans Thai', sans-serif;
  --font-body: 'IBM Plex Sans Thai', -apple-system, 'Noto Sans Thai', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dur: 0.24s;
}

/* ── 2. โทเคนตามธีม ────────────────────────────────────────── */
/* ค่าเริ่มต้น = โหมดสว่าง กำหนดบน :root เปล่า ๆ เสมอ
   เพื่อไม่ให้มีสีไหนถูกนิยามครั้งเดียวใน media query */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #fbfaf6;
  --border: #e5e1d7;
  --border-strong: #cbc5b6;
  --text: #14161a;
  --text-2: #4d545e;
  /* #737b86 ให้คอนทราสต์ 4.28:1 บนขาว ซึ่งตกเกณฑ์ — เข้มขึ้นจนผ่าน 4.5:1 */
  --text-3: #6a727d;

  --brand: var(--c-aqua-deep);
  --brand-strong: #0b5750;
  --brand-soft: #e2f2f0;
  --brand-line: #a9d5d0;
  --on-brand: #ffffff;

  --amber: var(--c-amber-deep);
  --amber-soft: #fbf2e0;
  --amber-line: #e5c890;
  --coral: var(--c-coral-deep);
  --coral-soft: #fbeae6;
  --coral-line: #eeb3a6;
  --blue: var(--c-blue-deep);
  --blue-soft: #e8f0f8;
  --blue-line: #a9c6e0;

  --shadow-sm: 0 1px 2px rgb(19 19 21 / 0.05), 0 1px 3px rgb(19 19 21 / 0.04);
  --shadow-md: 0 4px 6px -2px rgb(19 19 21 / 0.05), 0 12px 20px -6px rgb(19 19 21 / 0.09);
  --shadow-lg: 0 10px 20px -8px rgb(19 19 21 / 0.12), 0 30px 50px -20px rgb(19 19 21 / 0.16);

  --hairline: 1px solid var(--border);
  color-scheme: light;
}

/* โทเคนโหมดมืด — เขียนไว้สามที่ตามลำดับความสำคัญ:
   (ก) ผู้ใช้ตั้งระบบเป็นมืด และไม่ได้กดเลือกสว่างเอง */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #131315;
    --bg-alt: #0d0d0f;
    --surface: #1a1b1e;
    --surface-2: #212226;
    --border: #2d2f34;
    --border-strong: #3f424a;
    --text: #f4f1e8;
    --text-2: #b3b1aa;
    --text-3: #86847e;

    --brand: var(--c-aqua);
    --brand-strong: #6ee0d3;
    --brand-soft: #0e2b28;
    --brand-line: #1d4f49;
    --on-brand: #06201d;

    --amber: var(--c-amber);
    --amber-soft: #2c2110;
    --amber-line: #533f1c;
    --coral: var(--c-coral);
    --coral-soft: #2d1613;
    --coral-line: #562a24;
    --blue: var(--c-blue);
    --blue-soft: #121f2b;
    --blue-line: #234055;

    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 8px -2px rgb(0 0 0 / 0.45), 0 14px 24px -8px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 12px 24px -10px rgb(0 0 0 / 0.6), 0 32px 56px -24px rgb(0 0 0 / 0.7);
    color-scheme: dark;
  }
}

/* (ข) ผู้ใช้กดปุ่มเลือกโหมดมืดเอง — ต้องชนะทุกกรณี */
:root[data-theme='dark'] {
  --bg: #131315;
  --bg-alt: #0d0d0f;
  --surface: #1a1b1e;
  --surface-2: #212226;
  --border: #2d2f34;
  --border-strong: #3f424a;
  --text: #f4f1e8;
  --text-2: #b3b1aa;
  --text-3: #86847e;

  --brand: var(--c-aqua);
  --brand-strong: #6ee0d3;
  --brand-soft: #0e2b28;
  --brand-line: #1d4f49;
  --on-brand: #06201d;

  --amber: var(--c-amber);
  --amber-soft: #2c2110;
  --amber-line: #533f1c;
  --coral: var(--c-coral);
  --coral-soft: #2d1613;
  --coral-line: #562a24;
  --blue: var(--c-blue);
  --blue-soft: #121f2b;
  --blue-line: #234055;

  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
  --shadow-md: 0 4px 8px -2px rgb(0 0 0 / 0.45), 0 14px 24px -8px rgb(0 0 0 / 0.5);
  --shadow-lg: 0 12px 24px -10px rgb(0 0 0 / 0.6), 0 32px 56px -24px rgb(0 0 0 / 0.7);
  color-scheme: dark;
}

/* (ค) แถบพื้นเข้มที่วางในหน้าโหมดสว่างได้ — ใช้ชุดสีสดของแบรนด์
   นี่คือหัวใจของธีม: เนื้อหาอ่านง่ายบนพื้นสว่าง แต่แบรนด์โผล่เต็มตาในแถบเข้ม */
.on-dark {
  --bg: #131315;
  --bg-alt: #0d0d0f;
  --surface: #1c1d21;
  --surface-2: #222327;
  --border: #2f3137;
  --border-strong: #44474f;
  --text: #f4f1e8;
  --text-2: #b8b6ae;
  --text-3: #8b8982;
  --brand: var(--c-aqua);
  --brand-strong: #6ee0d3;
  --brand-soft: #10302c;
  --brand-line: #1f544e;
  --on-brand: #06201d;
  --amber: var(--c-amber);
  --amber-soft: #2c2110;
  --amber-line: #533f1c;
  --coral: var(--c-coral);
  --coral-soft: #2d1613;
  --coral-line: #562a24;
  --blue: var(--c-blue);
  --blue-soft: #121f2b;
  --blue-line: #234055;
  background: var(--bg);
  color: var(--text);
}

/* ── 3. รีเซ็ตและพื้นฐาน ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.78;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 3.2vw, 3.5rem); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.35rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1.2rem, 1.06rem + 0.6vw, 1.45rem); }
h4 { font-size: 1.075rem; }

p { text-wrap: pretty; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-strong); }

img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { padding-inline-start: 1.25em; }
li::marker { color: var(--text-3); }

:focus-visible {
  outline: 2.5px solid var(--brand);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--brand); color: var(--on-brand); }

/* ── 4. โครงหน้า ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(var(--sp-7), 5vw, var(--sp-9)); }
.section--tight { padding-block: clamp(var(--sp-6), 4vw, var(--sp-7)); }
.section--alt { background: var(--bg-alt); }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.grid { display: grid; gap: var(--sp-5); }
/* 420px คือเลขที่ทำให้ได้ 2 คอลัมน์พอดีบนคอนเทนเนอร์ 1140px และยุบเป็น 1 บนมือถือ
   ถ้าใช้ 300px มันจะแตกเป็น 3 คอลัมน์เองบนจอใหญ่ ซึ่งไม่ใช่สิ่งที่ตั้งใจ */
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(268px, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(214px, 100%), 1fr)); }

.split {
  display: grid;
  gap: clamp(var(--sp-6), 5vw, var(--sp-8));
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .split--sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: var(--sp-4);
  z-index: 200;
  transform: translateY(-200%);
  background: var(--brand);
  color: var(--on-brand);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translateY(0); color: var(--on-brand); }

/* ── 5. ตัวอักษรช่วยงาน ────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  flex: none;
}

.lead { font-size: clamp(1.075rem, 1rem + 0.4vw, 1.24rem); color: var(--text-2); line-height: 1.72; }
.muted { color: var(--text-2); }
.small { font-size: 0.92rem; }
.tiny { font-size: 0.82rem; color: var(--text-3); line-height: 1.6; }
.mono { font-family: var(--font-mono); font-size: 0.9em; }
.nowrap { white-space: nowrap; }

.section-head { max-width: 62ch; margin-bottom: clamp(var(--sp-6), 4vw, var(--sp-7)); }
.section-head .lead { margin-top: var(--sp-4); }

/* ── 6. ปุ่ม ────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--on-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.82rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
/* ไอคอนในปุ่มต้องถูกล็อกขนาด ไม่งั้น SVG จะยืดจนเบียดข้อความจนขึ้นบรรทัดใหม่ */
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); box-shadow: none; }

.btn--soft { --btn-bg: var(--brand-soft); --btn-fg: var(--brand); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.075rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* ── 7. ป้ายและชิป ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.28rem 0.72rem;
  border-radius: var(--r-full);
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.badge--amber { background: var(--amber-soft); border-color: var(--amber-line); color: var(--amber); }
.badge--coral { background: var(--coral-soft); border-color: var(--coral-line); color: var(--coral); }
.badge--blue { background: var(--blue-soft); border-color: var(--blue-line); color: var(--blue); }
.badge--plain { background: var(--surface-2); border-color: var(--border); color: var(--text-2); }

/* ── 8. โลโก้ ───────────────────────────────────────────────── */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.logo:hover { color: inherit; }
.logo__mark { width: 34px; height: 34px; flex: none; border-radius: 7px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.12; }
.logo__name { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing: -0.01em; white-space: nowrap; }
.logo__sub { font-size: 0.68rem; color: var(--text-3); letter-spacing: 0.09em; text-transform: uppercase; font-weight: 500; }

/* ── 9. หัวเว็บ ─────────────────────────────────────────────── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.masthead[data-scrolled='true'] { border-bottom-color: var(--border); }
.masthead__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: 4.5rem;
}
.masthead__nav { display: none; margin-inline-start: auto; }
.masthead__actions { display: flex; align-items: center; gap: var(--sp-2); margin-inline-start: auto; }
/* บนจอแคบ ปุ่มขอใบเสนอราคาในแถบบนจะบีบโลโก้จนตัวหนังสือตกบรรทัด — ซ่อนไว้
   ผู้ใช้ยังกดได้จากเมนูและจากปุ่มลอยที่ขอบจอ */
.masthead__actions .btn { display: none; }
@media (min-width: 560px) { .masthead__actions .btn { display: inline-flex; } }

@media (min-width: 1024px) {
  .masthead__nav { display: flex; align-items: center; gap: var(--sp-1); margin-inline-start: auto; }
  .masthead__actions { margin-inline-start: 0; }
}

.navlink {
  padding: 0.5rem 0.72rem;
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: 0.945rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.navlink:hover { color: var(--text); background: var(--surface-2); }
.navlink[aria-current='page'] { color: var(--brand); font-weight: 600; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.icon-btn:hover { color: var(--brand); border-color: var(--brand-line); }
.icon-btn svg { width: 18px; height: 18px; }

.nav-toggle { display: inline-grid; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* เมนูมือถือ */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding-block: var(--sp-4) var(--sp-5);
}
.mobile-nav[data-open='true'] { display: block; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav__list { display: grid; gap: 2px; list-style: none; padding: 0; margin: 0; }
.mobile-nav__list a {
  display: block;
  padding: 0.72rem var(--sp-3);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  text-decoration: none;
}
.mobile-nav__list a:hover { background: var(--surface-2); }
.mobile-nav__list a[aria-current='page'] { color: var(--brand); background: var(--brand-soft); }
.mobile-nav .btn { margin-top: var(--sp-4); }

/* ── 10. ลายเซ็นแบรนด์: ผังเหลื่อม ─────────────────────────── */
/* บล็อกสี่ก้อนแบบเดียวกับโลโก้ ใช้เป็นลายประดับ ไม่ใช่ไอคอนสั่งงาน */
.offset-mark { display: block; width: 100%; height: auto; }

/* ลายประดับล้นออกนอกกรอบโดยตั้งใจ — กรอบที่ใส่มันต้องตัดส่วนเกินเสมอ
   ไม่งั้นหน้าเว็บจะเลื่อนซ้ายขวาได้ ซึ่งบนมือถือคือบั๊กที่คนสังเกตทันที */
.relative:has(> .deco-blocks),
.section:has(> .deco-blocks) { overflow: hidden; }

.deco-blocks {
  position: absolute;
  inset-inline-end: -6%;
  inset-block-start: -12%;
  width: min(46%, 460px);
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 767px) { .deco-blocks { opacity: 0.08; width: 70%; } }

/* เส้นคั่นสี่สี — ใช้ปิดท้ายแถบเข้ม */
.rule-4 {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  gap: 3px;
  background: transparent;
}
.rule-4 span { flex: 1; border-radius: 2px; }
.rule-4 span:nth-child(1) { background: var(--c-aqua); flex: 2.2; }
.rule-4 span:nth-child(2) { background: var(--c-amber); flex: 1; }
.rule-4 span:nth-child(3) { background: var(--c-coral); flex: 0.9; }
.rule-4 span:nth-child(4) { background: var(--c-blue); flex: 2; }

/* ── 11. ฮีโร่ ──────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--sp-7), 7vw, var(--sp-10)) clamp(var(--sp-7), 6vw, var(--sp-9));
}
.hero__inner { position: relative; z-index: 1; }
.hero h1 { max-width: 19ch; }

/* บังคับจุดขึ้นบรรทัดของหัวข้อหน้าแรก ให้ประโยคขาดตรงที่ความหมายจบพอดี
   ถ้าปล่อยให้เบราว์เซอร์ตัดเอง มันจะทิ้งคำว่า "ที่" ค้างท้ายบรรทัดแรก
   วัดแล้วบรรทัด "ที่มีคนคอยดูแลคุณจริง ๆ" ต้องการจอกว้างอย่างน้อย 387px
   จึงจะอยู่ได้ครบบรรทัดเดียว — แคบกว่านั้นบังคับไปจะเหลือ "ๆ" ห้อยเป็นบรรทัดที่สาม
   ต่ำกว่า 390px จึงปล่อยให้ไหลเอง สองบรรทัดยังอ่านรู้เรื่องอยู่ */
.h1-break { display: inline; }
@media (min-width: 390px) {
  .hero h1 { text-wrap: initial; }
  .h1-break { display: block; }
}
.hero .lead { max-width: 56ch; margin-top: var(--sp-5); font-size: clamp(1.1rem, 1rem + 0.55vw, 1.32rem); }
.hero .btn-row { margin-top: var(--sp-6); }
.hero__meta { margin-top: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); }
.hero__meta span { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 0.92rem; color: var(--text-2); }
.hero__meta svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

.hl { color: var(--brand); }
.hl-amber { color: var(--amber); }
.hl-coral { color: var(--coral); }
.hl-blue { color: var(--blue); }

/* ── 12. การ์ด ──────────────────────────────────────────────── */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: clamp(var(--sp-5), 3vw, var(--sp-6));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card--flat { background: transparent; }
.card h3 { letter-spacing: -0.012em; }
/* หัวข้อในการ์ดบางที่ต้องเป็น h2 เพื่อไม่ให้ลำดับหัวข้อกระโดด แต่ต้องดูเท่า h3 */
.card h2:not([class*='pkg']), .post-card h2 { font-size: clamp(1.2rem, 1.06rem + 0.6vw, 1.45rem); letter-spacing: -0.012em; }
.card > p { color: var(--text-2); }

/* แถบสีบนหัวการ์ด — จับคู่กับสีของบล็อกในโลโก้ */
.card--tinted { border-top: 3px solid var(--accent, var(--brand)); }
.t-aqua { --accent: var(--brand); }
.t-amber { --accent: var(--amber); }
.t-coral { --accent: var(--coral); }
.t-blue { --accent: var(--blue); }

.card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--accent, var(--brand)) 14%, transparent);
  color: var(--accent, var(--brand));
  flex: none;
}
.card__icon svg { width: 22px; height: 22px; }

.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.tick-list li { position: relative; padding-inline-start: 1.75rem; line-height: 1.68; }
.tick-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent, var(--brand));
}
.tick-list--sm li { font-size: 0.95rem; }

.x-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
.x-list li { position: relative; padding-inline-start: 1.9rem; }
.x-list li::before {
  content: '×';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  background: var(--coral-soft);
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
.x-list b { display: block; font-family: var(--font-display); font-weight: 600; }
.x-list span { color: var(--text-2); font-size: 0.95rem; }

/* ── 12b. ภาพหน้าจอระบบ ────────────────────────────────────── */
/* ใช้โชว์หน้าตาซอฟต์แวร์บนหน้าสินค้า แทนการเปิดลิงก์ให้คนนอกกดเข้าระบบเอง */
/* บังคับสองคอลัมน์ตายตัวบนจอกว้าง ไม่ใช้ auto-fit — เพราะภาพคู่ "มุมตัวแทน / มุมหัวหน้า"
   ต้องมาอยู่ข้างกันเสมอ คนดูถึงจะเทียบคอลัมน์ชื่อได้ทันที ถ้าปล่อยให้ไหลเป็นสามคอลัมน์
   คู่จะแตกและภาพเล็กจนอ่านตัวหนังสือในภาพไม่ออก */
.shots { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 800px) { .shots { grid-template-columns: 1fr 1fr; } }
.shot { margin: 0; }
.shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface-2);
}
.shot figcaption { margin-top: var(--sp-3); font-size: 0.9rem; color: var(--text-2); }

/* ภาพจากมือถือเป็นทรงสูง ถ้าปล่อยกว้างเต็มช่องจะสูงจนดันภาพอื่นตกจอ
   จึงคุมความกว้างไว้แล้ววางกลางแผ่นสีอ่อน ให้ที่ว่างสองข้างดูตั้งใจ ไม่ใช่ดูพลาด */
.shot--phone img {
  max-width: 300px;
  margin-inline: auto;
  border-radius: var(--r-lg);
}
.shot--phone {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-4);
}
.shot--phone figcaption { text-align: center; margin-inline: auto; max-width: 34ch; }

/* ── 13. ตัวเลข/สถิติ ──────────────────────────────────────── */
.stats { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); }
.stat { border-inline-start: 3px solid var(--accent, var(--brand)); padding-inline-start: var(--sp-4); }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.stat__unit { font-size: 0.62em; font-weight: 500; color: var(--text-2); margin-inline-start: 0.28em; }
.stat__label { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; margin-top: var(--sp-2); }
.stats > .stat:nth-child(4n + 1) { --accent: var(--brand); }
.stats > .stat:nth-child(4n + 2) { --accent: var(--amber); }
.stats > .stat:nth-child(4n + 3) { --accent: var(--coral); }
.stats > .stat:nth-child(4n + 4) { --accent: var(--blue); }

/* ── 14. การ์ดแพคเกจ ───────────────────────────────────────── */
.pkg-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); align-items: start; }

.pkg { position: relative; }
.pkg--popular { border-color: var(--brand); box-shadow: var(--shadow-md); }
.pkg__flag {
  position: absolute;
  top: -0.8rem;
  inset-inline-start: var(--sp-5);
  background: var(--brand);
  color: var(--on-brand);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.22rem 0.7rem;
  border-radius: var(--r-full);
}
.pkg__code {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent, var(--brand));
}
.pkg__price { display: flex; align-items: baseline; gap: 0.35rem; flex-wrap: wrap; margin-block: var(--sp-2) var(--sp-1); }
.pkg__price b { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.pkg__price span { color: var(--text-2); font-size: 0.95rem; }
.pkg__for { font-size: 0.95rem; color: var(--text-2); border-block: var(--hairline); padding-block: var(--sp-3); }
.pkg__meta { display: grid; gap: var(--sp-2); font-size: 0.88rem; color: var(--text-2); margin-top: auto; padding-top: var(--sp-4); }
.pkg__meta div { display: flex; justify-content: space-between; gap: var(--sp-3); }
.pkg__meta dt { color: var(--text-3); }
.pkg__meta dd { margin: 0; text-align: end; font-weight: 500; color: var(--text); }

/* แท็บสลับสายลูกค้า */
.tabs { display: inline-flex; padding: 4px; gap: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-full); flex-wrap: wrap; }
.tab {
  padding: 0.55rem 1.15rem;
  border: none;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.tab:hover { color: var(--text); }
.tab[aria-selected='true'] { background: var(--surface); color: var(--brand); font-weight: 600; box-shadow: var(--shadow-sm); }
.tabpanel[hidden] { display: none; }

/* ── 15. ตาราง ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 520px; }
th, td { padding: 0.85rem 1rem; text-align: start; border-bottom: 1px solid var(--border); vertical-align: top; }
thead th {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface-2);
  white-space: nowrap;
  position: sticky;
  top: 0;
}
tbody tr:last-child td { border-bottom: none; }
tbody th { font-weight: 500; color: var(--text-2); font-family: var(--font-body); }
.t-yes { color: var(--brand); font-weight: 700; }
.t-no { color: var(--text-3); }
.col-featured { background: var(--brand-soft); }

/* ── 16. ขั้นตอนทำงาน ──────────────────────────────────────── */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  position: relative;
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-6) 0 var(--sp-6) 4rem;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step__n {
  position: absolute;
  inset-inline-start: 0;
  top: var(--sp-6);
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--accent, var(--brand)) 15%, transparent);
  color: var(--accent, var(--brand));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.step__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--sp-3); }
.step__duration { font-size: 0.85rem; color: var(--text-3); }
.step__cols { display: grid; gap: var(--sp-4); }
@media (min-width: 720px) { .step__cols { grid-template-columns: 1fr 1fr; } }
.step__col { padding: var(--sp-4); background: var(--surface-2); border-radius: var(--r-md); font-size: 0.95rem; }
.step__col b { display: block; font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-3); margin-bottom: var(--sp-2); }

/* ── 17. หีบเพลง (คำถามที่พบบ่อย) ──────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.accordion details + details { border-top: 1px solid var(--border); }
.accordion summary {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.55;
  list-style: none;
  transition: background-color var(--dur) var(--ease);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: var(--surface-2); }
.accordion summary::after {
  content: '';
  margin-inline-start: auto;
  flex: none;
  width: 11px;
  height: 11px;
  margin-top: 0.45em;
  border-inline-end: 2px solid var(--text-3);
  border-block-end: 2px solid var(--text-3);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.accordion details[open] summary { color: var(--brand); }
.accordion details[open] summary::after { transform: rotate(-135deg); border-color: var(--brand); }
.accordion__body { padding: 0 var(--sp-5) var(--sp-5); color: var(--text-2); max-width: 72ch; }

/* ── 18. ฟอร์ม ──────────────────────────────────────────────── */
.form { display: grid; gap: var(--sp-5); }
.field { display: grid; gap: var(--sp-2); }
.field > label { font-family: var(--font-display); font-weight: 500; font-size: 0.95rem; }
.field .req { color: var(--coral); }
.field__hint { font-size: 0.85rem; color: var(--text-3); line-height: 1.55; }
.field__error { font-size: 0.85rem; color: var(--coral); font-weight: 500; display: none; }
.field[data-invalid='true'] .field__error { display: block; }
.field[data-invalid='true'] input,
.field[data-invalid='true'] textarea,
.field[data-invalid='true'] select { border-color: var(--coral); }

input[type='text'], input[type='email'], input[type='tel'], input[type='number'], textarea, select {
  width: 100%;
  padding: 0.72rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3.5px color-mix(in srgb, var(--brand) 22%, transparent);
}
textarea { min-height: 8rem; resize: vertical; line-height: 1.7; }

.choice-grid { display: grid; gap: var(--sp-2); grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); }
.choice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--dur) var(--ease);
}
.choice:hover { border-color: var(--brand-line); background: var(--surface-2); }
.choice input { margin-top: 0.35em; accent-color: var(--brand); flex: none; }
.choice:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.choice:has(input:focus-visible) { outline: 2.5px solid var(--brand); outline-offset: 2px; }
.choice b { display: block; font-family: var(--font-display); font-weight: 600; }
.choice span { color: var(--text-2); font-size: 0.88rem; }

.consent { display: flex; gap: var(--sp-3); align-items: flex-start; padding: var(--sp-4); background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 0.92rem; line-height: 1.65; }
.consent input { margin-top: 0.32em; accent-color: var(--brand); flex: none; width: 1.05rem; height: 1.05rem; }
/* ช่องยินยอมอยู่นอกกล่อง .field จึงไม่ได้สีแดงเหมือนช่องอื่นตอนกรอกไม่ครบ
   แต่ข้อความแจ้งเตือนบอกให้ "ดูช่องที่ขึ้นสีแดง" และนับช่องนี้รวมไปด้วย
   คนจึงหาไม่เจอว่าตกตรงไหน — ให้มันขึ้นสีแดงได้เหมือนช่องอื่น */
.consent[data-invalid='true'] { border-color: var(--coral); background: var(--coral-soft); }

.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-status { padding: var(--sp-4) var(--sp-5); border-radius: var(--r-md); font-size: 0.95rem; display: none; }
.form-status[data-state='ok'] { display: block; background: var(--brand-soft); border: 1px solid var(--brand-line); color: var(--brand); }
.form-status[data-state='error'] { display: block; background: var(--coral-soft); border: 1px solid var(--coral-line); color: var(--coral); }

/* ── 18b. ตัวประเมินราคา ───────────────────────────────────── */
.est { display: grid; gap: var(--sp-6); }
.est__q { border: none; padding: 0; margin: 0; }
.est__q legend {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: var(--sp-4);
  padding: 0;
}
.est__n {
  flex: none;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}
.est__hint {
  display: block;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--text-3);
  line-height: 1.55;
  margin-top: 2px;
}

/* ผลลัพธ์เกาะขอบจอไว้บนจอใหญ่ จะได้เห็นตัวเลขเปลี่ยนขณะเลื่อนตอบคำถาม */
.est-result { position: static; }
@media (min-width: 900px) { .est-result { position: sticky; top: 5.5rem; } }
.est-result__card { gap: var(--sp-2); }
.est-result__card h2 { font-size: 1.35rem; letter-spacing: -0.015em; }

.est-notes { display: grid; gap: var(--sp-2); margin-top: var(--sp-2); }
.est-note {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-2);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border-inline-start: 3px solid var(--border-strong);
}
.est-note--warn {
  background: var(--amber-soft);
  border-inline-start-color: var(--amber);
  color: var(--text);
}

/* ── 19. กล่องข้อความเน้น ──────────────────────────────────── */
.callout {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-5);
  border-radius: var(--r-md);
  border-inline-start: 3px solid var(--accent, var(--brand));
  background: color-mix(in srgb, var(--accent, var(--brand)) 8%, var(--surface));
  font-size: 0.97rem;
}
.callout b { font-family: var(--font-display); color: var(--accent, var(--brand)); }
.callout--amber { --accent: var(--amber); }
.callout--coral { --accent: var(--coral); }
.callout--blue { --accent: var(--blue); }

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.6rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  max-width: 30ch;
}

/* ── 20. ท้ายเว็บ ───────────────────────────────────────────── */
.footer { padding-block: var(--sp-8) var(--sp-6); border-top: 1px solid var(--border); background: var(--bg-alt); }
.footer__grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); }
.footer__brand { grid-column: 1 / -1; max-width: 34ch; }
@media (min-width: 900px) { .footer__brand { grid-column: auto; max-width: 30ch; } }
.footer__heading { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: var(--sp-4); }
.footer ul { list-style: none; padding: 0; display: grid; gap: var(--sp-3); }
.footer a { color: var(--text-2); text-decoration: none; font-size: 0.95rem; }
.footer a:hover { color: var(--brand); text-decoration: underline; }
.footer__base { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); justify-content: space-between; align-items: center; }

/* ── 21. ปุ่มลอยติดต่อ ─────────────────────────────────────── */
.dock {
  position: fixed;
  inset-inline-end: var(--sp-4);
  /* เผื่อแถบโฮมของ iPhone ด้วย — หน้าเว็บประกาศ viewport-fit=cover ไว้
     ถ้าไม่เผื่อ ปุ่มจะไปนอนทับแถบโฮมจนกดยาก */
  inset-block-end: calc(var(--sp-4) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
@media (max-width: 640px) {
  .dock { inset-inline: var(--sp-4); flex-direction: row; }
  .dock .dock__btn { flex: 1; }

  /* บนจอแคบปุ่มลอยเรียงเป็นแถวกว้างเต็มจอ แล้วไปทับแถวลิงก์ท้ายเว็บ
     (นโยบายความเป็นส่วนตัว · เงื่อนไข · ตั้งค่าคุกกี้) จนกดไม่ได้เลยสักหน้า
     ลิงก์ชุดนี้ต้องกดถึงได้ตามกฎหมาย จึงต้องกันที่ให้ปุ่มลอยไว้ท้ายหน้า */
  .footer { padding-block-end: calc(var(--sp-6) + 5rem + env(safe-area-inset-bottom, 0px)); }
}
.dock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.72rem 1.15rem;
  border-radius: var(--r-full);
  background: var(--brand);
  color: var(--on-brand);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease);
}
.dock__btn:hover { transform: translateY(-2px); color: var(--on-brand); }
.dock__btn--line { background: #06c755; color: #fff; }
.dock__btn svg { width: 18px; height: 18px; flex: none; }

/* ── 22. แบนเนอร์ความยินยอม ───────────────────────────────── */
.consent-bar {
  position: fixed;
  inset-inline: var(--sp-4);
  inset-block-end: var(--sp-4);
  z-index: 120;
  max-width: 620px;
  margin-inline: auto;
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: none;
}
.consent-bar[data-open='true'] { display: block; }
.consent-bar p { font-size: 0.93rem; color: var(--text-2); line-height: 1.65; }
.consent-bar .btn-row { margin-top: var(--sp-4); }
.consent-bar .btn { flex: 1; min-width: 130px; }

/* ── 23. เนื้อหาบทความ ─────────────────────────────────────── */
.prose { max-width: 68ch; font-size: 1.09rem; line-height: 1.85; }
.prose > * + * { margin-top: 1.35em; }
.prose h2 { margin-top: 2.4em; margin-bottom: -0.35em; padding-top: 0.4em; }
.prose h3 { margin-top: 1.9em; margin-bottom: -0.5em; }
.prose ul, .prose ol { padding-inline-start: 1.4em; }
.prose li + li { margin-top: 0.55em; }
.prose li::marker { color: var(--brand); }
.prose strong { font-weight: 600; color: var(--text); }
.prose blockquote {
  border-inline-start: 3px solid var(--brand);
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  color: var(--text-2);
  font-style: normal;
}
.prose blockquote > * + * { margin-top: 0.8em; }
.prose code { font-family: var(--font-mono); font-size: 0.88em; background: var(--surface-2); padding: 0.15em 0.4em; border-radius: 5px; }
.prose hr { border: none; border-top: 1px solid var(--border); margin-block: 2.4em; }
.prose table { min-width: 0; }
.prose .table-wrap { margin-block: 1.8em; }
.prose ul:has(.checkitem) { list-style: none; padding-inline-start: 0; }
.checkitem { display: flex; gap: 0.7em; align-items: flex-start; }
.checkitem__box {
  flex: none;
  width: 1.3em;
  height: 1.3em;
  margin-top: 0.25em;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--border-strong);
  border-radius: 5px;
  color: var(--brand);
  font-size: 0.85em;
  font-weight: 700;
}

.post-meta { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); font-size: 0.9rem; color: var(--text-3); }

.post-card { display: flex; flex-direction: column; gap: var(--sp-3); text-decoration: none; color: inherit; height: 100%; }
.post-card:hover { color: inherit; }
.post-card:hover h3 { color: var(--brand); }
.post-card h3 { transition: color var(--dur) var(--ease); }

.tag-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.tag { font-size: 0.78rem; color: var(--text-3); background: var(--surface-2); border: 1px solid var(--border); padding: 0.18rem 0.6rem; border-radius: var(--r-full); }

/* ── 23b. แผนผังเว็บสำหรับคน ───────────────────────────────── */
.sitemap-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.sitemap-list li {
  display: grid;
  gap: 2px;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  border-inline-start: 3px solid transparent;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sitemap-list li:hover { background: var(--surface-2); border-inline-start-color: var(--brand); }
.sitemap-list a { font-family: var(--font-display); font-weight: 500; text-decoration: none; }
.sitemap-list a:hover { text-decoration: underline; }
.sitemap-list span { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }
.sitemap-list li::marker { content: none; }

/* ── 24. ป้ายบอกทาง ───────────────────────────────────────── */
.crumbs { display: flex; flex-wrap: wrap; gap: var(--sp-2); font-size: 0.88rem; color: var(--text-3); list-style: none; padding: 0; margin-bottom: var(--sp-4); }
.crumbs li:not(:last-child)::after { content: '/'; margin-inline-start: var(--sp-2); color: var(--border-strong); }
.crumbs a { color: var(--text-3); text-decoration: none; }
.crumbs a:hover { color: var(--brand); }

/* ── 25. แถบเรียกร้องท้ายหน้า ─────────────────────────────── */
.cta-band { position: relative; overflow: hidden; padding-block: clamp(var(--sp-7), 6vw, var(--sp-9)); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { max-width: 20ch; }
.cta-band .lead { max-width: 52ch; margin-top: var(--sp-4); }

/* ── 26. ยูทิลิตี้ ─────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.relative { position: relative; }
.full-bleed { border-radius: 0; }

@media print {
  .masthead, .dock, .consent-bar, .footer, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #555; }
}
