/* ============================================
   Smart SD — Design System
   Style: Apple-minimal, Soft Blue + Sand
   ============================================ */

:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-bg-soft: #fafaf7;
  --color-sand: #f5efe6;
  --color-sand-deep: #ebe2d3;
  --color-blue: #4a7ba6;
  --color-blue-deep: #2d5a7e;
  --color-blue-soft: #e8f0f7;
  --color-charcoal: #1d1d1f;
  --color-text: #2c2c2e;
  --color-text-muted: #6e6e73;
  --color-text-light: #86868b;
  --color-border: #e5e5e7;
  --color-border-light: #f0f0f0;
  --color-accent: #c97b3f;

  /* Typography — modern: Prompt (TH) + Manrope (EN) + Fraunces italic accent */
  --font-thai: 'Sarabun', 'Noto Sans Thai Looped', sans-serif;
  --font-en: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Sarabun', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 880px;

  /* Effects */
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 24px rgba(45, 90, 126, 0.08), 0 2px 6px rgba(0,0,0,0.04);
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-thai), var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.lang-en body,
body.lang-en {
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-charcoal);
}

.display-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.display-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--color-blue);
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* English serif accent */
.serif {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 400;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ============================================
   Top utility bar (pill style — AccProTax inspired)
   ============================================ */
.top-bar {
  background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-blue) 100%);
  padding: 0.7rem 0;
  line-height: 1.4;
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.top-bar-left a,
.top-bar-left span {
  background: white;
  color: var(--color-charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.top-bar-left a:hover {
  background: var(--color-bg-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.top-bar-left svg {
  width: 16px;
  height: 16px;
  color: var(--color-blue);
  opacity: 1;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
}

.top-bar-social a {
  background: white;
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.top-bar-social a:hover {
  background: var(--color-bg-soft);
  transform: translateY(-1px);
}

.top-bar-social svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .top-bar { padding: 0.55rem 0; }
  .top-bar-inner { gap: 0.4rem; }
  .top-bar-left { gap: 0.35rem; }
  .top-bar-left a,
  .top-bar-left span {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }
  .top-bar-left .hide-mobile { display: none; }
  .top-bar-social { margin-left: 0; }
  .top-bar-social a { width: 28px; height: 28px; }
}

/* Credibility badge row */
.credibility-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.cred-badge strong {
  color: var(--color-blue-deep);
  font-weight: 600;
}

.cred-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-blue);
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition);
  border: 1px solid var(--color-border-light);
}

.footer-social a:hover {
  background: var(--color-blue);
  color: white;
  border-color: var(--color-blue);
}

.footer-social svg { width: 18px; height: 18px; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span {
  white-space: nowrap;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0;
}

img.nav-logo-mark {
  background: none;
  border-radius: 0;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  list-style: none;
  flex-wrap: nowrap;
}

.nav-menu a {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--color-blue);
}

.nav-menu a.active {
  color: var(--color-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: white;
}

.lang-toggle:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-charcoal);
  transition: var(--transition);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.btn-primary {
  background: var(--color-charcoal);
  color: white;
}

.btn-primary:hover {
  background: var(--color-blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45, 90, 126, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-charcoal);
  background: var(--color-bg-soft);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content > * + * {
  margin-top: 1.25rem;
}

.hero h1 {
  margin-bottom: 0;
}

.hero h1 .accent {
  color: var(--color-blue);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
}

.hero-trust-item {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust-item strong {
  color: var(--color-charcoal);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-en);
  font-style: italic;
}

/* Hero illustration — smaller, more balanced */
.hero-visual {
  position: relative;
  max-width: 340px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

/* ============================================
   Service Grid
   ============================================ */
.section-header {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.service-card {
  background: var(--color-bg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  background: var(--color-bg-soft);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-deep);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex-grow: 1;
}

.service-link {
  font-size: 0.85rem;
  color: var(--color-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card:hover .service-link::after {
  transform: translateX(4px);
}

/* ============================================
   Problem section
   ============================================ */
.section-soft {
  background: var(--color-sand);
  position: relative;
}

.problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-item {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-sand-deep);
}

.problem-num {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.problem-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.problem-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   Why us
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border-light);
  align-items: flex-start;
}

.why-list li:last-child {
  border-bottom: none;
}

.why-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

.why-list li > div {
  flex: 1;
}

.why-list strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-charcoal);
}

.why-list span {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================
   Areas served
   ============================================ */
.areas {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-blue-soft) 100%);
}

.areas-cities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 2.5rem;
  font-family: var(--font-en);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--color-blue-deep);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.areas-cities span {
  position: relative;
}

.areas-cities span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -1.75rem;
  color: var(--color-blue);
  opacity: 0.4;
}

.areas-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  background: var(--color-charcoal);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 123, 166, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--color-charcoal);
  position: relative;
}

.cta-banner .btn-primary:hover {
  background: var(--color-sand);
  transform: translateY(-1px);
}

/* ============================================
   Visit / LINE QR section
   ============================================ */
.visit-section {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3rem, 7vw, 5rem);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.visit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visit-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.visit-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.visit-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.visit-line img {
  background: #06C755;
  padding: 0.75rem;
  object-fit: contain;
}

.visit-card-cap {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.visit-card-cap strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.visit-card-cap span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ============================================
   Floating LINE button (mobile-friendly FAB)
   ============================================ */
.line-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #06C755;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.line-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.45);
}

.line-fab svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid var(--color-border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a,
.footer-col li {
  font-size: 0.9rem;
  color: var(--color-text);
}

.footer-col a:hover {
  color: var(--color-blue);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   Contact / Form
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.contact-info-block a:hover {
  color: var(--color-blue);
}

.contact-info-block .phone {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: block;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-family: inherit;
  color: var(--color-text);
  transition: var(--transition);
  width: 100%;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(74, 123, 166, 0.12);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* ============================================
   Page hero (sub pages)
   ============================================ */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.page-hero .container-narrow {
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 1rem 0;
}

.page-hero-mascot {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(110px, 14vw, 180px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}

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

/* ============================================
   Service detail (services.html)
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail {
  padding: 2.5rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-detail:hover {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-detail .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.service-detail .service-icon svg {
  width: 26px;
  height: 26px;
}

.service-detail h3 {
  font-size: 1.35rem;
  letter-spacing: -0.015em;
}

.service-detail p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-detail ul li {
  font-size: 0.88rem;
  color: var(--color-text);
  padding-left: 1.25rem;
  position: relative;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* ============================================
   Map section
   ============================================ */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.map-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  background: var(--color-sand);
  position: relative;
}

.map-frame iframe

/* ============================================
   Quick contact strip (below hero)
   ============================================ */
.contact-strip {
  padding: 1.5rem 0 2.5rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-strip-item:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.contact-strip-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-strip-icon svg {
  width: 22px;
  height: 22px;
}

.contact-strip-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 0.15rem;
  font-weight: 500;
}

.contact-strip-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .contact-strip-grid { grid-template-columns: 1fr; }
}

/* Map with pinned info card */
.map-with-pin {
  position: relative;
}

.map-with-pin img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--color-border-light);
  display: block;
}

.map-pin {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  max-width: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 720px) {
  .map-pin {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}

/* ============================================
   Compact link list (useful-links page)
   ============================================ */
.link-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.link-section + .link-section {
  border-top: 1px solid var(--color-border-light);
}

.link-section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.link-section-head img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.link-section-head .text {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
}

.link-section-head h2 {
  font-size: 1.4rem;
  letter-spacing: -0.015em;
}

/* Mascot accent in pages */
.mascot-accent {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.mascot-accent img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

.mascot-accent-text {
  flex: 1;
}

@media (max-width: 720px) {
  .mascot-accent { flex-direction: column; text-align: center; }
  .mascot-accent img { width: 110px; }
}

.link-section-head .count {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border-light);
}

.link-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.link-row:nth-child(2n) {
  border-right: none;
}

.link-row:hover {
  background: var(--color-bg-soft);
  color: var(--color-blue-deep);
}

.link-row-text {
  flex: 1;
  min-width: 0;
}

.link-row-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: -0.005em;
}

.link-row:hover .link-row-text strong {
  color: var(--color-blue-deep);
}

.link-row-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-row-arrow {
  flex-shrink: 0;
  color: var(--color-text-light);
  font-size: 0.85rem;
  transition: transform var(--transition);
}

.link-row:hover .link-row-arrow {
  transform: translateX(3px);
  color: var(--color-blue);
}

@media (max-width: 720px) {
  .link-list { grid-template-columns: 1fr; }
  .link-row { border-right: none; }
}

/* ============================================
   Modern link card grid (useful-links page)
   ============================================ */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  background: var(--color-bg);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.link-card::after {
  content: '↗';
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  transition: var(--transition);
  opacity: 0;
}

.link-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 123, 166, 0.08);
}

.link-card:hover::after {
  opacity: 1;
  transform: translate(2px, -2px);
}

.link-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-blue-soft);
  color: var(--color-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.link-card:hover .link-icon {
  background: var(--color-blue);
  color: white;
}

.link-icon svg {
  width: 20px;
  height: 20px;
}

.link-meta {
  flex: 1;
  min-width: 0;
}

.link-meta strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: -0.005em;
}

.link-meta span {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   Pricing cards (packages page)
   ============================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg, 18px);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 102, 204, 0.08); }
.price-card.featured {
  border: 2px solid var(--color-blue);
  background: linear-gradient(180deg, white 0%, rgba(0, 102, 204, 0.02) 100%);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.08);
}

/* ========== COMPARISON TABLE ========== */
.compare-wrap { border:1px solid var(--color-border-light); border-radius:18px; padding:0.5rem; background:white; }
.compare-table { width:100%; border-collapse:separate; border-spacing:0; font-size:0.95rem; }
.compare-table th, .compare-table td { padding:1rem 1.25rem; text-align:center; border-bottom:1px solid var(--color-border-light); }
.compare-table thead th { background:var(--color-bg-soft); font-weight:600; color:var(--color-charcoal); border-bottom:2px solid var(--color-border); position:sticky; top:0; }
.compare-table th small { font-weight:400; color:var(--color-text-muted); font-size:0.78rem; }
.compare-table tbody tr:hover { background:rgba(0, 102, 204, 0.025); }
.compare-table tbody td:first-child { text-align:left; color:var(--color-charcoal); }
.compare-pill { display:inline-block; padding:0.3rem 0.85rem; border-radius:999px; background:var(--color-bg-soft); font-size:0.85rem; font-weight:600; color:var(--color-charcoal); }
.compare-pill.featured { background:linear-gradient(135deg, var(--color-blue-deep), var(--color-blue)); color:white; }

/* ========== FAQ accordion ========== */
.faq-list { display:flex; flex-direction:column; gap:0.75rem; }
.faq-item { background:white; border:1px solid var(--color-border-light); border-radius:14px; overflow:hidden; transition:box-shadow 0.2s ease; }
.faq-item[open] { box-shadow:0 4px 16px rgba(0,0,0,0.05); border-color:var(--color-blue); }
.faq-item summary { padding:1.1rem 1.4rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; font-weight:500; color:var(--color-charcoal); list-style:none; gap:1rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary span:first-child { flex:1; }
.faq-icon { width:28px; height:28px; border-radius:50%; background:var(--color-bg-soft); display:flex; align-items:center; justify-content:center; font-size:1.2rem; color:var(--color-blue); transition:transform 0.2s ease; font-weight:300; }
.faq-item[open] .faq-icon { transform:rotate(45deg); background:var(--color-blue); color:white; }
.faq-answer { padding:0 1.4rem 1.4rem; color:var(--color-text-muted); line-height:1.7; }
.faq-answer strong { color:var(--color-charcoal); }

/* ========== TESTIMONIALS ========== */
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:1.5rem; margin-top:2.5rem; }
.testimonial-card { background:white; border:1px solid var(--color-border-light); border-radius:18px; padding:1.75rem; transition:transform 0.2s ease, box-shadow 0.2s ease; }
.testimonial-card:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.06); }
.testimonial-quote { font-size:1.02rem; line-height:1.7; color:var(--color-charcoal); margin-bottom:1.25rem; }
.testimonial-quote::before { content:'"'; font-family:'Fraunces', Georgia, serif; font-size:3rem; color:var(--color-blue); line-height:0; margin-right:0.25rem; vertical-align:-0.3em; }
.testimonial-meta { display:flex; align-items:center; gap:0.85rem; padding-top:1rem; border-top:1px solid var(--color-border-light); }
.testimonial-avatar { width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg, var(--color-blue), var(--color-blue-deep)); color:white; display:flex; align-items:center; justify-content:center; font-weight:600; font-size:1.1rem; flex-shrink:0; }
.testimonial-name { font-weight:600; color:var(--color-charcoal); font-size:0.95rem; }
.testimonial-role { font-size:0.85rem; color:var(--color-text-muted); }
.testimonial-stars { color:#fbbf24; font-size:0.9rem; margin-bottom:0.5rem; letter-spacing:0.1em; }

/* ========== JOB CARDS (work-with-us) ========== */
.job-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); gap:1.5rem; margin-top:2.5rem; }
.job-card { background:white; border:1px solid var(--color-border-light); border-radius:18px; padding:2rem; transition:all 0.2s ease; }
.job-card:hover { border-color:var(--color-blue); box-shadow:0 8px 24px rgba(0, 102, 204, 0.08); }
.job-tag { display:inline-block; padding:0.3rem 0.85rem; border-radius:999px; background:rgba(0, 102, 204, 0.08); color:var(--color-blue-deep); font-size:0.78rem; font-weight:600; margin-bottom:0.85rem; }
.job-card h3 { font-size:1.35rem; margin:0.5rem 0; color:var(--color-charcoal); }
.job-meta { display:flex; gap:1.5rem; flex-wrap:wrap; font-size:0.88rem; color:var(--color-text-muted); margin-bottom:1.25rem; }
.job-meta span { display:flex; align-items:center; gap:0.4rem; }
.job-list { margin-top:1rem; padding-left:0; list-style:none; }
.job-list li { padding:0.4rem 0; color:var(--color-text-muted); display:flex; gap:0.6rem; font-size:0.92rem; }
.job-list li::before { content:'→'; color:var(--color-blue); flex-shrink:0; }

/* ========== PROMO TIMELINE / OFFERS ========== */
.offer-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:1.5rem; margin-top:2.5rem; }
.offer-card { background:linear-gradient(135deg, #fff 0%, var(--color-bg-soft) 100%); border:1px solid var(--color-border-light); border-radius:18px; padding:2rem; position:relative; overflow:hidden; transition:transform 0.2s ease; }
.offer-card:hover { transform:translateY(-3px); }
.offer-card.hot { border:2px solid #ff6b35; background:linear-gradient(135deg, #fff8f0 0%, #ffe5d4 100%); }
.offer-card.hot::before { content:'🔥 HOT'; position:absolute; top:1rem; right:1rem; background:#ff6b35; color:white; padding:0.25rem 0.75rem; border-radius:999px; font-size:0.7rem; font-weight:700; letter-spacing:0.05em; }
.offer-icon { font-size:2.5rem; margin-bottom:1rem; display:block; }
.offer-card h3 { font-size:1.4rem; margin:0.25rem 0 0.5rem; color:var(--color-charcoal); }
.offer-price { display:flex; align-items:baseline; gap:0.5rem; margin:1rem 0; }
.offer-price strong { font-size:2.2rem; color:var(--color-blue-deep); font-weight:700; }
.offer-price .strike { text-decoration:line-through; color:var(--color-text-light); font-size:1rem; }
.offer-price .unit { color:var(--color-text-muted); font-size:0.9rem; }
.offer-detail { color:var(--color-text-muted); font-size:0.92rem; line-height:1.6; margin-bottom:1.25rem; }

@media (max-width:768px) {
  .compare-table { font-size:0.85rem; }
  .compare-table th, .compare-table td { padding:0.65rem 0.5rem; }
}


@media (max-width: 720px) {
  .ad-banner { grid-template-columns: 1fr; text-align: left; }
  .ad-banner-illust { display: none; }
}

/* Step cards */
.step-card { border:1px solid var(--color-border-light); border-radius:14px; padding:1.5rem; background:var(--color-bg); }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:0.75rem; }
.faq-item { border:1px solid var(--color-border-light); border-radius:14px; background:var(--color-bg); overflow:hidden; transition:var(--transition); }
.faq-item[open] { border-color:var(--color-blue); box-shadow:0 4px 16px rgba(74,123,166,0.08); }
.faq-item summary { padding:1.25rem 1.5rem; cursor:pointer; font-weight:500; font-size:1rem; color:var(--color-charcoal); list-style:none; position:relative; padding-right:3rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; position:absolute; right:1.5rem; top:50%; transform:translateY(-50%); font-size:1.5rem; font-weight:300; color:var(--color-blue); transition:var(--transition); }
.faq-item[open] summary::after { transform:translateY(-50%) rotate(45deg); }
.faq-item p { padding:0 1.5rem 1.5rem; color:var(--color-text-muted); font-size:0.95rem; line-height:1.7; }

/* ========== AD BANNER (งบเปล่า) ========== */
.ad-banner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #0a4d8c 0%, #0066cc 60%, #4a90e2 100%);
  color: white;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.25);
}
.ad-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ad-banner-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.ad-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: white;
}
.ad-banner h2 .accent { color: #ffd966; font-style: italic; font-family: 'Fraunces', Georgia, serif; }
.ad-banner p { color: rgba(255,255,255,0.92); line-height: 1.6; margin: 0 0 1.25rem; font-size: 1.02rem; }
.ad-banner-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.5rem;
  border-radius: 14px;
  margin: 0.5rem 0 1.5rem;
}
.ad-banner-price strong { font-size: 2.4rem; font-weight: 700; color: white; line-height: 1; }
.ad-banner-price span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.ad-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.ad-banner-illust {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  margin-left: auto;
}
.ad-banner-illust img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  padding: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.ad-banner-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ========== PROMO BANNER (golden) ========== */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe082 100%);
  border: 1px solid #ffcc02;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(255, 204, 2, 0.15);
}
.promo-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.promo-banner h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: #6b4d00;
}
.promo-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: #856100;
  line-height: 1.5;
}
.promo-banner strong { color: #6b4d00; font-weight: 700; }

@media (max-width: 720px) {
  .ad-banner { padding: 2rem 1.5rem; }
  .ad-banner-illust { max-width: 140px; margin: 0 auto; }
  .promo-banner { flex-direction: column; text-align: center; }
}

/* ========== HOTLINE STRIP (sticky above footer) ========== */
.hotline-strip {
  background: linear-gradient(135deg, #0a4d8c 0%, #0066cc 60%, #4a90e2 100%);
  color: white;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.hotline-strip::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hotline-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.hotline-mascot { display: flex; justify-content: center; }
.hotline-mascot img { width: 180px; height: auto; }
.hotline-content { display: flex; flex-direction: column; gap: 0.5rem; }
.hotline-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: fit-content;
}
.hotline-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0;
  color: white;
  line-height: 1.2;
}
.hotline-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffd966;
  letter-spacing: -0.02em;
  margin: 0.25rem 0;
  font-family: 'Manrope', system-ui, sans-serif;
}
.hotline-meta {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.hotline-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.75rem;
}

@media (max-width: 720px) {
  .hotline-inner { grid-template-columns: 1fr; text-align: center; }
  .hotline-mascot img { width: 140px; }
  .hotline-actions { justify-content: center; }
  .hotline-tag { margin: 0 auto; }
}

/* ========== TEAM SECTION ========== */
.team-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, white 0%, var(--color-bg-soft) 100%);
}
.team-hero-img {
  width: 100%;
  max-width: 1080px;
  height: auto;
  border-radius: 24px;
  margin: 2.5rem auto 0;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.12);
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.team-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 18px;
}
.team-stat strong {
  display: block;
  font-size: 2.2rem;
  color: var(--color-blue-deep);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.team-stat span {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ========== PRICE CARD ICON FIX (was rendering huge) ========== */
.price-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.4;
}
.price-features li svg {
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
  color: var(--color-blue);
}
.price-features li.bonus {
  background: rgba(255, 215, 0, 0.08);
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  margin: 0.3rem 0;
}
.price-features li.bonus svg {
  color: #e8a800;
  width: 18px !important;
  height: 18px !important;
}
.price-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.price-name {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--color-charcoal);
}
.price-amount-pre {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0 0.5rem;
}
.price-amount strong {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-blue-deep);
  line-height: 1;
}
.price-amount .unit {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.price-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #ffd966 0%, #ffcc02 100%);
  color: #6b4d00;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 204, 2, 0.3);
}

/* ============================================
   FORCE SVG SIZE FIX (highest priority - END of file)
   ============================================ */
.price-card ul li svg,
.price-card .price-features li svg,
ul.price-features li svg,
.price-features > li > svg,
.price-features > li.bonus > svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

.price-card ul.price-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 1.25rem 0 !important;
}

.price-card ul.price-features li {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  padding: 0.5rem 0 !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}

.price-card ul.price-features li.bonus {
  background: rgba(255, 215, 0, 0.1) !important;
  padding: 0.6rem 0.8rem !important;
  border-radius: 8px !important;
  margin: 0.3rem 0 !important;
}

/* ========== AUDIT NOTICE CALLOUT — BLUE BRAND ========== */
.audit-notice {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #e6f2ff 0%, #cce4ff 100%);
  border: 1px solid #66a3ff;
  border-left: 5px solid #0066cc;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem auto 0;
  max-width: 880px;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.10);
}
.audit-notice-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.audit-notice h4 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #003d7a;
  font-weight: 700;
}
.audit-notice p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #1a3a5c;
}
.audit-notice p strong { color: #003d7a; font-wei
/* ========== EMPHASIS PUSH (eyebrow + h1) ========== */
.eyebrow,
p.eyebrow,
.section-header .eyebrow,
.page-hero .eyebrow {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.85rem !important;
  color: var(--color-blue) !important;
}

.page-hero h1.display-lg,
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin: 0.5rem 0 1rem !important;
}

.section-header h2.display-md {
  font-size: clamp(1.85rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.15 !important;
}

.hero h1.display-xl,
h1.display-xl {
  font-size: clamp(2.6rem, 7vw, 4.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.05 !important;
}

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.25rem) !important;
  font-weight: 400 !important;
}
ont-size: 2rem !important; font-weight: 800 !important; color: var(--color-blue-deep) !important; }

/* Promo banner emphasis */
.promo-banner h3 { font-size: 1.25rem !important; font-weight: 700 !important; }
.hotline-content h3 { font-weight: 700 !important; }
.hotline-number { font-weight: 800 !important; letter-spacing: -0.01em !important; }

/* ============================================
   REG ITEM (registration list) — proper spacing
   ============================================ */
.reg-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.reg-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  transition: all 0.2s ease;
}
.reg-item:hover {
  border-color: var(--color-blue);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.06);
  transform: translateX(2px);
}
.reg-item > div:first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.reg-item strong {
  font-size: 1.05rem;
  color: var(--color-charcoal);
  font-weight: 600;
  line-height: 1.4;
}
.reg-item span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.reg-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  min-width: 110px;
  text-align: right;
}
.reg-price strong {
  font-size: 1.35rem;
  color: var(--color-blue-deep);
  font-weight: 700;
  line-height: 1.2;
}
.reg-price span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ============================================
   MOBILE NAV (hamburger collapse) — BLOCKER FIX
   ============================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex !important; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-menu.is-open { right: 0; }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border-light);
    min-height: 44px;
    font-size: 1.05rem !important;
  }
  .nav-actions .btn-primary { display: none; }
  .nav-actions .lang-toggle { display: none; }
}

/* ============================================
   PRICE AMOUNT CLAMP (BLOCKER FIX)
   ============================================ */
.price-amount strong,
.price-card .price-amount strong {
  font-size: clamp(1.85rem, 5vw, 2.8rem) !important;
  line-height: 1.1 !important;
  word-break: keep-all;
}

/* ============================================
   COMPARE TABLE — readable mobile
   ============================================ */
@media (max-width: 768px) {
  .compare-table { font-size: 0.92rem !important; }
  .compare-table th, .compare-table td { padding: 0.7rem 0.4rem !important; }
}

/* Reg item mobile */
@media (max-width: 600px) {
  .reg-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1rem; }
  .reg-price { width: 100%; align-items: flex-start; text-align: left; }
  .reg-price strong { font-size: 1.5rem; }
}

/* ========== FOOTER — Better contrast (darker text) ========== */
.footer {
  background: #f5f5f0 !important;
  color: #1d1d1f !important;
  padding: 4rem 0 2rem;
}
.footer h4 {
  color: #003d7a !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.02em;
}
.footer p, .footer ul, .footer li, .footer a {
  color: #2c2c2e !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}
.footer a:hover {
  color: #0066cc !important;
  text-decoration: underline;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  padding: 0.3rem 0;
  color: #2c2c2e !important;
}
.footer-bottom {
  color: #4a4a4d !important;
  font-size: 0.88rem !important;
  border-top: 1px solid #d4d4ce;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: #0066cc !important; }
.footer-brand p {
  color: #2c2c2e !important;
  font-size: 0.95rem !important;
}
.footer-social a {
  background: white !important;
  color: #003d7a !important;
  border-color: #d4d4ce !important;
}

/* Top-bar grey label "จ-ศ 8:30-17:30 น." */
.top-bar-left span,
.top-bar-left a {
  color: #1d1d1f !important;
  font-weight: 500 !important;
}

/* ========== DARKER + LARGER TEXT (better readability) ========== */
/* Body paragraph default - darker */
body, p, li, span, a {
  color: #1d1d1f !important;
}

.service-card p,
.why-card p,
.testimonial-quote,
.job-card p,
.offer-detail,
.faq-answer {
  color: #2c2c2e !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.service-card h3,
.why-card h3,
.testimonial-name,
.job-card h3,
.offer-card h3 {
  color: #1d1d1f !important;
  font-weight: 700 !important;
}

.service-link {
  color: #0066cc !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}

/* Coming-soon faded out cards — remove opacity */
a.service-card[style*="opacity"] {
  opacity: 1 !important;
}

/* Text-muted utility - darker */
.text-muted,
[style*="color:var(--color-text-muted)"],
[style*="color:var(--color-text-light)"] {
  color: #4a4a4d !important;
}

/* Hero trust items */
.hero-trust-item span {
  color: #2c2c2e !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
}

/* Cred badges (Big 4, DBD, TFAC) */
.cred-badge {
  color: #2c2c2e !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

/* Areas note */
.areas-note { color: #4a4a4d !important; font-size: 0.95rem !important; }

/* Form labels */
label { color: #1d1d1f !important; font-weight: 500 !important; font-size: 0.95rem !important; }

/* Override default --color-text-muted globally */
:root {
  --color-text-muted: #4a4a4d !important;
  --color-text-light: #6e6e73 !important;
}

/* ========== BUTTON FIX (black → brand blue) ========== */
.btn,
a.btn,
button.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.85rem 1.5rem !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  white-space: nowrap;
}

.btn-primary,
a.btn-primary,
button.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #0a4d8c 100%) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25) !important;
}

.btn-primary:hover,
a.btn-primary:hover {
  background: linear-gradient(135deg, #0a4d8c 0%, #003d7a 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.35) !important;
  color: white !important;
}

.btn-ghost,
a.btn-ghost {
  background: transparent !important;
  color: #0a4d8c !important;
  border: 2px solid #0a4d8c !important;
}

.btn-ghost:hover {
  background: #0a4d8c !important;
  color: white !important;
}

/* Nav header CTA — bigger and more visible */
.nav-actions .btn-primary {
  padding: 0.7rem 1.4rem !important;
  font-size: 0.95rem !important;
}
