:root {
  --bg: #f5f1eb;
  --surface: #ffffff;
  --surface-soft: #fdf8f2;
  --primary: #5b4b3d;
  --secondary: #8f7a68;
  --accent: #c58e5d;
  --accent-soft: #f8e5d1;
  --text: #332a20;
  --muted: #6f6257;
  --border: rgba(149, 116, 86, 0.2);
  --shadow: 0 28px 80px rgba(80, 61, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(255, 248, 238, 0.95), transparent 32%), linear-gradient(180deg, #fcf4e9 0%, #f3e7dc 100%);
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(170, 157, 142, 0.18);
  box-shadow: 0 20px 50px rgba(99, 81, 64, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.brand {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(149, 116, 86, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(97, 76, 54, 0.1);
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
}

.nav-toggle[aria-expanded="true"] {
  background: linear-gradient(145deg, rgba(255, 253, 250, 0.98), rgba(244, 229, 211, 0.96));
  border-color: rgba(160, 124, 90, 0.3);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transform: translateX(-50%);
}

.nav-toggle span:nth-child(1) {
  top: 12px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 14, 11, 0.14), rgba(52, 36, 22, 0.1));
  backdrop-filter: blur(1px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 90;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 0.55rem 0.55rem 0.55rem;
  background: linear-gradient(180deg, #f5ecdf 0%, #efe1cf 100%);
  border-left: 1px solid rgba(142, 108, 76, 0.28);
  box-shadow: -12px 0 26px rgba(38, 27, 17, 0.12);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 0.3s ease;
}

.nav-overlay.open .overlay-panel {
  transform: translateX(0);
}

.overlay-nav {
  width: 100%;
  display: grid;
  gap: 0.3rem;
  padding: 0.1rem;
  background: transparent;
  overflow-x: hidden;
}

.nav-close {
  position: static;
  align-self: flex-end;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(128, 97, 69, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: #4b3625;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
}

.overlay-nav a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.32rem;
  font-size: 0.72rem;
  color: #2f2218;
  text-decoration: none;
  font-weight: 640;
  padding: 0.42rem 0.45rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(156, 121, 89, 0.36);
  box-shadow: none;
  min-width: 0;
  overflow: hidden;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.overlay-nav a .nav-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.overlay-nav a::before {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
  background: linear-gradient(145deg, #dceec1, #c7df9f);
  color: #2f4f1a;
  box-shadow: none;
}

.overlay-nav a:hover {
  transform: translateX(2px);
  border-color: rgba(124, 92, 63, 0.56);
  background: #ffffff;
}

.overlay-nav a.is-active {
  border-color: rgba(109, 142, 73, 0.65);
  background: linear-gradient(145deg, rgba(239, 248, 226, 0.98), rgba(229, 241, 209, 0.96));
  color: #27461a;
}

.overlay-nav a.is-active::before {
  background: linear-gradient(145deg, #cde5a8, #b7d98a);
  color: #1f3d13;
}

.overlay-nav a:nth-child(1)::before { content: "🏠"; }
.overlay-nav a:nth-child(2)::before { content: "🧴"; }
.overlay-nav a:nth-child(3)::before { content: "🍃"; }
.overlay-nav a:nth-child(4)::before { content: "🤝"; }
.overlay-nav a:nth-child(5)::before { content: "💬"; }
.overlay-nav a:nth-child(6)::before { content: "🗓"; }

body.nav-open {
  overflow: hidden;
}

@media (max-width: 880px) {
  .overlay-nav {
    width: 100%;
    padding: 0;
  }

  .overlay-panel {
    width: 42vw;
    max-width: none;
    border-left: none;
  }
}

@media (max-width: 560px) {
  .overlay-panel {
    width: min(68vw, 280px);
  }

  .overlay-nav a {
    font-size: 0.76rem;
    align-items: flex-start;
  }

  .overlay-nav a .nav-label {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.15;
  }
}

.nav-links a,
.nav-links .nav-item > a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 236, 223, 0.98));
  box-shadow: 0 12px 24px rgba(69, 46, 24, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-links a::before,
.nav-links .nav-item > a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 236, 223, 0.88));
  transform: translateZ(-8px) scale(0.97);
  z-index: -1;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links .nav-item > a:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(245, 236, 223, 1));
  color: var(--primary);
  transform: translateY(-4px) translateZ(10px);
  box-shadow: 0 25px 40px rgba(69, 46, 24, 0.18);
}

.nav-links a:hover::before,
.nav-links .nav-item > a:hover::before {
  transform: translateZ(-4px) scale(0.99);
}

@media (prefers-reduced-motion: no-preference) {
  .nav-links a,
  .nav-links .nav-item > a {
    animation: floatLink 8s ease-in-out infinite alternate;
  }
}

@keyframes floatLink {
  from { transform: translateY(0) translateZ(0); }
  to { transform: translateY(-2px) translateZ(2px); }
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(149, 116, 86, 0.16);
  box-shadow: 0 28px 60px rgba(90, 68, 45, 0.12);
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.1rem;
  border-radius: 18px;
  margin: 0.25rem 0;
  background: transparent;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: rgba(197, 142, 93, 0.14);
  color: var(--primary);
}

.caret {
  margin-left: 0.35rem;
  font-size: 0.85rem;
}

.nav-cta {
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, #5b4336, #8f7457);
  color: white;
  border-radius: 999px;
  box-shadow: 0 22px 38px rgba(93, 70, 47, 0.18);
}

.hero {
  padding: 0.9rem 0 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 241, 220, 0.55), transparent 20%), radial-gradient(circle at 80% 25%, rgba(197, 142, 93, 0.14), transparent 16%);
  pointer-events: none;
}

.hero-pro {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fff8f0 0%, #f5ede3 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 2rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy .eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 0rem;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
}

.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 0.65rem;
}

.hero-value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.65rem 8.5rem 0.65rem 1rem;
  min-height: 6.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(197, 142, 93, 0.18);
  box-shadow: 0 16px 28px rgba(98, 76, 51, 0.08);
}

.hero-value-card:hover,
.hero-value-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(98, 76, 51, 0.14);
  background: rgba(255, 255, 255, 1);
}

.value-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 6.5rem);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9eee0, #f6dcbc);
  color: #8f5d33;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(197, 142, 93, 0.24), 0 6px 12px rgba(143, 93, 51, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.value-avatar {
  position: absolute;
  top: 0.6rem;
  right: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(91, 75, 61, 0.08);
  color: var(--primary);
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(46, 34, 22, 0.08);
}

.value-avatar--thanh,
.value-avatar--dieu,
.value-avatar--bo,
.value-avatar--duong {
  top: 1rem;
  right: 1rem;
  width: 5.5rem;
  height: auto;
  border-radius: 10px;
  background-color: transparent;
  color: transparent;
  box-shadow: 0 8px 18px rgba(46, 34, 22, 0.1);
  overflow: hidden;
}

.value-avatar--thanh .value-avatar-img,
.value-avatar--dieu .value-avatar-img,
.value-avatar--bo .value-avatar-img,
.value-avatar--duong .value-avatar-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
}

.hero-value-card:nth-child(1) .value-icon {
  background: linear-gradient(135deg, #ecfbf2, #c8f1da);
  color: #198a49;
  box-shadow: inset 0 0 0 1px rgba(25, 138, 73, 0.2), 0 6px 14px rgba(25, 138, 73, 0.15);
}

.hero-value-card:nth-child(2) .value-icon {
  background: linear-gradient(135deg, #fff6e7, #ffdcae);
  color: #b57619;
  box-shadow: inset 0 0 0 1px rgba(181, 118, 25, 0.2), 0 6px 14px rgba(181, 118, 25, 0.16);
}

.hero-value-card:nth-child(3) .value-icon {
  background: linear-gradient(135deg, #eff8e8, #d3ecbd);
  color: #5d9031;
  box-shadow: inset 0 0 0 1px rgba(93, 144, 49, 0.2), 0 6px 14px rgba(93, 144, 49, 0.16);
}

.hero-value-card:nth-child(4) .value-icon {
  background: linear-gradient(135deg, #fff0ea, #ffd3c0);
  color: #cc7a4f;
  box-shadow: inset 0 0 0 1px rgba(204, 122, 79, 0.2), 0 6px 14px rgba(204, 122, 79, 0.16);
}

.hero-value-card:hover .value-icon,
.hero-value-card:focus-within .value-icon {
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.03);
}

.value-key {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .hero-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (max-width: 580px) {
  .hero-value-grid {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .hero-copy .eyebrow {
    margin-bottom: 0;
  }
}

.hero-value-card p {
  margin: 0;
  color: #4e4134;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 15rem;
}

.hero p {
  max-width: 46rem;
  margin: 1.2rem 0 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-description {
  max-width: 46rem;
  margin: 1.1rem 0 1.6rem;
}

.hero-description-title {
  margin: 0 0 0.95rem;
  padding: 0.92rem 1rem 0.98rem;
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.97), rgba(247, 237, 224, 0.95)) padding-box,
    linear-gradient(130deg, rgba(117, 158, 78, 0.42), rgba(197, 142, 93, 0.45)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 32px rgba(98, 76, 51, 0.1);
  font-size: 1.14rem;
  line-height: 1.42;
  color: #36281d;
  letter-spacing: 0.008em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
}

.hero-description-title-main {
  display: inline;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-description-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(241, 250, 231, 0.95));
  border: 1px solid rgba(117, 158, 78, 0.26);
  box-shadow: 0 8px 14px rgba(98, 76, 51, 0.14);
}

.title-part--base {
  color: #4f4135;
}

.title-part--restore {
  color: #3f8f56;
}

.title-part--nourish {
  color: #b56f38;
}

.title-sep {
  color: #8b7867;
}

.hero-description-title::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(117, 158, 78, 0.9), rgba(197, 142, 93, 0.85));
  opacity: 0.9;
}

.hero-description-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-description-card {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(197, 142, 93, 0.18);
  box-shadow: 0 16px 28px rgba(98, 76, 51, 0.08);
  color: #5f4c3e;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-description-card:hover,
.hero-description-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(98, 76, 51, 0.14);
  background: rgba(255, 255, 255, 1);
}

.hero-description-card h4 {
  margin: 0 0 0.52rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4d3a2d;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-card-head-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 236, 223, 0.95));
  border: 1px solid rgba(197, 142, 93, 0.22);
  box-shadow: 0 6px 12px rgba(98, 76, 51, 0.1);
}

.hero-description-card:nth-child(1) .hero-card-head-icon {
  color: #3b955d;
}

.hero-description-card:nth-child(2) .hero-card-head-icon {
  color: #b8743f;
}

.hero-description-card:nth-child(3) .hero-card-head-icon {
  color: #7a6ab5;
}

.hero-description-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.hero-description-icon-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(197, 142, 93, 0.22);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 236, 223, 0.95));
  box-shadow: 0 8px 14px rgba(98, 76, 51, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-description-icon-btn:hover,
.hero-description-icon-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(98, 76, 51, 0.14);
  border-color: rgba(197, 142, 93, 0.36);
}

.hero .hero-description-card p {
  margin: 0 0 0.55rem;
  font-size: 0.94rem;
  text-align: justify;
  text-justify: inter-word;
}

.hero .hero-description-card p:last-child {
  margin-bottom: 0;
}

.hero-description-list {
  list-style: none;
  margin: 0.2rem 0 0.7rem;
  padding: 0;
}

.hero-description-list li {
  position: relative;
  margin-bottom: 0.36rem;
  padding-left: 1.25rem;
  text-align: justify;
  text-justify: inter-word;
}

.hero-description-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #c58e5d, #e0b082);
  box-shadow: 0 0 0 2px rgba(197, 142, 93, 0.14);
}

.hero-description-subtitle {
  margin-top: 0.08rem;
  font-weight: 700;
  color: #4f3d2f;
}

.hero-description-closing {
  margin-top: 0.32rem;
  padding-top: 0.52rem;
  border-top: 1px dashed rgba(160, 123, 89, 0.35);
  color: #5a4738;
}

@media (max-width: 920px) {
  .hero-description-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-description-card--goals {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .hero-description-grid {
    grid-template-columns: 1fr;
    gap: 0.68rem;
  }

  .hero-description-card {
    padding: 0.9rem;
    border-radius: 14px;
  }

  .hero-description-title {
    font-size: 1rem;
    padding: 0.7rem 0.75rem 0.8rem;
    gap: 0.45rem;
    border-radius: 14px;
  }

  .hero-description-title-icon {
    width: 28px;
    height: 28px;
  }

  .hero-card-head-icon {
    width: 24px;
    height: 24px;
  }

  .hero-description-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .hero-description-card--goals {
    grid-column: auto;
  }
}

.hero-description .hero-description-card {
  border-top: 1px solid rgba(197, 142, 93, 0.18) !important;
  border-left: 1px solid rgba(197, 142, 93, 0.18) !important;
  border-right: 1px solid rgba(197, 142, 93, 0.18) !important;
  border-bottom: 1px solid rgba(197, 142, 93, 0.18) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 16px 28px rgba(98, 76, 51, 0.08) !important;
}

.hero-description .hero-description-card::before {
  display: none !important;
}

.hero-description .hero-description-card h4 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-description .hero-description-card:hover,
.hero-description .hero-description-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(98, 76, 51, 0.14) !important;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-value-card {
    padding: 0.6rem 6rem 0.55rem 0.9rem;
    min-height: 6rem;
  }

  .value-row {
    max-width: calc(100% - 4.8rem);
  }

  .value-avatar--thanh,
  .value-avatar--dieu,
  .value-avatar--bo,
  .value-avatar--duong {
    width: 4.2rem;
  }

  .hero .hero-value-card p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-value-grid {
    grid-template-columns: 1fr;
  }
}

.hero-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(197, 142, 93, 0.15);
  box-shadow: 0 16px 28px rgba(98, 76, 51, 0.08);
}

.hero-summary-copy strong {
  display: block;
  font-size: 1.02rem;
  color: #4d3a2d;
  margin-bottom: 0.25rem;
}

.hero-summary-inline-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.35rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 236, 223, 0.95));
  border: 1px solid rgba(197, 142, 93, 0.22);
  box-shadow: 0 5px 10px rgba(98, 76, 51, 0.1);
  vertical-align: -4px;
  font-size: 0.85rem;
}

.hero-summary-copy span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-summary-card--metric .hero-summary-copy strong {
  font-size: 1.02rem;
  color: var(--primary);
  line-height: 1.25;
}

.hero-summary-image {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(86, 64, 46, 0.14);
  border: 1px solid rgba(197, 142, 93, 0.2);
}

@media (max-width: 920px) {
  .hero-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-summary-grid {
    grid-template-columns: 1fr;
  }
}

.hero .hero-value-card p {
  margin: 0.22rem 0 0;
  color: #4e4134;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 15rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(93, 70, 47, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #5b4b3d 0%, #7e6655 100%);
  color: white;
  box-shadow: 0 18px 30px rgba(93, 70, 47, 0.18);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 1.5px solid rgba(186, 154, 113, 0.35);
}

.btn-secondary {
  background: rgba(95, 75, 63, 0.09);
  gap: 1rem;

img {
  max-width: 100%;
  display: block;
}
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

}

  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(147, 113, 104, 0.14);
  box-shadow: 0 26px 60px rgba(90, 68, 45, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(170, 157, 142, 0.18);
  box-shadow: 0 20px 50px rgba(99, 81, 64, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.brand {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}


.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-toggle {

.highlight-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(149, 116, 86, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(94, 71, 49, 0.08);
  box-shadow: 0 14px 32px rgba(97, 76, 54, 0.1);
.highlight-card strong {

.nav-toggle:hover {
  transform: translateY(-2px);

.highlight-card span {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -6%;
  width: 130px;
  height: 130px;
  background: rgba(197, 142, 93, 0.12);
  border-radius: 50%;
  filter: blur(14px);
}

.hero-slider {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  border: 1px solid rgba(151, 113, 69, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 80px rgba(86, 64, 46, 0.12);
  overflow: hidden;
}

.hero-slide-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.hero-slide {
  margin: 0;
  scroll-snap-align: start;
}

.hero-slide-image {
  width: 100%;
  height: auto;
  border-radius: 36px;
  object-fit: contain;
  display: block;
}

.hero-slide-track::-webkit-scrollbar {
  height: 10px;
}

.hero-slide-track::-webkit-scrollbar-thumb {
  background: rgba(125, 92, 63, 0.45);
  border-radius: 999px;
}

.hero-slide-track::-webkit-scrollbar-track {
  background: rgba(245, 232, 214, 0.7);
}

.section-banner-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(151, 113, 69, 0.12);
  max-height: 330px;
  object-fit: cover;
}

.hero-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: 0 35px 90px rgba(86, 64, 46, 0.14);
  border: 1px solid rgba(151, 113, 69, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
}

.hero-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-card-footer strong {
  font-size: 1.55rem;
  color: var(--primary);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(197, 142, 93, 0.12);
  border-radius: 24px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 24px 58px rgba(94, 71, 49, 0.08);
}

.highlight-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.highlight-card span {
  color: var(--muted);
  font-size: 0.98rem;
}

.section {
  padding: 3.5rem 0;
}

.section-light {
  background: #fdf7ef;
}

.section-dark {
  background: #f4eadf;
}

.section-modern {
  background: linear-gradient(180deg, rgba(255, 246, 236, 0.9) 0%, rgba(250, 243, 234, 0.95) 100%);
}

.section-card-catalog {
  background: linear-gradient(180deg, #f8f2ea 0%, #f5ede2 100%);
  padding-top: 2.5rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.95rem;
}

.catalog-card {
  border-radius: 18px;
  border: 1px solid rgba(197, 142, 93, 0.17);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(97, 75, 52, 0.08);
  padding: 1rem 1.05rem;
}

.catalog-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #3e2e20;
  line-height: 1.35;
}

.catalog-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #544434;
}

.catalog-card strong {
  color: #2f2218;
}

.catalog-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(229, 243, 213, 0.95);
  border: 1px solid rgba(120, 160, 83, 0.35);
  color: #3d6225;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-icon {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  line-height: 1;
}

.catalog-price {
  margin-top: 0.6rem !important;
  font-weight: 700;
}

.catalog-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f3e5d1, #e9c99f);
  color: #5d3e21;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.catalog-card--highlight {
  border-color: rgba(117, 158, 78, 0.35);
  background: linear-gradient(160deg, rgba(250, 255, 244, 0.97), rgba(239, 248, 227, 0.96));
}

.catalog-card--quote p {
  font-style: italic;
  margin-bottom: 0.55rem;
}

.catalog-card--quote span {
  display: block;
  margin-top: 0.2rem;
  color: #6a5a49;
  font-size: 0.88rem;
}

.catalog-card--footer-note p + p {
  margin-top: 0.45rem;
}

@media (max-width: 640px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0.75rem auto 0;
  max-width: 720px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
}

.section-intro {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.section-header.light h2,
.section-header.light .eyebrow {
  color: #3b342e;
}

.section-header .eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.section-banner-image {
  margin-bottom: 2rem;
}

.package-grid,
.benefits-grid,
.steps-grid,
.contact-grid,
.order-grid,
.feature-grid,
.testimonial-grid,
.industry-grid {
  display: grid;
  gap: 1.25rem;
}

.package-grid,
.benefits-grid,
.feature-grid,
.testimonial-grid,
.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.package-summary-card,
.package-card,
.benefit-card,
.affiliate-card,
.step-card,
.contact-card,
.feature-card,
.testimonial-card,
.industry-card {
  background: var(--surface);
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: 0 30px 65px rgba(95, 72, 51, 0.08);
  border: 1px solid rgba(149, 116, 86, 0.16);
}

.package-card {
  display: grid;
  gap: 1.25rem;
}

.package-pill {
  display: inline-flex;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.package-card h3,
.benefit-card h3,
.step-card h3,
.affiliate-card h3,
.contact-copy h2 {
  margin: 0;
  font-size: 1.45rem;
}

.package-card p,
.benefit-card p,
.step-card p,
.contact-copy p,
.hero-card p,
.affiliate-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

.package-card ul {
  list-style: disc inside;
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.package-card li {
  margin-bottom: 0.75rem;
}

.price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-card {
  width: 100%;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 1.75rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.feature-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(92, 70, 48, 0.08);
  border: 1px solid rgba(149, 116, 86, 0.14);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197, 142, 93, 0.14);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3,
.testimonial-card strong {
  margin: 0;
}

.feature-card h3 {
  font-size: 1.35rem;
}

.feature-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 1rem 0 0;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.testimonial-card {
  display: grid;
  gap: 1.2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4f4236;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 2rem;
  color: rgba(181, 131, 86, 0.25);
}

.testimonial-card strong {
  color: var(--primary);
  display: block;
  margin-top: 0.5rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.industry-card {
  background: linear-gradient(180deg, #fffcf7 0%, #f9f2e7 100%);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 30px 55px rgba(100, 76, 54, 0.08);
  border: 1px solid rgba(149, 116, 86, 0.18);
}

.industry-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.industry-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.package-card:hover,
.benefit-card:hover,
.step-card:hover,
.industry-card:hover,
.affiliate-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease;
}

.affiliate-pro {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.affiliate-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.affiliate-copy {
  display: grid;
  gap: 1.25rem;
}

.affiliate-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.affiliate-list li {
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.affiliate-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.affiliate-card {
  display: grid;
  gap: 1rem;
}

.affiliate-card label,
.contact-card label {
  font-weight: 600;
}

.affiliate-card input,
.contact-card input,
.contact-card textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.affiliate-card input:focus,
.contact-card input:focus,
.contact-card textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(166, 124, 82, 0.45);
  box-shadow: 0 0 0 4px rgba(166, 124, 82, 0.12);
}

.affiliate-result,
.form-message {
  background: #fff7ed;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(166, 124, 82, 0.22);
}

.small {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.contact-copy {
  display: grid;
  gap: 1.2rem;
}

.contact-copy .eyebrow {
  margin-bottom: 0;
}

.contact-card {
  padding: 2.25rem;
}

.contact-card .form-grid {
  display: grid;
  gap: 1.1rem;
}

.contact-card button {
  width: 100%;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--muted);
}

.footer-pro {
  background: #f7f1e7;
}

@media (max-width: 1040px) {
  .hero-grid,
  .package-grid,
  .benefits-grid,
  .order-grid,
  .affiliate-inner,
  .contact-grid,
  .feature-grid,
  .testimonial-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .nav {
    width: 100%;
    gap: 0.9rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 0.5rem;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
  }

  .hero {
    padding-top: 0.25rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
