@font-face {
  font-family: "Noto Sans Thai";
  src: url("noto-sans-thai-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Thai";
  src: url("noto-sans-thai-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Thai";
  src: url("noto-sans-thai-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fffaf3;
  --cream-deep: #f7eee3;
  --paper: #fffefd;
  --pink: #e985a5;
  --pink-dark: #cd6789;
  --pink-soft: #fbe8ef;
  --latte: #b88962;
  --latte-dark: #815b40;
  --ink: #2d2935;
  --muted: #6f6876;
  --sage: #afc5a4;
  --blue: #bad6e5;
  --yellow: #f7d77b;
  --line: #eddde2;
  --shadow: 0 18px 45px rgba(106, 78, 64, 0.10);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: 92px 0; }
.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; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 243, 0.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 133, 165, 0.18);
  transition: box-shadow 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(82, 59, 51, 0.08); }

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 225px; height: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none;
  color: #554c58;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 160ms ease, transform 160ms ease;
}
.main-nav a:hover { color: var(--pink-dark); }
.main-nav .nav-cta {
  padding: 10px 20px;
  color: white;
  background: var(--latte);
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(184, 137, 98, 0.22);
}
.main-nav .nav-cta:hover { color: white; background: var(--latte-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 2px; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background:
    radial-gradient(circle at 8% 12%, rgba(233, 133, 165, 0.15), transparent 23%),
    radial-gradient(circle at 92% 15%, rgba(247, 215, 123, 0.22), transparent 22%),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -170px;
  bottom: -150px;
  border: 2px dashed rgba(184, 137, 98, 0.25);
  border-radius: 50%;
}
.hero > .container { width: min(1360px, calc(100% - 32px)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.90fr) minmax(0, 1.10fr); gap: clamp(32px, 3vw, 48px); align-items: center; }
.hero-copy { min-width: 0; max-width: 570px; }
.hero-title-line { display: block; }
.hero-title-line + .hero-title-line { margin-top: 0.04em; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow span { margin-right: 6px; }

.hero h1, .section-heading h2, .faq-intro h2, .final-cta h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.22;
}
.hero h1 { font-size: clamp(2.6rem, 3.8vw, 3.6rem); line-height: 1.16; text-wrap: balance; }
.hero h1 em { color: var(--pink-dark); font-style: normal; }
.hero-lead { max-width: 540px; margin: 24px 0 30px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; text-wrap: pretty; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--pink-dark); box-shadow: 0 12px 24px rgba(205, 103, 137, 0.22); }
.button-primary:hover { background: #bd587b; box-shadow: 0 15px 28px rgba(205, 103, 137, 0.28); }
.button-ghost { color: var(--latte-dark); background: white; border-color: #e8d8ce; }
.button-ghost:hover { border-color: var(--latte); }

.trust-list { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 26px 0 0; padding: 0; list-style: none; color: #6b626c; font-size: 0.89rem; }
.trust-list span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 5px; color: white; background: var(--sage); border-radius: 50%; font-size: 0.72rem; }

.hero-art { position: relative; width: calc(100% + clamp(50px, 6vw, 110px)); margin-right: clamp(-110px, -6vw, -50px); }
.hero-art > img { width: 100%; height: auto; object-fit: contain; border: 7px solid white; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.doodle { position: absolute; z-index: 2; color: var(--pink); font-size: 2.2rem; }
.doodle-one { top: -30px; right: 20px; transform: rotate(12deg); }
.doodle-two { left: -28px; bottom: 26px; }

.mini-proof { padding: 19px 0; background: #352e39; color: white; }
.proof-row { display: flex; align-items: center; justify-content: center; gap: 23px; flex-wrap: wrap; font-size: 0.89rem; font-weight: 600; }
.proof-row i { width: 5px; height: 5px; background: var(--pink); border-radius: 50%; }

.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .faq-intro h2, .final-cta h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
.section-heading > p:last-child { margin: 13px auto 0; color: var(--muted); }
.split-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; text-align: left; }
.split-heading .eyebrow { margin-bottom: 5px; }
.text-link { color: var(--pink-dark); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { display: flex; min-height: 315px; padding: 28px; flex-direction: column; color: inherit; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); text-decoration: none; box-shadow: 0 12px 28px rgba(87, 65, 57, 0.055); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.category-card:hover { transform: translateY(-6px); border-color: #e8bdcc; box-shadow: var(--shadow); }
.category-icon { display: grid; place-items: center; width: 55px; height: 55px; margin-bottom: 24px; border-radius: 18px; font-size: 1.55rem; }
.category-icon.peach { background: #fbe2d6; }
.category-icon.blue { background: #dfeef5; }
.category-icon.yellow { background: #fff0bd; }
.category-icon.green { background: #e4eedf; }
.category-card h3 { margin: 0 0 9px; font-size: 1.13rem; line-height: 1.4; }
.category-card p { margin: 0 0 20px; color: var(--muted); font-size: 0.91rem; }
.category-card strong { margin-top: auto; color: var(--pink-dark); font-size: 0.91rem; }

.soft-section { background: #f8eee9; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { overflow: hidden; background: white; border: 1px solid rgba(226, 205, 198, 0.85); border-radius: 25px; box-shadow: 0 12px 28px rgba(83, 61, 52, 0.06); transition: transform 180ms ease, box-shadow 180ms ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { overflow: hidden; aspect-ratio: 1 / 1; background: #f7f2ed; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.product-image-wide img { object-position: center; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-body { padding: 23px; }
.product-tag { display: inline-block; margin-bottom: 12px; padding: 6px 11px; color: var(--pink-dark); background: var(--pink-soft); border-radius: 999px; font-size: 0.73rem; font-weight: 700; }
.product-body h3 { min-height: 3.15em; margin: 0 0 9px; font-size: 1.05rem; line-height: 1.55; }
.product-body p { min-height: 4.75em; margin: 0 0 18px; color: var(--muted); font-size: 0.87rem; }
.product-body a { color: var(--latte-dark); font-size: 0.88rem; font-weight: 700; text-decoration: none; }
.product-body a:hover { color: var(--pink-dark); }

.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { position: relative; padding: 30px 24px; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); }
.step-card span { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 20px; color: white; background: var(--latte); border-radius: 14px; font-size: 1.1rem; font-weight: 700; }
.step-card h3 { margin: 0 0 8px; font-size: 1.06rem; }
.step-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.center-action { margin-top: 34px; text-align: center; }

.faq-section { background: #30303b; color: white; }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 70px; align-items: start; }
.faq-intro p:not(.eyebrow) { color: #c7c3cb; }
.line-button { color: white; background: #06c755; }
.line-button:hover { background: #05ac49; }
.accordion details { margin-bottom: 12px; padding: 0 22px; background: #3b3a47; border: 1px solid #504e5d; border-radius: 17px; }
.accordion summary { position: relative; padding: 20px 38px 20px 0; cursor: pointer; font-weight: 600; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 0; top: 18px; color: var(--pink); font-size: 1.4rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion p { margin: -4px 0 20px; color: #cbc8d0; font-size: 0.92rem; }

.final-cta { padding: 72px 0; background: var(--cream); }
.final-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 46px 54px; overflow: hidden; background: linear-gradient(135deg, #fae4eb 0%, #fff4d7 100%); border: 1px solid #efd5dc; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.final-cta h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }

.site-footer { padding: 50px 0 26px; background: #fffdf9; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: start; justify-content: space-between; gap: 40px; }
.footer-grid img { width: 220px; height: auto; }
.footer-grid p { margin: 12px 0 0; color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.87rem; text-decoration: none; }
.footer-links a:hover { color: var(--pink-dark); }
.copyright { margin-top: 32px; padding-top: 21px; color: #8a828c; border-top: 1px solid var(--line); text-align: center; font-size: 0.8rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 550ms ease, transform 550ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(205, 103, 137, 0.45); outline-offset: 4px; }

@media (max-width: 1020px) {
  .main-nav { gap: 15px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 720px; margin-inline: auto; text-align: center; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-art { width: min(900px, 100%); margin-inline: auto; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 70px 0; }
  .brand img { width: 190px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.nav-cta) { display: block; padding: 10px 12px; }
  .main-nav .nav-cta { margin-top: 5px; text-align: center; }
  .hero { padding-top: 55px; }
  .hero > .container { width: min(100% - 28px, 1180px); }
  .hero h1 { font-size: clamp(2.2rem, 9.5vw, 3.1rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-art > img { width: 100%; height: auto; object-fit: contain; }
  .proof-row { gap: 10px 13px; font-size: 0.75rem; }
  .category-grid, .product-grid, .step-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 0; }
  .split-heading { display: block; text-align: center; }
  .split-heading .text-link { display: inline-block; margin-top: 14px; }
  .product-body h3, .product-body p { min-height: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .final-cta-card { padding: 36px 25px; flex-direction: column; align-items: flex-start; }
  .final-cta-card .button { width: 100%; }
  .footer-grid { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
