/* =========================================
  Shared Tokens: Fonts + Colors
  ========================================= */
:root {
  /* Shared Font Tokens */
  --font-family-base: "Hanken Grotesk", "Noto Sans Thai", sans-serif;
  --font-family-emphasis: var(--font-family-base);

  /* Shared Color Tokens */
  --primary-color: #FF8C01;
  --secondary-color: #D62825;
  --text-color: #3a240f;
  --primary-line-color: rgba(255, 140, 1, 0.22);
  --primary-orange: #ff5e3a;
  --gradient-start: #ff8a4c;
  --gradient-end: #d93d04;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-page: #f8f9fa;
  --line-green: #06c755;
}

/* =========================================
  Shared Base Reset
  ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
}

/* html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
  font-family: "Hanken Grotesk", "Noto Sans Thai", sans-serif;
  color: var(--text-color);
  background: radial-gradient(circle at 50% 24%, #ffd9a8 0%, #fff1dd 38%, #ffffff 78%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 140, 1, 0.18) 0, rgba(255, 140, 1, 0.08) 27%, transparent 55%),
    radial-gradient(circle at center, rgba(255, 140, 1, 0.12) 1px, transparent 1px);
  background-size: auto, 8px 8px;
  mask: radial-gradient(circle at 50% 28%, #000 0%, #000 42%, transparent 78%);
  opacity: 0.45;
  z-index: -1;
}

.page-wrap {
  background:
    linear-gradient(180deg, transparent 0 62%, rgba(255, 250, 242, 0.7) 62%, rgba(255, 255, 255, 0.96) 100%),
    radial-gradient(circle at 50% 15%, rgba(255, 140, 1, 0.18), transparent 48%);
} */

/* =========================================
  Shared Layout Utilities
  ========================================= */
.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

@media (min-width: 900px) {
  .visibility-hidden-md {
    visibility: hidden;
  }
}

.top-nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 1.25rem;
  position: sticky;
  top: 0;
  z-index: 60;
  border-radius: 0 0 18px 18px;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, height 0.35s ease, transform 0.35s ease;
}

.top-nav.is-scrolled {
  height: 76px;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 10px 30px rgba(107, 63, 21, 0.14);
}

.top-nav::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 1, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.top-nav.is-scrolled::after {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  color: #4b2d12;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.brand img {
  display: block;
  height: clamp(34px, 2.9vw, 50px);
  width: auto;
  max-width: min(260px, 60vw);
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  color: #6b3f15;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover {
  color: #ff7a00;
  opacity: 1;
  text-shadow: 0 0 14px rgba(255, 140, 1, 0.2);
}

.menu-btn {
  display: none;
  position: relative;
  border: 0;
  background: transparent;
  color: #6b3f15;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.9;
  transition: transform 0.25s ease, color 0.25s ease;
}

.menu-btn:hover {
  color: #ff7a00;
  transform: scale(1.08);
}

.menu-btn__bar {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.25s ease;
}

.menu-btn__bar:nth-child(2) {
  transform: translateY(-6px);
}

.menu-btn__bar:nth-child(3) {
  transform: translateY(0);
}

.menu-btn__bar:nth-child(4) {
  transform: translateY(6px);
}

.top-nav.menu-open .menu-btn {
  color: #ff7a00;
}

.top-nav.menu-open .menu-btn__bar:nth-child(2) {
  transform: translateY(0) rotate(45deg);
}

.top-nav.menu-open .menu-btn__bar:nth-child(3) {
  opacity: 0;
  transform: scaleX(0.3);
}

.top-nav.menu-open .menu-btn__bar:nth-child(4) {
  transform: translateY(0) rotate(-45deg);
}

.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;
}

.lang-switch {
  position: relative;
}

.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 0.45rem;
  min-width: 135px;
  height: 44px;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b3f15;
  font-size: 1.03rem;
  cursor: pointer;
  /* box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), 0 3px 10px rgba(107, 63, 21, 0.18); */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-dropdown-btn:hover {
  color: #ff7a00;
  transform: translateY(-1px);
  /* box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4), 0 5px 14px rgba(107, 63, 21, 0.22); */
}

.lang-dropdown-btn:focus-visible {
  outline: 3px solid rgba(255, 140, 1, 0.3);
  outline-offset: 2px;
}

.lang-dropdown-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.lang-dropdown-btn__icon svg {
  width: 100%;
  height: 100%;
}

.lang-dropdown-btn__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.lang-switch.is-open .lang-dropdown-btn__chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: 180px;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(40, 24, 8, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 80;
}

.lang-switch.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #4f3215;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-bottom: 5px;
}

.lang-option:hover {
  background: rgba(255, 168, 0, 0.12);
}

.lang-option.is-active {
  background: rgba(255, 168, 0, 0.16);
  color: #2e1b07;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 2.4rem;
  position: relative;
  padding-bottom: 8rem;
  /* พื้นหลังโทนส้มแดง (red-orange / terracotta) */
  /* background:
    radial-gradient(ellipse 95% 72% at 50% 18%, rgba(214, 40, 37, 0.09) 0%, transparent 52%),
    linear-gradient(168deg, #fff7f4 0%, #ffece6 38%, #ffd8cc 100%); */
  /* ::before กว้างเต็ม viewport — กันล้นทำให้เกิด horizontal scroll บนจอเล็ก */
  /* overflow-x: clip; */
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  /* ใช้ 100vw แทน 140vw — vw เกิน 100% ความกว้างหน้าจอทำให้ responsive เพี้ยน/มี scrollbar แนวนอน */
  width: min(100vw, 1400px);
  height: min(70vw, 700px);
  background: radial-gradient(ellipse at 50% 100%, rgba(230, 72, 48, 0.26) 0%, rgba(255, 120, 72, 0.14) 36%, transparent 72%);
  filter: blur(0.4px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 150, 118, 0.38) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 150, 118, 0.38) 0 1px, transparent 1px),
    radial-gradient(ellipse at 14% 46%, rgba(230, 72, 48, 0.18) 0 24%, transparent 58%),
    radial-gradient(ellipse at 86% 46%, rgba(214, 40, 37, 0.14) 0 24%, transparent 58%);
  background-size:
    18px 18px,
    18px 18px,
    auto,
    auto;
  background-position:
    center,
    center,
    center,
    center;
  mask: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 0) 78%);
  -webkit-mask: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 0) 78%);
  mix-blend-mode: screen;
  opacity: 0.5;
  z-index: 0;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  --orb-size: 220px;
  --orb-duration: 10s;
  --orb-delay: 0s;
  --orb-x: 0px;
  --orb-y: 0px;
  position: absolute;
  width: var(--orb-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 236, 230, 0.92) 0%, rgba(255, 160, 130, 0.34) 34%, rgba(230, 72, 48, 0.12) 56%, transparent 76%);
  filter: blur(15px);
  opacity: 0;
  animation: heroOrbFloat var(--orb-duration) ease-in-out infinite;
  animation-delay: var(--orb-delay);
}

.orb-1 {
  --orb-size: 280px;
  --orb-duration: 12s;
  --orb-x: 26px;
  --orb-y: -18px;
  top: 4%;
  left: -220px;
}

.orb-2 {
  --orb-size: 180px;
  --orb-duration: 9.2s;
  --orb-delay: 1.4s;
  --orb-x: -18px;
  --orb-y: 16px;
  bottom: 10%;
  left: -172px;
}

.orb-3 {
  --orb-size: 260px;
  --orb-duration: 11.4s;
  --orb-delay: 2.2s;
  --orb-x: -24px;
  --orb-y: 20px;
  top: 12%;
  right: -210px;
}

.orb-4 {
  --orb-size: 190px;
  --orb-duration: 9.8s;
  --orb-delay: 3.4s;
  --orb-x: 18px;
  --orb-y: -14px;
  bottom: 16%;
  right: -176px;
}

.hero-content,
.chat-float {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  margin: 0 auto 1.3rem auto;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 1, 0.28);
  /* background: rgba(255, 240, 218, 0.9); */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.eyebrow--muted {
  border-color: rgba(255, 140, 1, 0.18);
  background: rgba(255, 240, 218, 0.55);
  color: var(--primary-color);
}

h1 {
  font-weight: 500;
  font-size: clamp(3.1rem, 5vw, 4.5rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 980px;
  text-shadow: 0 8px 24px rgba(255, 140, 1, 0.2);
}

h1 em {
  font-family: var(--font-family-emphasis);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary-color);
  margin-inline: 0.2rem;
}

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

.hero-content {
  width: 100%;
  max-width: 640px;
}

.hero-description {
  margin-top: 1.15rem;
  max-width: 62ch;
  color: #7a4a19;
  line-height: 1.65;
  font-size: clamp(1.25rem, 1.15vw, 1.12rem);
}

.hero-benefits-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 230, 0.9));
  border: 1px solid rgba(255, 140, 1, 0.2);
  box-shadow: 0 18px 36px rgba(122, 74, 25, 0.1);
  backdrop-filter: blur(8px);
  text-align: left;
}

.hero-benefits-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #61340f;
  font-weight: 500;
  line-height: 1.55;
}

.hero-benefits-list li + li {
  margin-top: 0.65rem;
}

.hero-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.62em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 140, 1, 0.12);
}

.hero-benefits-highlight {
  margin-top: 0.95rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  color: #6d3508;
  font-weight: 600;
  background: rgba(255, 239, 217, 0.85);
}

/* =========================================
  Shared Button Utilities
  ========================================= */
.btn {
  appearance: none;
  border: 1px solid rgba(255, 140, 1, 0.3);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  line-height: 1.2;
  color: #7a4612;
  text-decoration: none;
  padding: 0.72rem 1.12rem;
  font-weight: 600;
  background: rgba(255, 247, 236, 0.95);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 102, 0.58);
  box-shadow: 0 8px 20px rgba(255, 140, 1, 0.24);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 140, 1, 0.8);
}

.btn--soft {
  background: rgba(255, 247, 236, 0.95);
  color: #7a4612;
}

.btn--outline {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(255, 140, 1, 0.8);
}

.btn--outline:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.btn--pill {
  border-radius: 999px;
}

.btn--sm {
  padding: 0.72rem 1rem;
  font-size: 0.84rem;
}

.btn--md {
  padding: 0.72rem 1.12rem;
  font-size: 0.92rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--hero-pulse {
  padding: 1rem 2rem;
  font-size: 1.25rem;
  letter-spacing: 0.09em;
  box-shadow:
    0 12px 26px rgba(255, 140, 1, 0.4),
    0 0 0 0 rgba(255, 140, 1, 0.36);
  animation: scrollToPulse 1.8s ease-in-out infinite;
}

.btn--hero-pulse::after {
  content: "";
  display: inline-block;
  width: 2.1rem;
  height: 2.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 611.92 699.33'%3E%3Cpath fill='%23ffffff' d='M529.96,416.75v-21.3c0-62.54-38.66-98.8-91.14-99.94-17.02-11.93-38.76-17.92-59.85-16.25,23.19-25.99,37.31-60.24,37.31-97.73,0-81.03-65.92-146.95-146.95-146.95S122.38,100.51,122.38,181.54c0,50.79,25.9,95.63,65.18,122.03v18.56c-7.38-1.45-14.88-2.18-22.4-2.18-47.91,0-83.2,35.07-83.2,92,0,45.31,48.54,57,78.78,75.71,12.41,7.73,23.32,16.99,33.25,25.85l.15.13.15.13c17.48,15.32,23.67,23.22,23.67,30.18v2.68c-4.95,5.75-8,13.54-8,22.12v64c0,17.67,12.89,32,28.8,32h230.4c15.91,0,28.8-14.33,28.8-32v-64c0-8.58-3.05-16.37-8-22.12v-2.68c0-28.69,40-67.14,40-127.2ZM269.33,84.58h0c53.46,0,96.95,43.49,96.95,96.95,0,17.35-4.59,33.64-12.61,47.74-3.46-42.4-39.54-76.53-82.9-76.53s-81.89,36.82-83.14,80.91c-9.64-15.06-15.25-32.95-15.25-52.12,0-53.46,43.49-96.95,96.95-96.95ZM433.96,624.75c-13.26,0-24-10.74-24-24s10.74-24,24-24,24,10.74,24,24-10.74,24-24,24ZM481.96,416.76c0,45.49-35.91,77.21-39.68,120h-176.75c-2.96-25.24-21.22-42.97-39.6-59.08-12.65-11.27-25.3-21.73-39.88-30.8-23.39-14.48-56.1-26.13-56.1-34.93,0-23.38,8.8-44,35.2-44,35.2,0,53.07,26.4,70.4,26.4v-158.4c0-18.43,16.5-35.2,35.2-35.2s35.2,16.23,35.2,35.2h.01v91.03c2.68-2.34,5.81-4.31,9.24-5.84.4-.18.81-.35,1.21-.51.14-.06.27-.11.41-.17.39-.16.79-.3,1.19-.45.14-.05.29-.1.44-.16.41-.14.83-.28,1.25-.42.11-.04.23-.07.34-.1.46-.14.92-.28,1.38-.4,0,0,0,0,0,0,14.59-3.95,32.6-.78,45.58,13,19.65-11.23,45.62-1.69,53.62,12.93,39.13-6.52,61.33,10.08,61.33,50.6v21.3Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform-origin: 50% 65%;
  animation: heroClickPulse 0.95s ease-in-out infinite;
}

.btn--hero-pulse:hover {
  box-shadow:
    0 15px 30px rgba(255, 140, 1, 0.46),
    0 0 0 10px rgba(255, 140, 1, 0.06);
}

/* =========================================
  Shared Link Button Utilities
  ========================================= */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  /* font-weight: 600; */
  text-decoration: none;
  /* text-decoration-line: underline;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 1px; */
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.link-btn--accent {
  color: #ea7a1f;
}

.link-btn--accent:hover {
  color: #c45f09;
}

.scroll-to {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.66rem 1.06rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 182, 109, 0.22), rgba(255, 140, 1, 0.12));
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  color: #7d430d;
  text-decoration: none;
  letter-spacing: 0.06em;
  font-weight: 600;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 140, 1, 0.22),
    0 12px 28px rgba(255, 140, 1, 0.24),
    0 0 0 0 rgba(255, 140, 1, 0.38);
  opacity: 1;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s ease, border-color 0.2s ease, background 0.25s ease;
  animation: scrollToPulse 1.8s ease-in-out infinite;
}

.scroll-to:hover {
  color: #6f3f0f;
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 186, 120, 0.28), rgba(255, 140, 1, 0.16));
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 140, 1, 0.26),
    0 16px 30px rgba(255, 140, 1, 0.28),
    0 0 0 10px rgba(255, 140, 1, 0.07);
}

.scroll-to:active {
  transform: translateX(-50%) translateY(0);
}

.scroll-to::after {
  content: "↓";
  display: inline-block;
  animation: scrollArrowBounce 1s ease-in-out infinite;
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(214, 40, 37, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(214, 40, 37, 0.42);
}

.back-to-top:active {
  transform: translateY(0);
}

/* .scroll-to::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 10%;
  width: 80%;
  height: 48%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.06));
  pointer-events: none;
} */

@keyframes scrollToPulse {
  0%, 100% {
    box-shadow:
      0 10px 24px rgba(255, 140, 1, 0.26),
      0 0 0 0 rgba(255, 140, 1, 0.38);
  }
  55% {
    box-shadow:
      0 12px 28px rgba(255, 140, 1, 0.3),
      0 0 0 14px rgba(255, 140, 1, 0.05);
  }
}

@keyframes scrollArrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes heroClickPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.96;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

.chat-float {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 400px);
  justify-self: end;
}

.chat-device {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(124, 45, 18, 0.18);
  background: linear-gradient(145deg, #ffe4d6, #ffc9b8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 20px 40px rgba(154, 52, 18, 0.22);
  padding: 0.48rem;
}

.chat-device::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 34%;
  height: 5px;
  border-radius: 999px;
  background: rgba(124, 45, 18, 0.38);
  transform: translateX(-50%);
}

.chat-device__header {
  height: 36px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(140deg, rgba(255, 245, 240, 0.96), rgba(255, 228, 214, 0.95));
  border: 1px solid rgba(234, 88, 12, 0.28);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.72rem;
}

.chat-device__camera {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8d6e;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.chat-device__title {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9a3412;
  text-transform: uppercase;
}

.chat-device__status {
  font-size: 0.7rem;
  font-weight: 700;
  color: #c2410c;
}

.chat-device__screen {
  margin-top: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(234, 88, 12, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(248, 113, 113, 0.14), transparent 42%),
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.45), transparent 40%),
    linear-gradient(165deg, rgba(255, 251, 247, 0.92), rgba(255, 235, 224, 0.9));
  padding: 0.72rem;
  display: grid;
  gap: 0.9rem;
}

.line-integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: start;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(6, 199, 85, 0.35);
  background: linear-gradient(135deg, rgba(229, 255, 241, 0.95), rgba(236, 253, 245, 0.96));
  color: #056449;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.12);
}

.line-integration-badge__logo {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  color: #06c755;
}

.line-integration-badge__logo svg {
  display: block;
}

.ai-hud {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.38);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 180, 160, 0.38), transparent 44%),
    linear-gradient(140deg, rgba(255, 247, 242, 0.96), rgba(255, 220, 206, 0.93));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 16px 32px rgba(220, 38, 38, 0.12);
  padding: 0.95rem 1rem 0.9rem;
  overflow: hidden;
  isolation: isolate;
}

.ai-hud::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 100%);
  transform: translateX(-120%);
  animation: hudSweep 4.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.ai-hud__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9a3412;
  text-transform: uppercase;
}

.ai-hud__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ea580c;
  box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.55);
  animation: onlinePulse 1.8s ease-out infinite;
}

.ai-hud__core {
  margin-top: 0.7rem;
  min-height: 54px;
  display: grid;
  place-items: center;
  position: relative;
}

.ai-core-ring {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(234, 88, 12, 0.4);
  animation: coreSpin 6.2s linear infinite;
}

.ai-core-ring.ring-2 {
  width: 40px;
  height: 40px;
  border-color: rgba(220, 38, 38, 0.35);
  animation-duration: 4.3s;
  animation-direction: reverse;
}

.ai-core-ring.ring-3 {
  width: 66px;
  height: 66px;
  border-color: rgba(249, 115, 22, 0.22);
  animation-duration: 8.5s;
}

.ai-core-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fb923c, #dc2626);
  box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.14), 0 0 22px rgba(220, 38, 38, 0.38);
  animation: coreGlow 2.1s ease-in-out infinite;
}

.typing-indicator {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #9a3412;
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
}

.typing-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.78);
  animation: typingBounce 1.1s ease-in-out infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-bubble {
  border-radius: 16px;
  padding: 0.9rem 1rem;
  line-height: 1.45;
  border: 1px solid rgba(234, 88, 12, 0.28);
  backdrop-filter: blur(7px);
  box-shadow: 0 14px 28px rgba(194, 65, 12, 0.14);
  animation: bubblePop 6.2s ease-in-out infinite;
  opacity: 0;
}

.bubble-left {
  background: rgba(255, 247, 242, 0.96);
  color: #7c2d12;
  justify-self: start;
  animation-delay: 0s;
}

.bubble-right {
  background: linear-gradient(130deg, rgba(234, 88, 12, 0.94), rgba(220, 38, 38, 0.88));
  color: #ffffff;
  justify-self: end;
  animation-delay: 1.6s;
}

.pos-1 { margin-left: 0.4rem; animation-delay: 0s; }
.pos-2 { margin-right: 1.1rem; animation-delay: 1.1s; }
.pos-3 { margin-left: 1.2rem; animation-delay: 2s; }
.pos-4 { margin-right: 0.2rem; animation-delay: 3.1s; }
.pos-5 { margin-left: 0.8rem; animation-delay: 4s; max-width: 92%; }

@keyframes bubblePop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.95);
  }
  14% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  64% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  88% {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
}

@keyframes hudSweep {
  0%, 35% {
    transform: translateX(-120%);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  70%, 100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@keyframes onlinePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.55);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(234, 88, 12, 0);
  }
}

@keyframes coreSpin {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes coreGlow {
  0%, 100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.12), 0 0 18px rgba(220, 38, 38, 0.32);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 11px rgba(249, 115, 22, 0.18), 0 0 28px rgba(234, 88, 12, 0.48);
  }
}

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (min-width: 761px) {
  .chat-device {
    border-radius: 16px;
    padding: 0.42rem;
  }

  .chat-device::before {
    top: 10px;
    width: 56px;
    height: 4px;
  }

  .chat-device__header {
    height: 34px;
    border-radius: 10px 10px 8px 8px;
  }

  .chat-device__screen {
    border-radius: 10px;
  }
}

@keyframes heroOrbFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.88);
  }
  20% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.85;
    transform: translate3d(var(--orb-x), var(--orb-y), 0) scale(1);
  }
  80% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--orb-x) * 0.45), calc(var(--orb-y) * 0.45 - 12px), 0) scale(0.92);
  }
}

.section-two {
  position: relative;
  text-align: center;
  padding: 5.3rem 1rem 7rem;
  border-top: 1px solid rgba(234, 88, 12, 0.22);
  background:
    radial-gradient(ellipse at top, rgba(248, 113, 113, 0.12), transparent 52%),
    radial-gradient(ellipse at 50% 0, rgba(249, 115, 22, 0.18), transparent 58%),
    linear-gradient(180deg, #fff1eb 0%, #ffffff 68%);
}

/* .section-two p {
  font-size: clamp(1.6rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto;
} */

.results-section {
  padding-top: 5rem;
}

.results-section .results-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c2410c;
  margin-bottom: 0.9rem;
}

.results-section h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 auto;
  color: #9a3412;
}

.results-lead {
  max-width: 760px;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.8;
  color: rgba(124, 45, 18, 0.78);
}

.results-list {
  margin: 2.25rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.results-list li {
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 243, 237, 0.94) 100%);
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 20px;
  padding: 1.2rem 1.15rem 1.15rem 3.3rem;
  position: relative;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.5;
  /* min-height: 170px; */
  box-shadow:
    0 18px 40px rgba(194, 65, 12, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.results-list li strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #7c2d12;
}

.results-list li span {
  display: block;
  color: rgba(124, 45, 18, 0.76);
}

.results-list li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 12px;
  background: radial-gradient(circle at 35% 35%, #fff5f0 0%, #fb923c 42%, #ea580c 72%, #dc2626 100%);
  box-shadow:
    0 0 18px rgba(234, 88, 12, 0.22),
    0 10px 18px rgba(220, 38, 38, 0.14);
}

.results-list li::after {
  content: "";
  position: absolute;
  left: 1.62rem;
  top: 1.68rem;
  width: 0.55rem;
  height: 0.3rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.glow-icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  margin: 2.15rem auto 0;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0%, #ffd4c4 32%, #fb923c 68%, #dc2626 100%);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.26),
    0 0 45px rgba(234, 88, 12, 0.26),
    0 14px 34px rgba(220, 38, 38, 0.16);
  position: relative;
}

.section-two-line {
  width: 1px;
  height: 110px;
  margin: 0.8rem auto 0;
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.9), rgba(220, 38, 38, 0.12));
}

@media (max-width: 1550px) {
  .hero-orbs {
    display: none;
  }
}

@media (max-width: 1440px) {
  /* .hero-orbs {
    display: none;
  } */

  .top-nav {
    padding-inline: clamp(0.9rem, 2.3vw, 1.25rem);
    gap: clamp(0.5rem, 1.4vw, 1rem);
  }

  .brand {
    max-width: min(260px, 38vw);
    margin-right: auto;
    flex-shrink: 0;
  }

  .brand img {
    width: auto;
    height: clamp(32px, 2.8vw, 46px);
    /* max-width: min(260px, 38vw); */
    min-height: 40px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);  
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(107, 63, 21, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 70;
  }

  .top-nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 1, 0.25);
    background: rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
  }

  .lang-dropdown-btn__label {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 249, 238, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(107, 63, 21, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .top-nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 1, 0.25);
    background: rgba(255, 255, 255, 0.72);
  }

  .lang-dropdown-btn {
    min-width: 108px;
    height: 38px;
    font-size: 0.92rem;
    padding-inline: 0.8rem;
  }

  .lang-dropdown-menu {
    min-width: 160px;
    right: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 5rem;
    gap: 2rem;
  }

  .hero::after {
    opacity: 0.22;
    background-size:
      14px 14px,
      14px 14px,
      14px 14px,
      14px 14px,
      auto,
      auto;
  }

  .hero-orb {
    filter: blur(16px);
  }

  .orb-1 {
    top: 4%;
    left: -160px;
  }

  .orb-2 {
    bottom: 12%;
    left: -110px;
  }

  .orb-3 {
    top: 14%;
    right: -150px;
  }

  .orb-4 {
    bottom: 20%;
    right: -105px;
  }

  h1 {
    margin-inline: auto;
  }

  .hero-content,
  .hero-description {
    margin-inline: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-actions {
    order: 4;
    justify-content: center;
  }

  .hero-benefits-list {
    order: 5;
    margin-top: 2.5rem;
  }

  .chat-float {
    width: min(100%, 330px);
    justify-self: center;
  }

  .chat-device {
    border-radius: 30px;
    padding: 0.56rem;
  }

  .chat-device::before {
    top: 10px;
    width: 38%;
    height: 6px;
  }

  .chat-device__header {
    border-radius: 18px 18px 12px 12px;
  }

  .scroll-to {
    bottom: 1rem;
    padding: 0.58rem 0.9rem;
    font-size: 0.92rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }

  .pos-1,
  .pos-2,
  .pos-3,
  .pos-4,
  .pos-5 {
    margin-left: 0;
    margin-right: 0;
  }

  .results-list li {
    padding: 1rem 1rem 1rem 3rem;
    min-height: auto;
  }

  .results-list {
    grid-template-columns: 1fr;
  }

}

/* =========================================
  2. Layout & Container (แบบธรรมดา)
  ========================================= */
.pain-point-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 0;
  background: linear-gradient(
    155deg,
    var(--primary-color) 0%,
    #e0451c 22%,
    var(--secondary-color) 100%
  );
}

/* Grid: dashed strokes + round caps → pill-shaped segments (โค้งมน); 48px tile repeats cleanly */
.pain-point-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* opacity: 0.48; */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.26' stroke-width='1.12' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='3 9'%3E%3Cpath d='M0 12h48'/%3E%3Cpath d='M0 24h48'/%3E%3Cpath d='M0 36h48'/%3E%3Cpath d='M12 0v48'/%3E%3Cpath d='M24 0v48'/%3E%3Cpath d='M36 0v48'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 48px 48px;
  background-repeat: repeat;
  mix-blend-mode: soft-light;
}

.pain-point-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 65% at 12% 18%, rgba(255, 140, 1, 0.42) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 88% 72%, rgba(255, 171, 64, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(214, 40, 37, 0.35) 0%, transparent 55%);
  mix-blend-mode: soft-light;
}

.pain-point-section .content-wrapper {
  position: relative;
  z-index: 1;
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.text-column, .visual-column {
  width: 100%;
}

/* =========================================
  3. Typography & Text Content
  ========================================= */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.92;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-subtitle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff3e0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.section-title strong {
  font-weight: 600;
}

.desktop-only { display: none; }

.text-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  font-weight: 300;
}

/* ทำให้ Text Item สามารถคลิกได้ */
.text-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  /* opacity: 0.3; */
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  padding-left: 0.75rem;
  cursor: pointer;
}

.item-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: 0.1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: inherit;
}

.item-icon svg {
  display: block;
}

.item-body {
  flex: 1;
  min-width: 0;
}

.text-item:hover {
  opacity: 0.6;
}

.text-item.active {
  opacity: 1;
  transform: translateX(0);
  border-left-color: #ffd9a3;
  cursor: default;
}

.text-item.active .item-icon {
  background: linear-gradient(145deg, rgba(255, 140, 1, 0.35), rgba(255, 255, 255, 0.12));
  color: #fff;
  border-color: rgba(255, 171, 64, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.item-title {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.item-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  display: block;
}

.pain-point-intro {
  max-width: 34rem;
  margin: 0;
  font-size: 2rem;
  line-height: 1.75;
  color: rgba(255, 247, 237, 0.92);
}

.pain-point-slider {
  isolation: isolate;
}

.pain-point-card-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1rem;
  border-radius: 0.95rem;
  background: linear-gradient(140deg, rgba(20, 24, 39, 0.72), rgba(10, 16, 35, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.pain-point-card-caption .item-icon {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #ffe3bf;
  border-color: rgba(255, 255, 255, 0.22);
}

.pain-point-card-caption .item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.pain-point-card-caption .item-desc {
  font-size: 0.92rem;
  color: rgba(255, 241, 225, 0.92);
  opacity: 1;
}

.pain-point-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pain-point-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}

.pain-point-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.pain-point-dot.is-active {
  width: 1.65rem;
  background: #fff;
}

.quote-section {
  margin-top: -2rem;
}

.quote-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  isolation: isolate;
  border: 1px solid rgba(255, 205, 148, 0.42);
  box-shadow: 0 24px 52px rgba(44, 21, 5, 0.28);
  /* min-height: clamp(260px, 42vh, 460px); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-bg-layer,
.quote-overlay {
  position: absolute;
  inset: 0;
}

.quote-bg-layer {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(255, 213, 151, 0.36), transparent 48%),
    url("../img/landing-page/products/product-01.jpg") center/cover no-repeat;
  transform: scale(1.04);
  filter: saturate(1.2) contrast(1.05);
}

.quote-overlay {
  background:
    linear-gradient(110deg, rgba(18, 9, 2, 0.9) 0%, rgba(77, 33, 3, 0.8) 38%, rgba(212, 82, 0, 0.62) 100%),
    linear-gradient(0deg, rgba(18, 9, 2, 0.3), rgba(18, 9, 2, 0.3));
}

.quote-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92%);
  padding: 2.1rem 1.4rem 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.quote-icon {
  display: block;
  margin-bottom: 0.55rem;
  color: #ffd7a4;
  opacity: 0.95;
  pointer-events: none;
}

.quote-text {
  max-width: 46rem;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
}

.quote-highlight {
  font-weight: 700;
  color: #fff3a3;
}

/* =========================================
  4. Visual Cards (ด้านขวา)
  ========================================= */
.visual-column {
  position: relative;
  height: 360px;
  z-index: 10;
}

.card-list {
  position: relative;
  width: 100%;
  height: 100%;
}

.visual-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.visual-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 10;
}

.card-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0; 
  background: linear-gradient(
    to right,
    rgba(10, 16, 35, 0.45) 0%,
    rgba(10, 16, 35, 0.2) 28%,
    rgba(10, 16, 35, 0.05) 52%,
    rgba(10, 16, 35, 0) 70%
  );
}

.card-content {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.card-desc {
  color: #6b7280;
  font-size: 1rem;
}

/* =========================================
  5. Responsive Design
  ========================================= */
@media (max-width: 1023px) {
  .results-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-column {
      margin-top: 2rem;
  }

  .pain-point-card-caption {
      left: 0.8rem;
      right: 0.8rem;
      bottom: 0.8rem;
      padding: 0.9rem;
  }

  .pain-point-card-caption .item-title {
      font-size: 1rem;
  }

  .pain-point-card-caption .item-desc {
      font-size: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .pain-point-section {
      padding: 6rem 0;
  }
  .content-wrapper {
      flex-direction: row;
      gap: 6rem;
      padding: 0 3rem;
      align-items: center; /* จัดให้อยู่กึ่งกลางแนวตั้ง */
  }
  .text-column { width: 52%; }
  .visual-column { width: 48%; height: 380px; }
  /* .section-title { font-size: 3rem; margin-bottom: 3rem; } */
  .desktop-only { display: block; }
  .text-list { gap: 2rem; font-size: 1.25rem; }
  .item-desc { font-size: 1rem; }
  .quote-section {
      margin-top: -3rem;
      background-color: var(--bg-page);
  }
  .quote-box {
      /* min-height: clamp(340px, 34vh, 560px); */
      min-height: 150px;
  }
  .quote-content {
      width: min(960px, 86%);
      padding: 2.4rem 2.2rem 2.5rem;
  }
  .quote-text {
      max-width: 50rem;
      font-size: 1.9rem;
      line-height: 1.7;
  }
  .card-title { font-size: 1.5rem; }
}

/* =========================================
  Section: Development Fee
  ========================================= */
.pricing-section-container {
  background-color: var(--bg-page);
}
.pricing-section {
  display: flex;
  padding: 56px 20px;
  justify-content: center;
}

.pricing-container {
  display: grid;
  grid-template-columns: 1.75fr 1fr; /* Horizontal Layout: Main 60%, Addon 40% */
  gap: 24px;
  width: 100%;
  max-width: 1660px;
  align-items: stretch;
}

.pricing-section-heading {
  grid-column: 1 / -1;
  text-align: left;
  max-width: 56rem;
  margin: 0 0 1.1rem;
}

.pricing-section-heading .eyebrow {
  margin-bottom: 1.15rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ff5e3a;
}

.pricing-section-heading .eyebrow::before,
.pricing-section-heading .eyebrow::after {
  content: "•";
  display: inline-block;
  margin-inline: 0.35rem;
}

.pricing-section-title {
  font-family: var(--font-family-emphasis);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.pricing-section-title em {
  font-style: italic;
  font-weight: 500;
  color: #ff5e3a;
  letter-spacing: -0.01em;
}

.pricing-section-lead {
  max-width: 60ch;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #6b7280;
  font-weight: 400;
}

.compare-pricing-card {
  width: 100%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(217, 61, 4, 0.15);
  overflow: hidden;
  margin-bottom: 28px;
  grid-column: 1 / -1;
}

.compare-pricing-top {
  background: #ffffff;
  border-radius: 26px;
  margin: 3px 3px 0 3px;
  padding: 32px 26px 24px;
  position: relative;
  z-index: 2;
}

.compare-pricing-head {
  margin-bottom: 16px;
}

.compare-pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff5e3a;
  margin-bottom: 8px;
}

.compare-pricing-pill-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.compare-pricing-pill {
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid #f1f5f9;
}

.compare-pricing-pill-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 700;
}

.compare-pricing-pill strong {
  font-size: 1.05rem;
  color: #111827;
}

.compare-pricing-pill--starter {
  background: #eff6ff;
}

.compare-pricing-pill--custom {
  background: #fff7ed;
}

.compare-pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 900px) {
  .compare-pricing-cards {
    gap: 0;
  }
}

.compare-plan-card {
  background: #ffffff;
  /* border: 2px solid #d1d5db; */
  border-radius: 16px;
  padding: 18px 16px;
  /* box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08); */
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

/* @media (max-width: 900px) {
  .compare-plan-card {
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  } 
} */

.compare-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  flex-direction: column;
}

.compare-plan-title {
  font-size: 2rem;
  line-height: 1.2;
  color: #111827;
  font-weight: 700;
}

.compare-plan-recommended-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(234, 88, 12, 0.25);
  margin-bottom: 0.55rem;
  transform-origin: center;
  animation: comparePlanBadgePulse 2.2s ease-in-out infinite;
  position: absolute;
  top: -15px;
}

@keyframes comparePlanBadgePulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.25);
  }
  40% {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 24px rgba(234, 88, 12, 0.35);
  }
  70% {
    transform: translateY(0) scale(1.01);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .compare-plan-recommended-badge {
    animation: none;
  }
}

.compare-plan-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: #111827;
  white-space: nowrap;
}

.compare-plan-old-price {
  /* font-size: 0.78rem; */
  color: #9ca3af;
  /* text-decoration: line-through; */
  font-weight: 500;
}

.compare-plan-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.compare-plan-price-main strong {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #dc2626;
}

.compare-plan-price-main span {
  font-size: 1.05rem;
  color: #dc2626;
  font-weight: 700;
  text-transform: uppercase;
}

.compare-plan-caption {
  /* font-size: 0.86rem; */
  color: red;
  line-height: 1.45;
  margin-bottom: 10px;
}

.compare-plan-features-group h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.01em;
  margin: 10px 0;
}

.compare-plan-features-group h6 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.01em;
}

/* .compare-plan-features-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.01em;
  margin: 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
} */

.compare-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.compare-plan-features li {
  position: relative;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.45;
  padding-left: 30px;
}

.compare-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e14912;
  border-radius: 999px;
  box-sizing: border-box;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.compare-plan-features li.compare-plan-features-parent {
  padding-left: 0;
}

.compare-plan-features li.compare-plan-features-parent::before {
  content: none;
}

.compare-plan-features.compare-plan-features-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .compare-plan-card--starter {
    border-color: #93c5fd;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08), 0 0 0 3px rgba(147, 197, 253, 0.22);
  }
}

/* .compare-plan-card--custom {
  border-color: #fdba74;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08), 0 0 0 3px rgba(253, 186, 116, 0.24);
} */

.compare-plan-card--custom {
  border-color: #fdba74;
  box-shadow: 0 12px 28px rgb(225 106 56 / 40%), 0 0 0 3px rgb(253 186 116);
  background-color: #fff4e9;
}

.compare-plan-card--starter .compare-plan-title {
  color: #2563eb;
  margin-top: 1rem;
}

.compare-plan-card--custom .compare-plan-title {
  color: #ea580c;
  margin-top: 1rem;
}

.compare-plan-card--starter .compare-plan-features li::before {
  color: #fff;
  background-color: #2563eb;
}

.compare-plan-card--custom .compare-plan-features li::before {
  color: #fff;
  background-color: #e14912;
}

.compare-plan-card--starter .compare-plan-price-main strong,
.compare-plan-card--starter .compare-plan-price-main span {
  color: #2563eb;
}

.compare-plan-card--custom .compare-plan-price-main strong,
.compare-plan-card--custom .compare-plan-price-main span {
  color: #ea580c;
}

.compare-pricing-title {
  font-size: clamp(1.32rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 7px;
}

.compare-pricing-subtitle {
  /* font-size: 0.95rem; */
  color: #6b7280;
  line-height: 1.5;
}

.compare-pricing-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
}

.compare-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.compare-pricing-table thead th {
  background: #fff7ed;
  color: #9a3412;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 16px;
}

.compare-pricing-table tbody th {
  width: 26%;
  background: #fffbf7;
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  vertical-align: top;
  padding: 13px 16px;
  border-top: 1px solid #f3f4f6;
}

.compare-pricing-table td {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.45;
  vertical-align: top;
  padding: 13px 16px;
  border-top: 1px solid #f3f4f6;
}

.compare-pricing-table td strong {
  color: #111827;
}

.compare-pricing-note {
  color: #9ca3af;
  font-size: 0.8rem;
}

.compare-pricing-bottom {
  padding: 16px 20px 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.compare-pricing-bottom-text {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .compare-pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================
  MAIN CARD (AI Chatbot Starter Solution)
  ========================================= */
.pricing-card {
  width: 100%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 28px;
  position: relative;
  box-shadow: 0 24px 48px rgba(217, 61, 4, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top White Section */
.card-top {
  background: #ffffff;
  border-radius: 26px;
  margin: 3px 3px 0 3px;
  padding: 34px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  height: 100%;
}

.pricing-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-label {
  color: var(--primary-orange);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-label .pricing-label-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-orange);
  border-radius: 50%;
}

.pricing-badge {
  background: #fcdcdc;
  color: #ad1a22;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-title-wrap {
  margin-bottom: 22px;
}

.pricing-title-wrap h3 {
  font-family: var(--font-family-emphasis);
  font-size: 40px;
  line-height: 1.1;
  color: var(--text-main);
  font-weight: 600;
}

.pricing-title-wrap .pricing-title-highlight {
  font-style: italic;
  color: var(--primary-orange);
  font-weight: 500;
}

.pricing-price-action-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-price-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: -6px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--secondary-color);
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  /* font-family: 'Outfit', sans-serif; */
}

.price-amount {
  font-size: 54px;
  font-weight: 800;
  /* font-family: 'Outfit', sans-serif; */
  letter-spacing: -1.5px;
  line-height: 1;
}

/* Legacy aliases for backward compatibility */
.btn-main {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  border-color: transparent;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Floating Info Box */
.floating-box {
  background: #fff6f2;
  border-radius: 20px;
  padding: 16px;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(255, 94, 58, 0.08);
  border: 1px solid rgba(255, 94, 58, 0.1);
}

.floating-box--image {
  max-width: none;
  flex: 1 1 320px;
  align-self: stretch;
  min-height: 190px;
  padding: 0;
  margin: 2rem 0 0 0;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.floating-box--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 38px;
  height: 38px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 16px rgba(255, 94, 58, 0.4);
  flex-shrink: 0;
}

.floating-text {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.3;
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-size: 0.84rem;
}

/* Bottom Orange Section */
.card-bottom {
  padding: 20px;
  position: relative;
  z-index: 1;
  color: white;
  margin-top: auto;
}

/* Decorative Blurs for Glass Effect */
.glass-highlight-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(80px);
  top: -100px;
  right: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.glass-highlight-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
  bottom: -100px;
  left: 10%;
  border-radius: 50%;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.25;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.feature-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #ffffff;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.9);
}

/* =========================================
  ADD-ON CARD (LINE OA Integration)
  ========================================= */
.addon-card {
  width: 100%;
  background: white;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  padding: 32px 28px;
  display: flex;
  flex-direction: column; /* Vertical layout to fit the side column */
  gap: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  align-self: start;
  grid-column: 1 / -1;
}

.addon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--line-green);
}

.addon-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-icon {
  width: 48px;
  height: 48px;
  background: #e6f9ed;
  color: var(--line-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.addon-price-block {
  margin-top: 4px;
}

.addon-old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
}

.addon-price {
  font-size: 30px;
  font-weight: 700;
  color: var(--line-green);
  /* font-family: 'Outfit', sans-serif; */
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.addon-price span {
  font-size: 16px;
  color: var(--text-main);
}

.addon-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 auto;
}

.addon-feature-group h4 {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 600;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 6px;
}

.addon-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.addon-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.addon-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  stroke: var(--line-green);
}

.addon-note {
  font-size: 13px;
  color: var(--text-muted);
  background: #f9fafb;
  padding: 12px;
  border-radius: 12px;
  margin-top: 0;
  line-height: 1.4;
}

/* =========================================
  RESPONSIVE DESIGN (BREAKPOINTS)
  ========================================= */
@media (max-width: 1150px) {
  .pricing-container {
      grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
      max-width: 900px;
  }
  
  .addon-card {
      padding: 40px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
      padding: 40px 16px;
  }
  .pricing-section-heading .eyebrow {
      font-size: 0.95rem;
  }
  .pricing-section-title {
      font-size: clamp(2rem, 10vw, 2.8rem);
      line-height: 1.08;
  }
  .features-grid {
      grid-template-columns: 1fr; /* Single column for features */
  }
  .pricing-price-action-area {
      flex-direction: column;
      align-items: stretch;
  }
  .floating-box {
      max-width: 100%;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
  }
  .floating-box--image {
      min-height: 170px;
  }
  .btn--full-mobile {
      width: auto;
      padding: 12px 24px;
  }
}

@media (max-width: 600px) {
  .card-top, .card-bottom {
      padding: 32px 24px;
  }
  .addon-card {
      padding: 32px 24px;
  }
  .pricing-title-wrap h3 {
      font-size: 36px;
  }
  .price-amount {
      font-size: 48px;
  }
  .floating-box {
      flex-direction: column;
      align-items: flex-start;
  }
  .floating-box--image {
      min-height: 145px;
  }
  .btn--full-mobile {
      width: 100%;
  }
}

/* =========================================
  Additional Required Services SECTION
  ========================================= */
.required-services-section {
  padding: 56px 20px;
}

.required-services-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.required-services-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #101828;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.required-services-grid {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.required-services-head,
.service-row {
  display: grid;
  grid-template-columns: minmax(360px, 2.2fr) minmax(200px, 1fr) minmax(220px, 1.15fr);
  gap: 1rem;
  align-items: center;
}

.required-services-head {
  background: linear-gradient(135deg, #1f2937, #111827);
  border-bottom: 1px solid #0f172a;
  color: #fff3e6;
  /* font-size: 0.9rem; */
  font-weight: 600;
  padding: 0.7rem 1rem;
  letter-spacing: 0.02em;
}

.head-col {
  white-space: nowrap;
}

.required-services-head .head-col:nth-child(2),
.required-services-head .head-col:nth-child(3) {
  text-align: center;
}

.service-row {
  padding: 0.72rem 1rem;
  border-bottom: 1px solid #e6e9ef;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-col-main {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-col-zcom {
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-col-detail {
  color: #667085;
  /* font-size: 0.9rem; */
  text-align: center;
}

.service-icon-badge {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #fff6ee;
  border: 1px solid #ffe0c2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ea7a1f;
  flex-shrink: 0;
}

.service-icon-badge svg {
  width: 1rem;
  height: 1rem;
}

.service-cell-main {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.service-title {
  /* font-size: 0.95rem; */
  font-weight: 600;
  color: #2f3743;
  line-height: 1.2;
}

.service-subtitle {
  /* font-size: 0.82rem; */
  color: #8f98a6;
  font-weight: 500;
}

.zcom-recommend {
  display: inline-block;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 140, 1, 0.4);
  color: #8a4e12;
  background: #fff8ee;
  /* font-size: 0.82rem; */
  font-weight: 600;
  border-radius: 999px;
}

.service-check {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  color: var(--line-green);
}

.service-check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-link {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .required-services-section {
    padding: 64px 16px;
  }

  .required-services-head {
    display: none;
  }

  .required-services-grid {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    background: transparent;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 0.8rem;
    background: #ffffff;
  }

  .service-row:last-child {
    border-bottom: 1px solid #eceef2;
  }

  .service-col-zcom,
  .service-col-detail {
    padding-left: 3.3rem;
    font-size: 0.92rem;
    text-align: left;
  }

  .service-col-zcom {
    justify-content: flex-start;
  }

  .service-col-zcom::before {
    content: "บริการจาก Z.com: ";
    color: #8b94a2;
    font-weight: 500;
  }

  .service-col-detail::before {
    content: "รายละเอียด: ";
    color: #8b94a2;
    font-weight: 500;
  }
}

@media (max-width: 640px) {
  .required-services-title {
    margin-bottom: 1.1rem;
  }

  .service-icon-badge {
    width: 2.2rem;
    height: 2.2rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-subtitle {
    font-size: 0.84rem;
  }

  .service-row {
    padding: 0.92rem 0.85rem;
  }

  .service-col-zcom,
  .service-col-detail {
    padding-left: 0;
  }

  .service-col-zcom::before,
  .service-col-detail::before {
    display: block;
    margin-bottom: 0.2rem;
  }
}

/* =========================================
  Implementation Plan Section
  ========================================= */
/* Section Layout */
.timeline-section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header (Minimalist) */
.section-header {
  margin-bottom: 80px;
  max-width: 600px;
}

.timeline-section .section-header--implementation {
  max-width: 760px;
  margin-bottom: 72px;
}

.timeline-section .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 14px;
  padding: 0.35rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 1, 0.28);
  background: rgba(255, 240, 218, 0.9);
  color: #8a4e12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
}

.timeline-section .section-kicker::before,
.timeline-section .section-kicker::after {
  content: "•";
  color: rgba(255, 140, 1, 0.75);
}

.timeline-section .section-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #111827;
  text-shadow: 0 10px 24px rgba(255, 140, 1, 0.14);
}

.timeline-section .section-subtitle {
  max-width: 68ch;
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  color: #7a4a19;
}

/* .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 16px 0;
  font-family: var(--font-family-emphasis);
  letter-spacing: -0.5px;
  line-height: 1.2;
} */

/* .section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
} */

/* Horizontal Grid Layout */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 คอลัมน์ แนวนอน */
  gap: 0; /* เราจะเว้นระยะห่างที่ตัว Content เอง เพื่อให้เส้นเชื่อมต่อกันเนียนๆ */
  padding: clamp(28px, 4vw, 40px) clamp(18px, 2.5vw, 28px);
  border-radius: 22px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-color) 12%, rgba(255, 255, 255, 0.92)),
    color-mix(in srgb, var(--secondary-color) 10%, rgba(255, 255, 255, 0.94))
  );
  border: 1px solid color-mix(in srgb, var(--primary-color) 18%, transparent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

/* Single Step Item */
.timeline-step {
  display: flex;
  flex-direction: column;
  position: relative;
  --step-color: var(--primary-color);
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-step:nth-child(2) { --step-color: #f57b08; }
.timeline-step:nth-child(3) { --step-color: #ee6a10; }
.timeline-step:nth-child(4) { --step-color: #e75a18; }
.timeline-step:nth-child(5) { --step-color: #e0491f; }
.timeline-step:nth-child(6) { --step-color: var(--secondary-color); }

/* ส่วนหัวของแต่ละ Step (ตัวเลข + ไอคอน) */
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 24px;
  margin-bottom: 16px;
}

.step-num {
  font-size: 3rem;
  font-weight: 300;
  line-height: 0.8;
  color: var(--step-color); /* ไล่สีจากส้มไปแดงตามลำดับขั้น */
  opacity: 0.88;
  transition: color 0.32s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-icon {
  color: var(--step-color);
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.68;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5px;
}

/* เส้น Track แนวนอน (ตัวเชื่อม) */
.step-divider {
  position: relative;
  height: 1px;
  background-color: color-mix(in srgb, var(--step-color) 35%, #ffffff);
  margin-bottom: 24px;
  width: 100%; /* เส้นยาวทะลุขอบขวา */
  transition: background-color 0.3s ease;
}

/* จุดวงกลมบนเส้น Track */
.step-divider::before {
  content: '';
  position: absolute;
  top: -4px; /* ดึงให้จุดอยู่กึ่งกลางเส้น */
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--step-color);
  transition: background-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

/* ตัดเส้นส่วนเกินของไอเทมสุดท้ายออก */
.timeline-step:last-child .step-divider {
  width: 9px; /* เหลือแค่ความกว้างของจุดวงกลม */
}

/* ส่วนเนื้อหา */
.step-content {
  padding-right: 24px; /* ป้องกันข้อความชนกับคอลัมน์ถัดไป */
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--step-color) 72%, #1f2937);
  margin: 0 0 12px 0;
  line-height: 1.4;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* Hover Effects - สร้างความมีชีวิตชีวาแบบเรียบง่าย */
.timeline-step:hover .step-num {
  color: var(--step-color);
  transform: translateY(-1px) scale(1.03);
}

.timeline-step:hover .step-icon {
  color: var(--step-color);
  opacity: 1;
  transform: translateY(-1px);
}

.timeline-step:hover .step-divider {
  background-color: var(--step-color);
}

.timeline-step:hover .step-divider::before {
  background-color: var(--step-color);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--step-color) 18%, transparent); /* วงแหวนเรืองแสงเบาๆ */
}

.timeline-step:hover .step-title {
  color: var(--step-color);
  transform: translateY(-1px);
}

/* Responsive Design */
/* Tablet: แถวละ 3 คอลัมน์ */
@media screen and (max-width: 1100px) {
  .timeline-grid {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 60px;
  }
  /* ตัดเส้นให้พอดีแถว */
  .timeline-step:nth-child(3n) .step-divider {
      width: 9px;
  }
  .timeline-step:last-child .step-divider {
      width: 9px;
  }
}

/* Mobile: แถวละ 1 คอลัมน์ เรียงลงมาเป็น List */
@media screen and (max-width: 640px) {
  .timeline-section {
      padding: 60px 20px;
  }
  .section-header {
      margin-bottom: 50px;
  }
  .timeline-section .section-header--implementation {
      margin-bottom: 44px;
  }
  .timeline-section .section-kicker {
      font-size: 0.76rem;
      margin-bottom: 10px;
  }
  .timeline-grid {
      grid-template-columns: 1fr;
      row-gap: 40px;
  }
  .step-header {
      padding-right: 0;
  }
  .step-content {
      padding-right: 0;
  }
  /* บนมือถือ จะเปลี่ยนเส้นแนวนอนให้เป็นเส้นคั่น (Divider) แบบ 100% แทน */
  .timeline-step:nth-child(3n) .step-divider {
      width: 100%;
  }
  .timeline-step:last-child .step-divider {
      width: 100%;
  }
}

/* --- New Features Section (Solution & How it works) --- */
.features-section {
  padding: 0 20px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.32s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 56px rgba(255, 140, 1, 0.1), 0 10px 26px rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 140, 1, 0.22);
}

.feature-card:hover {
  box-shadow: 0 24px 56px rgba(255, 140, 1, 0.2), 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 140, 1, 0.22);
  transform: translateY(-6px);
}

.card-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px 0;
  font-family: var(--font-family-emphasis);
  letter-spacing: -0.5px;
}

.card-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 40px 0;
  font-weight: 300;
  line-height: 1.6;
}

/* Clean List for Solution */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.clean-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 400;
  line-height: 1.6;
}

.clean-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  color: var(--primary-color);
  background: rgba(255, 140, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-top: 2px;
}

/* Transformation Highlight Box */
.highlight-box {
  background: linear-gradient(to right, rgba(255,140,1,0.25), rgba(255, 244, 230, 0.9));
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  border-radius: 0 12px 12px 0;
}

.highlight-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 500;
}

.highlight-text .before {
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.highlight-text svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.highlight-text .after {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Vertical Flow for How It Works */
.work-flow {
  position: relative;
}

.work-flow::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 1px;
  border-left: 2px dashed rgba(255, 140, 1, 0.3);
}

.flow-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(255, 140, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 24px;
  z-index: 1;
  transition: background-color 0.32s ease, color 0.32s ease, border-color 0.32s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.flow-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

.flow-item:hover .flow-icon {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-1px) scale(1.08);
  box-shadow: 0 14px 28px rgba(255, 140, 1, 0.32);
}

.flow-content {
  font-size: 1.125rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-item:hover .flow-content {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.flow-item:hover {
  transform: translateX(2px);
}

/* Responsive Grid for Cards */
@media screen and (max-width: 960px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
  .feature-card {
      padding: 40px 30px;
  }
}

/* =========================================
 Footer
 ========================================= */
.site-footer {
  /* margin-top: 86px; */
  border-top: 1px solid rgba(255, 140, 1, 0.18);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 187, 120, 0) 52%),
    radial-gradient(circle at 86% 0%, rgba(255, 156, 74, 0.2) 0%, rgba(255, 156, 74, 0) 48%),
    linear-gradient(180deg, #fff7ec 0%, #fff3e4 56%, #fff9f1 100%);
}

.site-footer__inner {
  padding-top: 40px;
  padding-bottom: 28px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1.9fr);
  gap: 26px;
  align-items: start;
}

.site-footer__brand-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.site-footer__brand img {
  height: 50px;
  width: auto;
}

.site-footer__brand h3 {
  color: #3f2a18;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin-bottom: 16px;
  font-weight: 600;
}

.site-footer__meta {
  display: grid;
  gap: 4px;
  /* font-size: 0.86rem; */
  color: #8a6039;
}

.site-footer__contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  flex-direction: column;
}

.site-footer__company {
  color: #643913;
  font-weight: 600;
}

.site-footer__column {
  color: #68401e;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  letter-spacing: 0.03em;
  margin: 1rem 0 1rem 0;
  /* font-weight: 600; */
  min-width: 0;
}

.site-footer__column h4 {
  margin: 0;
  color: #6b3f15;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__address,
.site-footer__column a {
  color: #4e3117;
  line-height: 1.65;
  font-size: 0.92rem;
  text-decoration: none;
}

.site-footer__heading-spaced {
  margin-top: 18px;
}

/* .site-footer__contact-link {
  padding: 0.68rem 0.94rem;
  border: 1px solid rgba(255, 140, 1, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #8f4a11;
  box-shadow: 0 10px 22px rgba(255, 140, 1, 0.08);
} */

.site-footer__contact-link:hover {
  color: #c45f09;
  border-color: rgba(255, 140, 1, 0.4);
  background: rgba(255, 250, 244, 0.96);
}

.site-footer__contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.site-footer__contact-icon svg {
  width: 18px;
  height: 18px;
}

.site-footer__column a:hover {
  color: #b8450c;
}

.site-footer__contact-list,
.site-footer__menu {
  list-style: none;
  gap: 7px;
}

.site-footer__contact-list {
  display: grid;
}

.site-footer__menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: stretch;
  gap: 12px 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__menu li {
  min-width: 0;
}

.site-footer__menu a {
  display: block;
  width: 100%;
  color: #6b3f15;
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
}

.site-footer__menu a:hover {
  color: #ff7a00;
  opacity: 1;
  text-shadow: 0 0 14px rgba(255, 140, 1, 0.2);
}

.site-footer__bar {
  background: linear-gradient(90deg, #ff8c01 0%, #ff7608 45%, #d84315 100%);
  border-top: 1px solid rgba(170, 56, 7, 0.24);
}

.site-footer__bar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__bar p {
  color: #fff7ed;
  font-size: 0.75rem;
  font-weight: 500;
}

.site-footer__legal {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__legal a {
  color: #fff7ed;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
}

.site-footer__legal a:hover {
  color: #fff;
}

@media screen and (max-width: 980px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 22px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 8px;
  }
}

@media screen and (max-width: 640px) {
  .site-footer {
    margin-top: 58px;
  }

  .site-footer__inner {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__brand img {
    height: 50px;
  }

  .site-footer__contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__legal {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
