/* Biến màu và font */
:root {
  --cream: #fbf4ea;
  --cream-2: #efe2d2;
  --champagne: #d9b77f;
  --gold: #c4934a;
  --brown: #744b32;
  --deep-brown: #261711;
  --black: #15110f;
  --white: #ffffff;
  --muted: #71635c;
  --line: rgba(38, 23, 17, 0.12);
  --shadow-soft: 0 18px 45px rgba(38, 23, 17, 0.1);
  --shadow-strong: 0 26px 75px rgba(21, 17, 15, 0.22);
  --radius: 8px;
  --container: min(1140px, calc(100% - 32px));
  --font-body: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

/* Nền tảng chung */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-bottom: 74px;
  color: var(--black);
  background:
    linear-gradient(180deg, #fffaf3 0%, var(--cream) 42%, #fffdf8 100%),
    var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-dark {
  color: var(--white);
}

.eyebrow {
  .eyebrow{
    background:linear-gradient(90deg,#F7E7A1,#D4AF37,#B8860B);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.06;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 13vw, 5rem);
}

.hero-title {
  display: grid;
  gap: 4px;
  max-width: min(100%, calc(100vw - 46px));
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

.hero-title > span {
  display: block;
}

.hero-title > span:first-child {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.45rem, 7.3vw, 4.7rem);
  line-height: 1.08;
  white-space: nowrap;
}

.hero-title > span:last-child {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: #f8e8c8;
  isolation: isolate;
  margin-left: auto;
  margin-right: auto;
}

.hero-title strong {
  position: relative;
  display: inline-block;
  color: #f4d89e;
  font-style: italic;
  font-weight: 700;
  isolation: isolate;
}

.hero-title strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  z-index: -1;
  height: 0.2em;
  background: linear-gradient(90deg, rgba(217, 183, 127, 0.86), rgba(196, 147, 74, 0.28));
  border-radius: 999px;
}

.hero-title .brand-inline-logo::after {
  display: none;
}

.hero-title .brand-inline-logo .brand-name {
  font-size: 0.84em;
}

.hero-title .brand-inline-logo .brand-sub {
  font-size: 0.28em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 8vw, 3.55rem);
}

h3 {
  margin-bottom: 10px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.section-dark p,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, #f5dea7, var(--champagne) 50%, #b78136);
  box-shadow: 0 14px 32px rgba(196, 147, 74, 0.35);
}

.btn-secondary {
  color: var(--white);
  background: var(--brown);
  box-shadow: 0 14px 32px rgba(38, 23, 17, 0.28);
}

.hero-card .btn-secondary {
  position: relative;
  overflow: hidden;
  animation: softCtaPulse 2.8s ease-in-out infinite;
}

.hero-card .btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 232, 186, 0.34) 45%, transparent 70%);
  pointer-events: none;
  transform: translateX(-120%);
  animation: ctaShine 3.2s ease-in-out infinite;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, #15110f, #2a1913 54%, #4b2a1d);
  box-shadow: 0 14px 28px rgba(21, 17, 15, 0.24);
  animation: cardCtaGlow 2.5s ease-in-out infinite;
}

.btn-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 224, 160, 0.32) 45%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-120%);
  animation: ctaShine 3.15s ease-in-out infinite;
}

/* Đầu trang */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid rgba(38, 23, 17, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 14px 35px rgba(38, 23, 17, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 700;
  min-width: 118px;
  white-space: nowrap;
}

.site-header .brand {
  gap: 9px;
  min-width: 238px;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 150px;
  object-fit: contain;
}

.site-header .brand::after {
  content: "Quyền năng phái đẹp";
  display: inline-block;
  max-width: 118px;
  color: transparent;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: normal;
  background: linear-gradient(105deg, #815217 0%, #c18b24 30%, #fff2b8 48%, #d8a339 62%, #8d5a18 100%);
  background-size: 240% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 13px rgba(196, 147, 74, 0.24));
  animation: brandTaglineShine 3.8s ease-in-out infinite;
}

@keyframes brandTaglineShine {
  0%,
  100% {
    background-position: 0% center;
    transform: translateY(0);
  }

  50% {
    background-position: 100% center;
    transform: translateY(-1px);
  }
}

.brand-logo-inline {
  display: inline-block;
  height: clamp(58px, 11vw, 124px);
  max-width: min(46vw, 360px);
  margin-left: 0.08em;
  vertical-align: -0.28em;
}

.brand-logo-popover {
  height: 58px;
  max-width: 172px;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.brand-name {
  position: relative;
  display: inline-block;
  padding: 0 1px 5px 0;
  font-size: 2.12rem;
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  transform: skewX(-5deg);
  background: linear-gradient(108deg, #fff5ce 0%, #f5dfa7 24%, #d7a957 46%, #fff0bd 58%, #9d6f36 82%, #e8c36c 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: drop-shadow(0 1px 0 rgba(97, 61, 29, 0.22));
}

.brand-sub {
  color: #b9853e;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  transform: translateY(-2px);
}

.brand-inline-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  color: inherit;
  white-space: nowrap;
  vertical-align: baseline;
}

.brand-inline-logo .brand-name {
  padding-bottom: 0.1em;
  font-size: 1em;
}

.brand-inline-logo .brand-sub {
  font-size: 0.34em;
  transform: translateY(-0.2em);
}

.main-nav {
  position: fixed;
  inset: 82px 16px auto;
  display: grid;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 243, 0.96));
  border: 1px solid rgba(196, 147, 74, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  overflow: hidden;
  padding: 13px 46px 13px 16px;
  color: var(--deep-brown);
  border-radius: var(--radius);
  font-weight: 800;
  isolation: isolate;
  opacity: 0;
  transform: translateX(-8px);
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.main-nav.is-open a {
  animation: menuItemIn 360ms ease forwards;
}

.main-nav.is-open a:nth-child(1) {
  animation-delay: 40ms;
}

.main-nav.is-open a:nth-child(2) {
  animation-delay: 80ms;
}

.main-nav.is-open a:nth-child(3) {
  animation-delay: 120ms;
}

.main-nav.is-open a:nth-child(4) {
  animation-delay: 160ms;
}

.main-nav.is-open a:nth-child(5) {
  animation-delay: 200ms;
}

.main-nav.is-open a:nth-child(6) {
  animation-delay: 240ms;
}

.main-nav.is-open a:nth-child(7) {
  animation-delay: 280ms;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(217, 183, 127, 0.24), rgba(255, 255, 255, 0.74));
  opacity: 0;
  transform: scaleX(0.92);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0;
  transform: translate(-8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--black);
  background: #fff7ea;
  box-shadow: inset 0 0 0 1px rgba(196, 147, 74, 0.28), 0 10px 24px rgba(38, 23, 17, 0.07);
  transform: translateX(4px);
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.main-nav a.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.main-nav a:active {
  transform: translateX(4px) scale(0.98);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions .btn {
  min-height: 40px;
  display: inline-flex;
  padding: 9px 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(38, 23, 17, 0.15);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes softCtaPulse {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(38, 23, 17, 0.28);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 20px 42px rgba(132, 76, 45, 0.36);
    transform: translateY(-1px);
  }
}

@keyframes ctaShine {
  0%,
  45% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes cardCtaGlow {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(21, 17, 15, 0.24);
    filter: brightness(1);
  }

  50% {
    box-shadow: 0 18px 38px rgba(143, 77, 46, 0.36);
    filter: brightness(1.08);
  }
}

@keyframes floatButtonBreath {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.035);
  }
}

@keyframes floatGlowPulse {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(1);
  }

  50% {
    opacity: 0.28;
    transform: scale(1.12);
  }
}

@keyframes pricePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

@keyframes priceShine {
  0%,
  48% {
    left: -70%;
  }

  72%,
  100% {
    left: 118%;
  }
}

/* Khu vực hero */
.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #15110f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 0;
  background: url("assets/hero-beauty-team.png") center 42% / cover no-repeat;
  filter: blur(1.6px);
  opacity: 0.92;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(21, 17, 15, 0.88), rgba(21, 17, 15, 0.62) 52%, rgba(21, 17, 15, 0.44)),
    linear-gradient(180deg, rgba(21, 17, 15, 0.16), rgba(21, 17, 15, 0.66)),
    linear-gradient(90deg, rgba(196, 147, 74, 0.16), transparent 48%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  padding: 72px 0 48px;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 9px 13px;
  color: #1f1510;
  font-size: 0.88rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255, 243, 216, 0.96), rgba(217, 183, 127, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(196, 147, 74, 0.32);
  text-align: center;
  text-shadow: none;
}

.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges span {
  max-width: 100%;
  padding: 8px 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  overflow: hidden;
  max-width: 380px;
  padding: 22px;
  align-self: end;
  color: var(--black);
  background:
    radial-gradient(circle at 92% 8%, rgba(217, 183, 127, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.98), rgba(255, 246, 231, 0.92));
  border: 1px solid rgba(217, 183, 127, 0.34);
  border-radius: 22px;
  box-shadow: 0 24px 62px rgba(38, 23, 17, 0.22);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 17px;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(196, 147, 74, 0.22), transparent 68%);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 0;
  padding: 6px 10px;
  color: var(--gold);
  background: rgba(255, 231, 173, 0.4);
  border: 1px solid rgba(196, 147, 74, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  color: rgba(95, 70, 54, 0.78);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(196, 147, 74, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-phone {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 8px 18px rgba(196, 147, 74, 0.18);
}

.booking-offer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 13px;
  color: #4b2819;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.52), transparent 26%),
    linear-gradient(135deg, #fff4d5, #e1ad55);
  border: 1px solid rgba(196, 147, 74, 0.46);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(91, 57, 39, 0.18);
  isolation: isolate;
}

.booking-offer::before,
.service-hero-panel::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: -1;
  width: 54%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(10deg);
  animation: priceShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.booking-offer span {
  display: block;
  color: #7b604c;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-offer strong {
  display: block;
  margin-top: 2px;
  color: #4b2414;
  font-size: clamp(1.55rem, 6.2vw, 2rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 245, 214, 0.72), 0 12px 22px rgba(75, 36, 20, 0.18);
  animation: pricePulse 1.85s ease-in-out infinite;
}

.booking-offer small {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  color: var(--white);
  background: #7a4a2e;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.booking-offer-hero {
  margin-bottom: 12px;
}

.hero-card p {
  margin-bottom: 12px;
  padding: 10px 12px;
  color: rgba(95, 70, 54, 0.76);
  background: rgba(255, 244, 224, 0.46);
  border: 1px solid rgba(196, 147, 74, 0.14);
  border-radius: 12px;
  font-weight: 650;
  line-height: 1.6;
}

.hero-card-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.hero-card-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: #5a3a28;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(196, 147, 74, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

/* Thanh chỉ số tin cậy */
.trust-bar {
  padding: 22px 0;
  color: var(--white);
  background: var(--black);
}

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

.trust-grid div {
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(217, 183, 127, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 7vw, 2.35rem);
  line-height: 1;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

/* Lý do chọn dịch vụ tại nhà */
.home-benefits {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 241, 232, 0.82)),
    var(--cream);
}

.benefit-grid {
  display: grid;
  gap: 16px;
}

.benefit-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.benefit-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--black);
  background: #f4dcae;
  border-radius: 50%;
  font-weight: 900;
}

.benefit-card p {
  margin-bottom: 0;
}

/* Giới thiệu */
.intro {
  background: #fffdf9;
}

.split-layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.home-gallery {
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 213, 151, 0.22), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #fffdf9 100%);
}

.home-gallery .section-heading {
  margin-bottom: 24px;
}

.home-service-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  background: var(--deep-brown);
  touch-action: pan-y;
}

.home-gallery .home-service-slider {
  max-width: 980px;
  min-height: 420px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.home-service-slider::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 2;
  width: min(46%, 190px);
  aspect-ratio: 1 / 1;
  background: url("assets/elly-watermark.png") center/contain no-repeat;
  opacity: 0.34;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
  pointer-events: none;
  transform: translateX(-50%);
}

.home-gallery .home-service-slider::after {
  top: 22px;
  right: 22px;
  bottom: auto;
  left: auto;
  z-index: 2;
  width: min(22%, 150px);
  opacity: 0.18;
  transform: none;
}

.home-swipe-hint {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #40200f;
  background: linear-gradient(135deg, #ffe6a8, #d29a42);
  border: 1px solid rgba(255, 244, 214, 0.72);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(38, 23, 17, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms ease, transform 720ms ease;
}

.home-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 11, 7, 0.08) 0%, rgba(20, 11, 7, 0.18) 100%),
    linear-gradient(90deg, rgba(20, 11, 7, 0.2) 0%, rgba(45, 24, 14, 0.08) 70%, rgba(45, 24, 14, 0.02) 100%);
  pointer-events: none;
}

.home-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.home-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

.home-slide:nth-child(2) img {
  object-position: center center;
}

.home-slide:nth-child(3) img {
  object-position: center center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-brown);
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(217, 183, 127, 0.42);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(38, 23, 17, 0.16);
  backdrop-filter: blur(10px);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.slider-btn:hover {
  background: rgba(255, 244, 218, 0.96);
  transform: translateY(-50%) scale(1.06);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  background: rgba(21, 17, 15, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  width: 22px;
  background: var(--champagne);
}

.image-stack > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center bottom;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.mini-card {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  max-width: min(300px, calc(100% - 36px));
  padding: 14px 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 236, 0.82)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 183, 127, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(38, 23, 17, 0.16);
  backdrop-filter: blur(12px);
  animation: miniCardFloat 4.5s ease-in-out infinite;
  pointer-events: none;
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card strong {
  margin-bottom: 6px;
  color: var(--deep-brown);
  font-size: clamp(0.88rem, 3.4vw, 0.98rem);
  line-height: 1.35;
}

.mini-card span {
  color: #6b5b52;
  font-size: 0.84rem;
  line-height: 1.55;
}

@keyframes miniCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.intro-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.intro-points span {
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(38, 23, 17, 0.06);
}

/* Dịch vụ nổi bật */
.services {
  background:
    linear-gradient(180deg, var(--cream), #fffaf4),
    var(--cream);
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(38, 23, 17, 0.16);
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 20px;
}

.service-label {
  position: relative;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, #0f8fdc, #1eb7df 48%, #53d0ef);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(20, 153, 215, 0.24);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-label::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #17b86a, #37d887);
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(17, 157, 93, 0.28);
  font-size: 0.82rem;
  line-height: 1;
  transform: translateY(-50%);
}

.card-body h3 {
  font-size: 1.2rem;
}

.card-body p {
  margin-bottom: 14px;
}

.card-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.card-body li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.text-cta {
  margin-top: auto;
  color: var(--brown);
  font-weight: 900;
}

.text-cta::after {
  content: " ->";
}

/* Trang phun xăm tại nhà */
.service-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    linear-gradient(135deg, rgba(21, 17, 15, 0.9), rgba(75, 45, 31, 0.78)),
    url("assets/hero-beauty-team.png") center 42% / cover no-repeat;
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(21, 17, 15, 0.62));
  pointer-events: none;
}

.service-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: end;
}

.service-page-copy {
  max-width: 760px;
}

.service-page-copy h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 9vw, 4.8rem);
  line-height: 0.98;
}

.service-page-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 3.6vw, 1.12rem);
}

.service-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.service-seo-tags span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.service-hero-actions {
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-top: 24px;
}

.service-hero-panel {
  position: relative;
  overflow: hidden;
  width: min(100%, 360px);
  padding: 16px;
  color: #4b2819;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(135deg, #fff4d5, #d7a14c);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(21, 17, 15, 0.28);
  isolation: isolate;
}

.service-hero-panel span,
.service-hero-panel small {
  display: block;
  font-weight: 900;
}

.service-hero-panel span {
  color: #7a604a;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.service-hero-panel strong {
  display: block;
  margin: 5px 0;
  color: #4b2414;
  font-size: clamp(2.05rem, 8vw, 2.8rem);
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 2px 0 rgba(255, 245, 214, 0.72), 0 14px 24px rgba(75, 36, 20, 0.2);
  animation: pricePulse 1.85s ease-in-out infinite;
}

.service-hero-panel small {
  color: #7a4a2e;
}

.service-page-grid {
  align-items: stretch;
}

.service-page-card img {
  height: 235px;
}

.service-page-card .service-label {
  color: #4b2819;
  background: #f7e7c6;
  box-shadow: none;
}

.service-page-card .service-label::after {
  display: none;
}

.service-page-card .card-body {
  min-height: 360px;
}

.service-seo-section {
  background:
    linear-gradient(180deg, #fffdf9, #fff7ea),
    var(--cream);
}

.service-seo-layout {
  display: grid;
  gap: 20px;
}

.service-seo-copy {
  max-width: 720px;
}

.service-seo-copy h2 {
  font-size: clamp(1.9rem, 8vw, 3.3rem);
}

.service-benefit-grid,
.service-process-grid {
  display: grid;
  gap: 12px;
}

.service-benefit-item,
.service-process-step {
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 147, 74, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(38, 23, 17, 0.08);
}

.service-benefit-item strong,
.service-benefit-item span,
.service-process-step span,
.service-process-step h3,
.service-process-step p {
  display: block;
}

.service-benefit-item strong {
  margin-bottom: 6px;
  color: var(--deep-brown);
  font-size: 1.05rem;
}

.service-benefit-item span,
.service-process-step p {
  color: var(--muted);
}

.service-process {
  background: #fffaf4;
}

.service-process-step span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #4b2819;
  background: #f7e7c6;
  border-radius: 999px;
  font-weight: 950;
}

.service-process-step h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.service-page-cta {
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 183, 127, 0.22), transparent 34%),
    linear-gradient(135deg, #4b2819, #7a4a2e);
}

/* Hero trang tư vấn */
.guide-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    linear-gradient(135deg, rgba(21, 17, 15, 0.94), rgba(84, 52, 36, 0.82)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.guide-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(21, 17, 15, 0.52));
  pointer-events: none;
}

.guide-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.guide-hero h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.1rem, 9vw, 4.4rem);
}

.guide-subtitle {
  max-width: 680px;
  margin: -6px auto 16px;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 4.4vw, 1.55rem);
  font-weight: 900;
  line-height: 1.25;
}

.guide-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.guide-hero .hero-actions {
  justify-content: center;
  margin: 26px auto 0;
}

/* Hướng dẫn chọn màu môi và dáng mày */
.guide-section {
  background:
    linear-gradient(180deg, #fffaf4, var(--cream)),
    var(--cream);
}

.guide-wrap {
  display: grid;
  gap: 22px;
}

.guide-card {
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 147, 74, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.guide-media img {
  height: 250px;
  object-fit: cover;
}

.guide-content {
  padding: 22px;
}

.guide-content h2 {
  font-size: clamp(1.75rem, 7vw, 2.75rem);
}

.guide-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.guide-content li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.guide-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

/* Danh sách mẫu môi và mày */
.sample-catalog {
  background:
    linear-gradient(180deg, #fffdf9, #fff7ea),
    var(--cream);
}

.sample-catalog-brow {
  background:
    linear-gradient(180deg, #fff7ea, #fffdf9),
    var(--cream);
}

.sample-heading {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

.sample-heading h2 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.02;
}

.sample-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.sample-grid {
  display: grid;
  gap: 14px;
}

.sample-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 9px;
  padding: 0 0 16px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(196, 147, 74, 0.2);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(38, 23, 17, 0.08);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sample-card:hover,
.sample-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 147, 74, 0.42);
  box-shadow: 0 22px 44px rgba(38, 23, 17, 0.13);
}

.sample-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.sample-card span,
.sample-card strong,
.sample-card small {
  margin-left: 14px;
  margin-right: 14px;
}

.sample-card span {
  width: fit-content;
  margin-top: 4px;
  padding: 6px 10px;
  color: #6d432d;
  background: #f7e7c6;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.sample-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.28;
}

.sample-card small {
  color: var(--brown);
  font-weight: 900;
}

.sample-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 183, 127, 0.24), transparent 34%),
    linear-gradient(135deg, #4b2819, #7a4a2e);
  border: 1px solid rgba(217, 183, 127, 0.32);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

.sample-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 7vw, 3rem);
}

.sample-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.sample-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.sample-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sample-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 15, 0.72);
  backdrop-filter: blur(8px);
}

.sample-lightbox-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100svh - 26px);
  overflow: auto;
  color: var(--black);
  background: #fffaf4;
  border: 1px solid rgba(246, 219, 162, 0.34);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(21, 17, 15, 0.34);
}

.sample-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  color: #1d1511;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(38, 23, 17, 0.12);
  border-radius: 999px;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.sample-lightbox-card img {
  width: 100%;
  max-height: 58svh;
  object-fit: contain;
  background: #1d1511;
}

.sample-lightbox-content {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.sample-lightbox-content span {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-lightbox-content h2 {
  margin: 0;
  font-size: clamp(1.7rem, 7vw, 2.7rem);
}

.sample-lightbox-content p {
  margin: 0;
}

body.sample-lightbox-open {
  overflow: hidden;
}

body.sample-lightbox-open .floating-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

/* Khu vực phục vụ */
.service-area {
  padding: 34px 0;
  background: var(--black);
}

.service-area-card {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--deep-brown);
  border: 1px solid rgba(217, 183, 127, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.service-area-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-area-card h2 {
  margin-bottom: 12px;
}

/* Bảng giá khuyến mãi */
.pricing {
  background: #fffdf9;
}

.pricing-grid {
  display: grid;
  gap: 16px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(196, 147, 74, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--champagne), var(--brown));
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  color: #fffaf0;
  background: linear-gradient(135deg, #8f4d2e, #c4934a);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(143, 77, 46, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-card h3 {
  min-height: 0;
  margin-bottom: 0;
  font-size: 1.18rem;
  font-weight: 900;
}

.pricing-media {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(109, 67, 45, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 246, 230, 0.94), rgba(244, 219, 178, 0.72)),
    radial-gradient(circle at 28% 20%, rgba(196, 147, 74, 0.2), transparent 36%);
  border: 1px solid rgba(196, 147, 74, 0.26);
  border-radius: 14px;
}

.pricing-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(21, 17, 15, 0.42)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.pricing-media img,
.pricing-media video {
  width: 100%;
  height: 100%;
  min-height: 168px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.pricing-carousel {
  cursor: grab;
  touch-action: pan-x pan-y;
}

.pricing-carousel:active {
  cursor: grabbing;
}

.pricing-carousel::after {
  content: "Vuốt để xem";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 6px 9px;
  color: #1d1511;
  background: rgba(255, 231, 173, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(38, 23, 17, 0.14);
  font-size: 0.68rem;
  font-weight: 900;
  pointer-events: none;
}

.pricing-track {
  width: 100%;
  height: 100%;
  min-height: 168px;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.pricing-track::-webkit-scrollbar {
  display: none;
}

.pricing-track.is-swiping {
  scroll-behavior: auto;
}

.pricing-track img {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(244, 219, 178, 0.62)),
    #fffaf4;
  transform: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.pricing-card:hover .pricing-media img,
.pricing-card:hover .pricing-media video {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.06);
}

.pricing-card:hover .pricing-track img {
  transform: none;
}

.seo-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.seo-video-card,
.seo-advice-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 147, 74, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.seo-video-card h3,
.seo-advice-card h3 {
  margin: 14px 0 7px;
  color: var(--deep-brown);
  font-size: 1.08rem;
  line-height: 1.25;
}

.seo-video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.seo-video-card .pricing-media {
  min-height: 260px;
  padding: 5px;
  background:
    linear-gradient(#fffaf4, #fffaf4) padding-box,
    linear-gradient(135deg, rgba(255, 238, 184, 0.98), rgba(196, 147, 74, 0.82), rgba(116, 75, 50, 0.36)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow:
    0 18px 34px rgba(38, 23, 17, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    0 0 26px rgba(217, 183, 127, 0.2);
  transition: box-shadow 220ms ease, filter 220ms ease;
}

.seo-video-card .pricing-media::before {
  inset: 5px;
  border-radius: 13px;
  background:
    linear-gradient(180deg, transparent 58%, rgba(21, 17, 15, 0.32)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.seo-video-card .pricing-media::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(196, 147, 74, 0.22) inset;
  pointer-events: none;
}

.seo-video-card .pricing-media video {
  min-height: 260px;
  border-radius: 13px;
  transform: none;
  transition: filter 220ms ease;
}

.seo-video-card:hover .pricing-media,
.seo-video-card:focus-within .pricing-media {
  filter: saturate(1.03);
  box-shadow:
    0 20px 38px rgba(38, 23, 17, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.78) inset,
    0 0 34px rgba(217, 183, 127, 0.3);
}

.seo-video-card:hover .pricing-media video,
.seo-video-card:focus-within .pricing-media video {
  filter: saturate(1.05) contrast(1.03);
  transform: none;
}

.seo-advice-card {
  max-width: 760px;
  margin: 22px auto 0;
}

.service-seo-page {
  background:
    linear-gradient(180deg, #fffaf4 0%, #fffdf8 54%, var(--cream) 100%),
    var(--cream);
}

.service-seo-wrap {
  max-width: 980px;
}

.service-seo-page .section-heading h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--deep-brown);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 0.98;
}

.service-pain-box {
  max-width: 780px;
  margin: 0 auto 22px;
  padding: 22px;
  color: var(--deep-brown);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 147, 74, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-pain-box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.28rem, 4vw, 1.75rem);
}

.service-pain-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.pricing-media span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 11px;
  color: #1d1511;
  background: rgba(255, 231, 173, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(38, 23, 17, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}

.pricing-dots {
  position: absolute;
  right: 12px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 5px;
  padding: 5px;
  background: rgba(21, 17, 15, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.pricing-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.pricing-dots button.is-active {
  width: 18px;
  background: #ffe1a2;
}

.pricing-desc {
  margin: 0;
  color: rgba(94, 78, 68, 0.9);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.55;
}

.pricing-benefits {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: rgba(94, 78, 68, 0.86);
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-benefits li {
  position: relative;
  padding-left: 18px;
}

.pricing-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(196, 147, 74, 0.12);
}

.price {
  margin-bottom: 4px;
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.old-price {
  width: fit-content;
  margin-bottom: 0;
  padding: 7px 10px;
  color: #6f625b;
  background: #fff6e6;
  border: 1px solid rgba(196, 147, 74, 0.22);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 900;
}

.old-price span {
  margin-right: 5px;
  color: var(--brown);
}

.old-price del {
  color: #8b7b72;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(143, 77, 46, 0.62);
}

.price strong {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 12vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(196, 147, 74, 0.18);
}

/* Quy trình thực hiện */
.process {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 17, 15, 0.96), rgba(84, 52, 36, 0.94)),
    url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.process p {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  gap: 16px;
}

.process-step {
  padding: 22px;
  border: 1px solid rgba(217, 183, 127, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.process-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--black);
  background: var(--champagne);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  color: var(--white);
}

/* Thư viện ảnh */
.gallery {
  background: #fffaf4;
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(21, 17, 15, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  font-weight: 800;
}

/* Đánh giá khách hàng */
.feedback {
  background:
    radial-gradient(circle at top left, rgba(246, 219, 162, 0.42), transparent 38%),
    linear-gradient(180deg, #fffdf9, #fff4e4),
    var(--cream);
}

.feedback-grid {
  display: grid;
  gap: 16px;
}

.feedback-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 0 0 18px;
  padding: 17px 18px;
  color: rgba(255, 250, 243, 0.94);
  background:
    linear-gradient(135deg, rgba(29, 18, 13, 0.98), rgba(121, 74, 48, 0.94));
  border: 1px solid rgba(246, 219, 162, 0.32);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(66, 43, 30, 0.18);
}

.rating-score strong {
  display: block;
  color: #ffe1a2;
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 0.95;
}

.rating-score span {
  display: block;
  max-width: 94px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.rating-copy p {
  margin: 5px 0 0;
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.5;
}

.feedback-highlight .stars {
  margin: 0;
  color: #ffe1a2;
  font-size: 0.98rem;
}

.feedback-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 235, 0.92));
  border: 1px solid rgba(196, 147, 74, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(66, 43, 30, 0.11);
}

.feedback-card::before {
  content: "“";
  position: absolute;
  right: 16px;
  top: -18px;
  color: rgba(196, 147, 74, 0.14);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
}

.feedback-featured {
  background:
    linear-gradient(145deg, rgba(38, 23, 17, 0.96), rgba(111, 67, 45, 0.92));
  border-color: rgba(246, 219, 162, 0.34);
  box-shadow: 0 24px 64px rgba(38, 23, 17, 0.22);
}

.feedback-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.feedback-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #f7e7c6;
  border: 2px solid rgba(255, 231, 173, 0.96);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(196, 147, 74, 0.26);
}

.stars {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 0;
  font-size: 1.05rem;
  text-shadow: 0 8px 18px rgba(196, 147, 74, 0.22);
}

.feedback-card p {
  position: relative;
  z-index: 1;
  color: #4f423c;
  font-weight: 650;
  line-height: 1.65;
}

.feedback-card strong,
.feedback-card span {
  position: relative;
  z-index: 1;
  display: block;
}

.feedback-card strong {
  color: var(--black);
}

.feedback-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.feedback-featured p,
.feedback-featured strong {
  color: rgba(255, 250, 243, 0.94);
}

.feedback-featured span:not(.feedback-avatar) {
  color: rgba(255, 255, 255, 0.68);
}

.feedback-featured .stars {
  color: #ffe1a2;
}

/* Form đặt lịch */
.booking {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 17, 15, 0.94), rgba(78, 47, 33, 0.91)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.booking-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.booking-copy {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.11), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(246, 219, 162, 0.23);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.booking-copy::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(246, 219, 162, 0.22), transparent 66%);
  pointer-events: none;
}

.booking-copy > * {
  position: relative;
  z-index: 1;
}

.booking-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: #1d1511;
  background: linear-gradient(135deg, #ffe7ad, #d39a4b);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(196, 147, 74, 0.24);
}

.booking-copy h2 {
  max-width: 760px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.booking-copy p,
.booking-copy li {
  color: rgba(255, 255, 255, 0.76);
}

.booking-lead {
  max-width: 640px;
  font-weight: 700;
}

.booking-cta-wrap {
  display: grid;
  place-items: center;
}

.booking-cta-card {
  position: relative;
  overflow: hidden;
  width: min(560px, 100%);
  display: grid;
  gap: 12px;
  padding: 24px;
  color: #fffaf1;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(21, 17, 15, 0.88), rgba(88, 52, 34, 0.82)),
    radial-gradient(circle at 80% 18%, rgba(246, 219, 162, 0.24), transparent 34%);
  border: 1px solid rgba(246, 219, 162, 0.34);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(21, 17, 15, 0.28);
}

.booking-cta-card::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 232, 186, 0.28), transparent);
  transform: rotate(12deg);
  animation: ctaShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.booking-cta-card > * {
  position: relative;
  z-index: 1;
}

.booking-cta-kicker {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #20140f;
  background: linear-gradient(135deg, #ffe7ad, #d39a4b);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-cta-card strong {
  max-width: 440px;
  color: #fff6df;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.35rem);
  line-height: 1.02;
}

.booking-cta-card p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.55;
}

.booking-cta-button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #20140f;
  background: linear-gradient(135deg, #ffe7ad, #c8943f);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(196, 147, 74, 0.3);
  font-weight: 950;
}

.booking-seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.booking-seo-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: rgba(255, 250, 243, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(246, 219, 162, 0.2);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
}

.booking-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.booking-info-card {
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 14px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(246, 219, 162, 0.22);
  border-radius: 16px;
}

.booking-info-card small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-info-card strong {
  color: rgba(255, 250, 243, 0.95);
  font-size: 1rem;
  line-height: 1.25;
}

.booking-hotline {
  text-decoration: none;
  background: linear-gradient(135deg, #ffe4a1, #c8943f);
  border-color: rgba(255, 228, 161, 0.5);
  box-shadow: 0 16px 34px rgba(196, 147, 74, 0.28);
}

.booking-hotline small,
.booking-hotline strong {
  color: #20140f;
}

.booking-hotline strong {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
}

.booking-checks {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.booking-checks li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
  line-height: 1.45;
}

.booking-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d1511;
  background: #ffe1a2;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 950;
}

.contact-strip {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(217, 183, 127, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-strip a {
  color: var(--champagne);
  font-weight: 900;
}

.contact-strip span {
  color: rgba(255, 255, 255, 0.74);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  color: var(--black);
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(38, 23, 17, 0.16);
  border-radius: var(--radius);
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 147, 74, 0.16);
}

.day-input-wrap {
  display: grid;
  grid-template-columns: minmax(58px, 1fr) auto minmax(58px, 1fr) auto minmax(58px, 1fr);
  gap: 6px;
  align-items: center;
}

.day-input-wrap input {
  min-width: 0;
  padding: 10px 8px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.day-input-wrap input::placeholder {
  color: rgba(21, 17, 15, 0.56);
  opacity: 1;
}

.day-input-wrap span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #6d432d;
  background: #f7e7c6;
  border: 1px solid rgba(196, 147, 74, 0.24);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.day-input-wrap .date-separator {
  min-height: auto;
  padding: 0;
  color: rgba(109, 67, 45, 0.62);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1.2rem;
}

.day-input-wrap .fixed-year {
  width: 100%;
  min-width: 0;
  color: rgba(21, 17, 15, 0.62);
  background: var(--white);
  border-color: rgba(38, 23, 17, 0.16);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  user-select: none;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  color: #2c2019;
  background: #f7e7c6;
  border: 1px solid rgba(196, 147, 74, 0.26);
  border-radius: var(--radius);
  font-weight: 800;
}

.form-message.is-visible {
  display: block;
}

/* Câu hỏi thường gặp */
.faq {
  background: #fffdf9;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(38, 23, 17, 0.06);
}

.faq-list summary {
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

/* Chân trang */
.site-footer {
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  color: var(--champagne);
}

.site-footer a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--champagne);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 36px;
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

/* Nút liên hệ nổi */
/* Popup kêu gọi đặt lịch */
.booking-popover {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.booking-popover.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-popover-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 15, 0.62);
  backdrop-filter: blur(8px);
}

.booking-popover-card {
  position: relative;
  width: min(480px, 100%);
  max-height: min(720px, calc(100svh - 36px));
  overflow: hidden auto;
  color: var(--black);
  background: #fffaf3;
  border: 1px solid rgba(246, 219, 162, 0.72);
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(21, 17, 15, 0.34);
}

.booking-popover.is-open .booking-popover-card {
  animation: bookingCardIn 360ms ease both;
}

.booking-popover-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  color: var(--black);
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid rgba(38, 23, 17, 0.12);
  border-radius: 999px;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(21, 17, 15, 0.14);
}

.booking-popover-media {
  position: relative;
  min-height: 166px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 62px 22px 22px;
  color: #fff5d7;
  background:
    linear-gradient(145deg, rgba(21, 17, 15, 0.56), rgba(109, 67, 45, 0.38)),
    url("assets/hero-beauty-team.png") center 42% / cover no-repeat;
}

.booking-popover-media > span {
  width: fit-content;
  padding: 6px 11px;
  color: var(--black);
  background: rgba(255, 228, 172, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-popover-media .booking-media-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  filter: drop-shadow(0 10px 20px rgba(21, 17, 15, 0.28)) drop-shadow(0 0 14px rgba(255, 226, 162, 0.24));
  isolation: isolate;
}

.booking-popover-media .booking-media-logo::before {
  content: "";
  position: absolute;
  inset: auto auto 12px -4px;
  width: 138px;
  height: 42px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 232, 173, 0.24), transparent 68%);
  pointer-events: none;
}

.booking-popover-media .booking-media-logo img {
  height: 66px;
  max-width: 190px;
  object-fit: contain;
}

.booking-popover-media .booking-media-logo .brand-name {
  color: #ffe8ad;
  font-size: 2.42rem;
  text-shadow: 0 2px 0 rgba(120, 78, 39, 0.55), 0 12px 26px rgba(0, 0, 0, 0.38);
}

.booking-popover-media .booking-media-logo .brand-sub {
  color: #ffe1a2;
  font-size: 0.82rem;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

.booking-popover-media strong {
  max-width: 340px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 8vw, 2.75rem);
  line-height: 0.98;
  text-shadow: 0 10px 22px rgba(21, 17, 15, 0.32);
}

.booking-popover-content {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.booking-popover-content h2 {
  font-size: clamp(1.48rem, 6vw, 2.05rem);
  line-height: 1.08;
}

.booking-popover-content p {
  margin: 0;
}

.booking-selected-service {
  width: fit-content;
  padding: 8px 12px;
  color: #6d432d;
  background: #f7e7c6;
  border: 1px solid rgba(196, 147, 74, 0.2);
  border-radius: 999px;
  font-weight: 900;
}

.booking-countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booking-countdown div {
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 9px 4px;
  color: var(--white);
  background: linear-gradient(145deg, #1d1511, #7a4a2e);
  border: 1px solid rgba(246, 219, 162, 0.28);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(91, 57, 39, 0.18);
  animation: countdownSoftPulse 2.4s ease-in-out infinite;
}

.booking-countdown div:nth-child(2) {
  animation-delay: 0.15s;
}

.booking-countdown div:nth-child(3) {
  animation-delay: 0.3s;
}

.booking-countdown strong {
  font-size: clamp(1.32rem, 7vw, 2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.booking-countdown span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-popover-actions {
  display: grid;
  gap: 10px;
}

.popup-booking-form {
  display: grid;
  gap: 12px;
}

.popup-form-grid {
  display: grid;
  gap: 10px;
}

.popup-booking-form label {
  display: grid;
  gap: 6px;
  color: rgba(38, 23, 17, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.popup-booking-form input,
.popup-booking-form select,
.popup-booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(38, 23, 17, 0.16);
  border-radius: 12px;
  outline: none;
  font: inherit;
  font-weight: 750;
}

.popup-booking-form textarea {
  min-height: 70px;
  resize: vertical;
  line-height: 1.45;
}

.popup-form-full {
  grid-column: 1 / -1;
}

.popup-booking-form input:focus,
.popup-booking-form select:focus,
.popup-booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 147, 74, 0.16);
}

.popup-submit {
  width: 100%;
  border: 0;
}

.popup-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.popup-form-message {
  display: none;
  padding: 10px 12px;
  color: #5b3927;
  background: #fff6e6;
  border: 1px solid rgba(196, 147, 74, 0.22);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 850;
}

.popup-form-message.is-visible {
  display: block;
}

@keyframes bookingCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes countdownSoftPulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

body.booking-popover-open {
  overflow: hidden;
}

.booking-popover.is-open ~ .floating-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.article-smart-cta {
  margin: 30px 0;
  color: inherit;
}

.article-smart-cta-inner {
  display: grid;
  gap: 10px;
  padding: 0;
}

.article-smart-cta-badge {
  width: fit-content;
  padding: 0;
  color: #8f4050;
  background: transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 900;
}

.article-smart-cta h2 {
  margin: 0;
  color: #7c3947;
  font-size: 1.35rem;
  line-height: 1.25;
}

.article-smart-cta p {
  margin: 0;
  color: #5e4a4f;
}

.article-content .article-smart-cta h2 {
  margin: 0;
  color: #7c3947;
}

.article-content .article-smart-cta p {
  color: #5e4a4f;
}

.article-smart-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.article-smart-price-old {
  color: #9b8b8f;
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: line-through;
}

.article-smart-price strong {
  color: #8f4050;
  font-size: 1.75rem;
  line-height: 1;
  text-shadow: none;
  animation: none;
}

.article-smart-home {
  padding: 0;
  color: #5e4a4f !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 800;
}

.article-smart-button {
  width: fit-content;
  min-width: min(100%, 260px);
  justify-content: center;
}

.floating-actions {
  position: fixed;
  z-index: 60;
  right: 14px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  pointer-events: none;
}

.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #2b1c12;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: linear-gradient(135deg, #f8e7b5, var(--champagne) 54%, #b78136);
  box-shadow: 0 12px 28px rgba(38, 23, 17, 0.2);
  font-size: 0.74rem;
  font-weight: 900;
  pointer-events: auto;
  isolation: isolate;
  animation: floatButtonBreath 3s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 50%;
  background: var(--float-glow, currentColor);
  opacity: 0.16;
  animation: floatGlowPulse 3s ease-in-out infinite;
}

.float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 34px rgba(21, 17, 15, 0.24);
}

.float-btn span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
  line-height: 1;
}

.float-btn svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-btn.call {
  --float-glow: rgba(196, 147, 74, 0.72);
  background: linear-gradient(135deg, #fff1c8, var(--champagne) 54%, #b78136);
  animation-delay: 0.3s;
}

.float-btn.call svg {
  transform: rotate(-10deg);
}

.float-btn.zalo {
  --float-glow: rgba(217, 183, 127, 0.74);
  background: linear-gradient(135deg, #fff6da, #e1c177 54%, #bd8738);
  animation-delay: 0s;
}

.float-btn.messenger {
  --float-glow: rgba(116, 75, 50, 0.56);
  background: linear-gradient(135deg, #f7e2af, #d1a45d 52%, var(--brown));
  font-size: 0.72rem;
  animation-delay: 0.9s;
}

/* Hiệu ứng xuất hiện khi cuộn */

@media (max-width: 759px) {
  body {
    padding-bottom: 96px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(196, 147, 74, 0.28);
    border-radius: 20px;
    background:
      linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(245, 224, 183, 0.92)),
      rgba(255, 250, 244, 0.94);
    box-shadow:
      0 18px 34px rgba(38, 23, 17, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    backdrop-filter: blur(14px);
    pointer-events: auto;
  }

  .float-btn {
    width: 100%;
    height: 50px;
    min-height: 50px;
    border-radius: 14px;
    font-size: 0.78rem;
    box-shadow: 0 8px 18px rgba(38, 23, 17, 0.14);
    animation-duration: 4s;
  }

  .float-btn::before {
    inset: 3px;
    border-radius: inherit;
    opacity: 0.12;
  }

  .float-btn span {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Tối ưu responsive */
@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    max-width: none;
  }

  .trust-grid,
  .benefit-grid,
  .pricing-grid,
  .feedback-grid,
  .gallery-grid,
  .service-benefit-grid,
  .service-process-grid,
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero-actions {
    display: flex;
    max-width: none;
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 96px 0;
  }

  .hero-inner,
  .split-layout,
  .booking-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .service-page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  }

  .service-hero-panel {
    justify-self: end;
  }

  .service-seo-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .hero-inner {
    align-items: end;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-card {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .guide-card-reverse .guide-media {
    order: 2;
  }

  .guide-card-reverse .guide-content {
    order: 1;
  }

  .guide-media img {
    height: 100%;
    min-height: 420px;
  }

  .service-area-card {
    grid-template-columns: 1fr auto;
  }

  .sample-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-step {
    min-height: 270px;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 26px;
  }

  .form-row-full,
  .form-submit,
  .form-message {
    grid-column: 1 / -1;
  }

  .floating-actions {
    right: 18px;
    bottom: 18px;
  }

  .float-btn {
    width: 58px;
    height: 58px;
    min-height: 58px;
  }
}

@media (min-width: 980px) {
  .header-inner {
    min-height: 82px;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    min-height: auto;
    padding: 10px 12px;
    font-size: 0.92rem;
    opacity: 1;
    overflow: visible;
    transform: none;
    animation: none;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    transform: translateY(-1px);
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 82px);
  }

  .hero-inner {
    min-height: calc(100svh - 82px);
    padding: 92px 0 74px;
  }

  .hero-card {
    justify-self: end;
  }

  .trust-grid,
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .sample-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feedback-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 0.8fr;
  }
}

@media (max-width: 760px) {
  .home-gallery {
    padding: 52px 0;
  }

  .home-gallery .section-heading {
    margin-bottom: 18px;
  }

  .home-gallery .section-heading h2 {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.82rem, 8.8vw, 2.42rem);
    line-height: 1.05;
  }

  .home-gallery .section-heading p:not(.eyebrow) {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .home-gallery .home-service-slider {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .home-gallery .home-service-slider::after {
    top: 70px;
    right: 14px;
    width: min(32%, 118px);
    opacity: 0.12;
  }

  .home-swipe-hint {
    top: 14px;
    right: 14px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .home-slide::before {
    background:
      linear-gradient(180deg, rgba(20, 11, 7, 0.04) 0%, rgba(20, 11, 7, 0.16) 100%),
      linear-gradient(90deg, rgba(20, 11, 7, 0.12) 0%, rgba(45, 24, 14, 0.05) 78%, rgba(45, 24, 14, 0.02) 100%);
  }

  .home-gallery .slider-btn {
    display: none;
  }

  .home-benefits {
    padding: 38px 0;
  }

  .guide-hero h1 {
    max-width: 360px;
    font-size: clamp(2.05rem, 10.5vw, 3rem);
    line-height: 1.04;
  }

  .guide-subtitle {
    max-width: 320px;
    margin-top: -8px;
    margin-bottom: 14px;
    font-size: 1.05rem;
  }

  .intro .section-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.04;
  }

  .intro .section-copy p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .home-benefits .section-heading {
    margin-bottom: 18px;
  }

  .home-benefits .section-heading .eyebrow {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .home-benefits .section-heading h2 {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.78rem, 9.2vw, 2.45rem);
    line-height: 1.04;
  }

  .home-benefits .section-heading p:not(.eyebrow) {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .pricing .section-heading h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.45rem);
    line-height: 1.05;
  }

  .pricing {
    padding: 44px 0;
  }

  .pricing .section-heading {
    margin-bottom: 18px;
  }

  .pricing .section-heading p:not(.eyebrow) {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .pricing-grid {
    gap: 12px;
  }

  .pricing-card {
    gap: 7px;
    padding: 12px;
    border-radius: 16px;
  }

  .pricing-card::before {
    height: 4px;
  }

  .pricing-media {
    min-height: 126px;
    border-radius: 12px;
  }

  .pricing-track,
  .pricing-media img,
  .pricing-media video {
    min-height: 126px;
  }

  .pricing-carousel::after {
    top: 8px;
    right: 8px;
    padding: 4px 7px;
    font-size: 0.62rem;
  }

  .pricing-media span {
    left: 8px;
    bottom: 8px;
    padding: 5px 8px;
    font-size: 0.67rem;
  }

  .pricing-dots {
    right: 8px;
    bottom: 10px;
    gap: 4px;
    padding: 4px;
  }

  .pricing-dots button {
    width: 6px;
    height: 6px;
  }

  .pricing-dots button.is-active {
    width: 15px;
  }

  .promo-tag {
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.74rem;
  }

  .pricing-card h3 {
    font-size: 1.08rem;
    line-height: 1.16;
  }

  .pricing-desc {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.84rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .pricing-benefits {
    gap: 4px;
    font-size: 0.8rem;
    line-height: 1.32;
  }

  .pricing-benefits li {
    padding-left: 14px;
  }

  .pricing-benefits li::before {
    top: 0.55em;
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 3px rgba(196, 147, 74, 0.1);
  }

  .old-price {
    padding: 5px 8px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1;
  }

  .price strong {
    font-size: clamp(2.12rem, 10.4vw, 2.7rem);
  }

  .pricing-card h3,
  .pricing-desc,
  .pricing-benefits,
  .old-price,
  .price,
  .pricing-card .btn-card {
    max-width: calc(100% - 74px);
  }

  .pricing-card .btn-card {
    justify-self: start;
    width: 100%;
    min-height: 46px;
    margin-top: 2px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .benefit-grid {
    gap: 10px;
  }

  .benefit-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
  }

  .benefit-card span {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    font-size: 0.88rem;
  }

  .benefit-card h3 {
    margin: 0 0 3px;
    font-size: 1rem;
    line-height: 1.25;
  }

  .benefit-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .benefit-card:nth-child(3) {
    padding-right: 82px;
  }

  .process {
    padding: 38px 0;
  }

  .process .section-heading {
    margin-bottom: 18px;
  }

  .process .section-heading .eyebrow {
    margin-bottom: 8px;
    font-size: 0.88rem;
  }

  .process .section-heading h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.75rem, 8.7vw, 2.35rem);
    line-height: 1.04;
  }

  .process-grid {
    gap: 10px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 11px;
    align-items: center;
    min-height: 0;
    padding: 12px 76px 12px 12px;
    border-radius: 14px;
  }

  .process-step span {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    font-size: 0.86rem;
  }

  .process-step h3 {
    margin: 0 0 3px;
    font-size: 1rem;
    line-height: 1.2;
  }

  .process-step p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .process-step:nth-child(n + 3) {
    padding-right: 104px;
  }

  .booking {
    padding: 32px 0;
    background-position: center top;
  }

  .booking-cta-card {
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
  }

  .booking-cta-kicker {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.7rem;
  }

  .booking-cta-card strong {
    max-width: 310px;
    font-size: clamp(1.75rem, 8.4vw, 2.35rem);
    line-height: 1.04;
  }

  .booking-cta-card p {
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .booking-cta-button {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .booking-form .form-row:nth-child(4),
  .booking-form .form-row-full,
  .booking-form .booking-offer,
  .booking-form .form-submit,
  .booking-form .form-message {
    grid-column: 1 / -1;
  }

  .booking-form .form-row-full,
  .booking-form .booking-offer,
  .booking-form .form-submit,
  .booking-form .form-message {
    max-width: calc(100% - 86px);
  }

  .form-row {
    gap: 5px;
  }

  .form-row label {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .form-row textarea {
    min-height: 74px;
    max-height: 92px;
  }

  .day-input-wrap {
    grid-template-columns: minmax(56px, 1fr) auto minmax(56px, 1fr) auto minmax(58px, 1fr);
    gap: 5px;
  }

  .day-input-wrap input,
  .day-input-wrap span {
    min-height: 42px;
    padding: 8px 6px;
    font-size: 0.82rem;
  }

  .day-input-wrap .date-separator {
    padding: 0;
    font-size: 1rem;
  }

  .day-input-wrap .fixed-year {
    font-size: 0.82rem;
  }

  .feedback {
    padding: 42px 0;
  }

  .feedback .section-heading {
    margin-bottom: 18px;
  }

  .feedback .section-heading .eyebrow {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .feedback .section-heading h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.78rem, 8.8vw, 2.35rem);
    line-height: 1.04;
  }

  .feedback-highlight {
    grid-template-columns: 82px 1fr;
    gap: 12px;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .rating-score strong {
    font-size: 1.85rem;
  }

  .rating-score span {
    max-width: 74px;
    font-size: 0.68rem;
  }

  .rating-copy p {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .feedback-highlight .stars {
    font-size: 0.86rem;
  }

  .feedback-grid {
    gap: 12px;
  }

  .feedback-card {
    padding: 16px;
    border-radius: 16px;
  }

  .feedback-card:not(.feedback-featured) {
    padding-right: 96px;
  }

  .feedback-top {
    margin-bottom: 8px;
  }

  .feedback-avatar {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .stars {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .feedback-card p {
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .feedback-card strong {
    font-size: 0.96rem;
  }

  .feedback-card span {
    font-size: 0.82rem;
  }

  .hero::before {
    inset: 0;
    background-image: url("assets/hero-beauty-team-mobile.jpg");
    background-position: center top;
    background-size: cover;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(21, 17, 15, 0.12), rgba(21, 17, 15, 0.56) 44%, rgba(21, 17, 15, 0.82)),
      linear-gradient(90deg, rgba(21, 17, 15, 0.22), rgba(21, 17, 15, 0.1));
  }

  .hero-inner {
    min-height: calc(100svh - 76px);
    padding-top: 104px;
    padding-bottom: 52px;
  }

  .booking-popover-media {
    min-height: 122px;
    padding: 42px 16px 15px;
    background:
      linear-gradient(145deg, rgba(21, 17, 15, 0.42), rgba(109, 67, 45, 0.28)),
      url("assets/hero-beauty-team-mobile.jpg") center 16% / cover no-repeat;
  }

  .booking-popover-media .booking-media-logo {
    min-height: 36px;
    padding: 0;
  }

  .booking-popover-media .booking-media-logo img {
    height: 54px;
    max-width: 160px;
  }

  .booking-popover-media .booking-media-logo .brand-name {
    font-size: 2.18rem;
  }

  .booking-popover-media .booking-media-logo .brand-sub {
    font-size: 0.74rem;
  }

  .booking-popover-card {
    max-height: calc(100svh - 14px);
    border-radius: 22px;
  }

  .booking-popover-content {
    gap: 9px;
    padding: 14px 16px 14px;
  }

  .booking-popover-content h2 {
    font-size: 1.32rem;
    line-height: 1.08;
  }

  .booking-popover-content > p:not(.eyebrow):not(.booking-selected-service):not(.popup-form-message) {
    display: none;
  }

  .booking-countdown div {
    min-height: 54px;
    padding: 6px 4px;
  }

  .popup-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .popup-booking-form label {
    font-size: 0.76rem;
  }

  .popup-booking-form input,
  .popup-booking-form select,
  .popup-booking-form textarea {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .popup-booking-form textarea {
    min-height: 58px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    gap: 10px;
  }

  .site-header .brand {
    gap: 7px;
    min-width: 190px;
  }

  .site-header .brand::after {
    max-width: 92px;
    font-size: 0.58rem;
    line-height: 1.05;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 72px;
    gap: 6px;
  }

  .site-header .brand {
    flex: 1 1 0;
    gap: 5px;
    min-width: 0;
    max-width: 158px;
  }

  .site-header .brand .brand-logo-img {
    height: 42px;
    max-width: 92px;
  }

  .site-header .brand::after {
    max-width: 58px;
    font-size: 0.43rem;
    line-height: 1.04;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 5px;
  }

  .header-actions .btn {
    width: 106px;
    min-height: 42px;
    justify-content: center;
    padding: 7px 8px;
    font-size: 0.66rem;
    line-height: 1.08;
    text-align: center;
    white-space: normal;
  }

  .menu-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .brand-logo-img {
    height: 38px;
    max-width: 108px;
  }

  .site-header .brand .brand-logo-img {
    height: 36px;
    max-width: 82px;
  }

  .brand-logo-inline {
    height: clamp(48px, 18vw, 72px);
    max-width: 58vw;
  }

  .brand {
    gap: 6px;
    min-width: 118px;
  }

  .site-header .brand {
    gap: 5px;
    max-width: 142px;
    min-width: 0;
  }

  .site-header .brand::after {
    display: inline-block;
    max-width: 54px;
    font-size: 0.4rem;
    line-height: 1.04;
  }

  .brand-name {
    font-size: 1.76rem;
  }

  .brand-sub {
    font-size: 0.78rem;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn {
    width: 92px;
    min-height: 38px;
    padding: 6px 6px;
    font-size: 0.6rem;
    line-height: 1.08;
  }

  .day-input-wrap {
    grid-template-columns: minmax(46px, 1fr) auto minmax(46px, 1fr) auto minmax(54px, 1fr);
    gap: 5px;
  }

  .day-input-wrap input {
    font-size: 0.84rem;
  }

  .day-input-wrap span {
    padding: 0 7px;
    font-size: 0.76rem;
  }

  .day-input-wrap .fixed-year {
    font-size: 0.84rem;
  }

  .menu-toggle {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .mini-card {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 12px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .home-service-slider::after {
    bottom: 50px;
    width: min(48%, 160px);
    opacity: 0.3;
  }

  .btn {
    padding-inline: 16px;
  }

  .hero-badges span,
  .float-btn {
    font-size: 0.68rem;
  }

  .hero-title > span:first-child {
    font-size: clamp(1.25rem, 7vw, 1.55rem);
  }
}

/* Demo save polish: feedback avatars, stronger prices, animated offer card */
.feedback-avatar {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(135deg, #ffe6ad, #8a5236);
  border: 3px solid rgba(255, 236, 184, 0.98);
  box-shadow:
    0 0 0 5px rgba(196, 147, 74, 0.12),
    0 14px 30px rgba(77, 43, 26, 0.22);
}

.feedback-grid .feedback-card:nth-child(1) .feedback-avatar {
  border-color: rgba(255, 232, 186, 0.98);
  box-shadow: 0 0 0 5px rgba(214, 169, 86, 0.16), 0 14px 28px rgba(95, 55, 35, 0.2);
}

.feedback-grid .feedback-card:nth-child(2) .feedback-avatar {
  border-color: rgba(235, 219, 197, 0.98);
  box-shadow: 0 0 0 5px rgba(166, 125, 82, 0.14), 0 14px 28px rgba(74, 49, 36, 0.18);
}

.feedback-grid .feedback-card:nth-child(3) .feedback-avatar {
  border-color: rgba(218, 236, 206, 0.98);
  box-shadow: 0 0 0 5px rgba(103, 147, 92, 0.14), 0 14px 28px rgba(51, 86, 48, 0.16);
}

.feedback-grid .feedback-card:nth-child(4) .feedback-avatar {
  border-color: rgba(237, 226, 210, 0.98);
  box-shadow: 0 0 0 5px rgba(139, 102, 79, 0.13), 0 14px 28px rgba(67, 46, 34, 0.18);
}

.feedback-grid .feedback-card:nth-child(5) .feedback-avatar {
  border-color: rgba(231, 238, 220, 0.98);
  box-shadow: 0 0 0 5px rgba(132, 157, 112, 0.14), 0 14px 28px rgba(73, 94, 61, 0.16);
}

.feedback-grid .feedback-card:nth-child(6) .feedback-avatar {
  border-color: rgba(246, 224, 202, 0.98);
  box-shadow: 0 0 0 5px rgba(183, 135, 91, 0.14), 0 14px 28px rgba(93, 62, 42, 0.18);
}

.price {
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 12px;
  padding: 7px 12px 8px;
  color: #6f3f28;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.84), transparent 28%),
    linear-gradient(135deg, rgba(255, 239, 197, 0.9), rgba(255, 250, 242, 0.68));
  border: 1px solid rgba(196, 147, 74, 0.24);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(122, 74, 46, 0.12);
}

.price strong {
  color: #7d4b32;
  font-size: clamp(3rem, 16vw, 4.25rem);
  line-height: 0.86;
  text-shadow:
    0 2px 0 rgba(255, 238, 198, 0.9),
    0 12px 28px rgba(126, 75, 50, 0.28);
  animation: savedPricePop 2s ease-in-out infinite;
}

.old-price {
  border-color: rgba(196, 147, 74, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.booking-offer {
  border-color: rgba(196, 147, 74, 0.7);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.66), transparent 23%),
    linear-gradient(105deg, #fff1c8 0%, #f3ca72 45%, #d99938 100%);
  box-shadow:
    0 18px 38px rgba(91, 57, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: savedOfferFloat 2.8s ease-in-out infinite;
}

.booking-offer::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -34px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08);
  animation: savedOfferGlow 2.5s ease-in-out infinite;
  pointer-events: none;
}

.booking-offer strong {
  font-size: clamp(1.85rem, 8vw, 2.45rem);
  color: #4a2414;
}

.popup-booking-form select {
  color: var(--black);
  background-color: var(--white);
}

.popup-booking-form select:invalid {
  color: rgba(38, 23, 17, 0.62);
}

@keyframes savedPricePop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.035);
  }
}

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

@keyframes savedOfferGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.06);
  }
}

/* Mobile image framing: keep the full beauty-team watermark/photo visible */
@media (max-width: 760px) {
  .hero::before {
    inset: 0;
    background: url("assets/hero-beauty-team-mobile.jpg") center top / contain no-repeat;
    background-color: #1d1410;
    filter: blur(1.4px) saturate(0.9);
    opacity: 0.38;
    transform: scale(1.01);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(21, 17, 15, 0.18), rgba(21, 17, 15, 0.72) 48%, rgba(21, 17, 15, 0.94)),
      linear-gradient(90deg, rgba(91, 57, 39, 0.52), rgba(21, 17, 15, 0.2)),
      radial-gradient(circle at 50% 18%, rgba(255, 230, 173, 0.16), transparent 40%);
  }

  .booking-popover-media {
    min-height: 162px;
    background:
      linear-gradient(145deg, rgba(21, 17, 15, 0.7), rgba(109, 67, 45, 0.52)),
      url("assets/hero-beauty-team-mobile.jpg") center top / contain no-repeat;
    background-color: #2a1a14;
    background-blend-mode: multiply, normal;
  }
}

@media (max-width: 380px) {
  .booking-popover-media {
    min-height: 148px;
  }
}

/* Full mobile watermark and support card polish */
@media (max-width: 760px) {
  .hero::before {
    inset: -18px -12px -8px;
    background:
      url("assets/hero-beauty-team-mobile.jpg") 58% 4% / auto 92svh no-repeat;
    background-color: #1d1410;
    filter: blur(1.8px) saturate(0.88) contrast(0.96);
    opacity: 0.5;
    transform: scale(1.04);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(21, 17, 15, 0.12), rgba(21, 17, 15, 0.52) 38%, rgba(21, 17, 15, 0.9) 74%, rgba(21, 17, 15, 0.96)),
      linear-gradient(90deg, rgba(67, 42, 31, 0.56), rgba(21, 17, 15, 0.18) 48%, rgba(21, 17, 15, 0.34)),
      radial-gradient(circle at 58% 18%, rgba(255, 229, 174, 0.17), transparent 46%);
  }

  .booking-popover-media {
    background:
      linear-gradient(145deg, rgba(21, 17, 15, 0.66), rgba(109, 67, 45, 0.5)),
      url("assets/hero-beauty-team-mobile.jpg") 58% 8% / cover no-repeat;
    background-color: #2a1a14;
    background-blend-mode: multiply, normal;
  }
}

.home-gallery .home-service-slider::after {
  display: none;
}

.home-slide-support img {
  object-position: center 68%;
}

.home-service-note {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  width: min(54%, 310px);
  padding: 13px 15px 14px;
  color: #2b180f;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.92), rgba(255, 242, 215, 0.78)),
    linear-gradient(135deg, rgba(211, 154, 66, 0.25), rgba(255, 255, 255, 0));
  border: 1px solid rgba(229, 195, 137, 0.72);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(33, 19, 13, 0.24);
  backdrop-filter: blur(12px);
  animation: noteFloat 3.8s ease-in-out infinite;
}

.home-service-note::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.62) 42%, transparent 58% 100%);
  opacity: 0.55;
  pointer-events: none;
  transform: translateX(-70%);
  animation: noteShine 4.2s ease-in-out infinite;
}

.home-service-note strong,
.home-service-note span {
  position: relative;
  z-index: 1;
  display: block;
}

.home-service-note strong {
  margin-bottom: 6px;
  font-size: clamp(0.92rem, 2.8vw, 1.18rem);
  line-height: 1.16;
  font-weight: 900;
}

.home-service-note span {
  color: rgba(73, 45, 31, 0.86);
  font-size: clamp(0.72rem, 2.3vw, 0.94rem);
  line-height: 1.45;
  font-weight: 700;
}

@keyframes noteFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes noteShine {
  0%, 52% {
    transform: translateX(-72%);
  }
  74%, 100% {
    transform: translateX(72%);
  }
}

@media (max-width: 760px) {
  .home-slide-support img {
    object-position: 50% 72%;
  }

  .home-service-note {
    top: 14px;
    left: 14px;
    width: min(62%, 248px);
    padding: 10px 12px 11px;
    border-radius: 15px;
  }
}

@media (max-width: 420px) {
  .home-service-note {
    width: min(68%, 222px);
  }
}

.booking-popover-content .booking-deal-badge {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 10px 15px 10px 34px;
  overflow: hidden;
  color: #3a1f12;
  background:
    radial-gradient(circle at 16px 50%, #ffffff 0 3px, transparent 4px),
    linear-gradient(135deg, #ffe9ad 0%, #e0a84c 58%, #b8792d 100%);
  border: 1px solid rgba(255, 239, 190, 0.86);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(166, 103, 40, 0.28);
  letter-spacing: 0.01em;
  animation: dealBadgePulse 2.4s ease-in-out infinite;
}

.booking-popover-content .booking-deal-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.68) 44%, transparent 62% 100%);
  opacity: 0.66;
  transform: translateX(-90%);
  animation: dealBadgeShine 3.1s ease-in-out infinite;
}

@keyframes dealBadgePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 28px rgba(166, 103, 40, 0.26);
  }
  50% {
    transform: translateY(-2px) scale(1.025);
    box-shadow: 0 16px 34px rgba(196, 147, 74, 0.36);
  }
}

@keyframes dealBadgeShine {
  0%, 48% {
    transform: translateX(-90%);
  }
  72%, 100% {
    transform: translateX(92%);
  }
}

@media (max-width: 768px) {
  .booking-popover {
    align-items: end;
    place-items: end center;
    padding: 0;
  }

  .booking-popover-backdrop {
    background: rgba(21, 17, 15, 0.68);
  }

  .booking-popover-card {
    width: 100%;
    max-height: 90svh;
    border-radius: 22px 22px 0 0;
  }

  .booking-popover.is-open .booking-popover-card {
    animation: bookingBottomSheetIn 300ms ease-out both;
  }

  .article-smart-cta {
    margin: 24px 0;
    border-radius: 8px;
  }

  .article-smart-button {
    width: 100%;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea,
  .popup-booking-form input,
  .popup-booking-form select,
  .popup-booking-form textarea,
  .day-input-wrap input {
    font-size: 16px;
  }
}

@keyframes bookingBottomSheetIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
