/* ===================== style.css (nhung inline) ===================== */
/* =====================================================================
   CẦM ĐỒ TORO — style.css  (v1: Light + Đỏ "uy tín")
   Tone sáng, màu nhấn đỏ tạo tin cậy. Chữ gọn, line-height thoáng,
   border radius nhỏ. Mọi token chỉnh ở :root.
   ===================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Nền sáng */
  --bg: #ffffff;
  --bg-soft: #faf5f5;       /* xám-đỏ rất nhạt */
  --bg-tint: #fceeee;       /* đỏ nhạt cho section xen kẽ */

  /* Màu thương hiệu: ĐỎ (mạnh mẽ, tin cậy) */
  --brand: #d32f2f;
  --brand-700: #a31a1a;
  --brand-600: #c62828;
  --brand-300: #f08c8c;
  --brand-50: #fceaea;
  --brand-100: #f7d4d4;
  --brand-on: #ffffff;      /* chữ trên nền đỏ */

  /* Chữ */
  --text: #241a1b;
  --text-soft: #6a565a;
  --text-mute: #9a868a;

  /* Đường kẻ */
  --line: #efe2e2;
  --line-strong: #e2d2d2;

  /* Nền tối (footer / CTA) */
  --ink: #2a1416;

  /* Bóng đổ (tinh tế, hơi ám đỏ) */
  --shadow: 0 8px 24px -14px rgba(74, 20, 20, 0.18);
  --shadow-md: 0 14px 36px -18px rgba(74, 20, 20, 0.22);
  --shadow-lg: 0 22px 48px -24px rgba(74, 20, 20, 0.26);

  /* Bo góc (nhỏ, tinh gọn) */
  --r-sm: 6px;
  --r-md: 9px;
  --r-lg: 12px;
  --r-btn: 8px;

  /* Bố cục */
  --container: 1180px;
  --gutter: clamp(18px, 4vw, 36px);
  --section-y: clamp(56px, 7vw, 100px);

  /* Chuyển động */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);

  /* Font */
  --font-display: 'Lexend', 'Be Vietnam Pro', system-ui, sans-serif;
  --font-body: 'Be Vietnam Pro', system-ui, sans-serif;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; text-wrap: balance; }

.text-brand { color: var(--brand); }
.ico { width: 1.1em; height: 1.1em; flex: none; }
.ico--brand { color: var(--brand); }

.hero__stats dt, .calc__out, .calc__result-row strong, .calc__terms strong { font-variant-numeric: tabular-nums; }
.section__lead, .hero__sub, .service p, .why__item p, .step__body p, .about__copy p { text-wrap: pretty; }

.skip-link { position: fixed; left: 14px; top: -80px; z-index: 100; background: var(--brand); color: #fff; font-weight: 600; padding: 0.6rem 1rem; border-radius: 0 0 8px 8px; transition: top 0.3s var(--ease); }
.skip-link:focus { top: 0; }

/* Grain bỏ trên theme sáng để giữ độ sạch; giữ class vô hại */
.grain { display: none; }

/* ---------- 3. EYEBROW + SECTION HEAD ---------- */
.eyebrow {
  display: inline-block; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-700);
  padding: 0.32rem 0.7rem; border-radius: var(--r-sm); background: var(--brand-50);
}
.eyebrow--light { color: #fbd9d9; background: rgba(255, 255, 255, 0.1); }

.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }

.section__head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 52px); }
.section__title { font-size: clamp(1.45rem, 2.8vw, 2.05rem); margin-top: 0.7rem; line-height: 1.22; }
.section__lead { color: var(--text-soft); font-size: 1rem; margin-top: 0.7rem; max-width: 62ch; }

/* ---------- 4. BUTTONS (gọn, radius nhỏ, không pill) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.96rem;
  padding: 0.72rem 1.15rem; border-radius: var(--r-btn); border: 1px solid transparent; line-height: 1.1;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn__ico { display: inline-flex; }
.btn__ico svg { width: 1.05rem; height: 1.05rem; stroke-width: 2; }
.btn:hover .btn__ico svg { transform: translateX(2px); transition: transform 0.25s var(--ease); }

.btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn--brand:hover { background: var(--brand-700); box-shadow: var(--shadow-md); }
.btn--ghost { background: #fff; color: var(--brand-700); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--ghost-light { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.22); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); }
.btn--lg { padding: 0.85rem 1.4rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

.link-brand { color: var(--brand); font-weight: 600; }
.link-brand:hover { color: var(--brand-700); text-decoration: underline; }

/* ---------- 5. TOP BAR ---------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; flex-wrap: wrap; }
.topbar__addr { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar__addr .ico { color: var(--brand-300); }
.topbar__lines { display: inline-flex; align-items: center; gap: 0.7rem; }
.topbar__tel { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; color: #fff; transition: color 0.25s var(--ease); }
.topbar__tel .ico { color: var(--brand-300); }
.topbar__tel:hover { color: var(--brand-300); }
.topbar__sep { width: 1px; height: 13px; background: rgba(255, 255, 255, 0.2); }

/* ---------- 6. HEADER STICKY ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line); transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 20px -14px rgba(74, 20, 20, 0.3); }
.site-header__inner { display: flex; align-items: center; gap: 1.1rem; min-height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__badge {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  color: #fff; background: var(--brand); padding: 0.34rem 0.55rem; border-radius: var(--r-sm);
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__txt strong { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; color: var(--text); }
.brand__txt em { font-style: normal; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 0.15rem; }
.nav__link { padding: 0.45rem 0.7rem; border-radius: var(--r-sm); font-weight: 500; font-size: 0.92rem; color: var(--text-soft); transition: color 0.25s var(--ease), background 0.25s var(--ease); }
.nav__link:hover { color: var(--text); background: var(--bg-soft); }
.nav__link.is-active { color: var(--brand); }
.header__cta { margin-left: 0.3rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--line-strong); position: relative; margin-left: auto; }
.nav-toggle__bar { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle__bar:nth-child(1) { top: 17px; }
.nav-toggle__bar:nth-child(2) { bottom: 17px; }
body.menu-open .nav-toggle__bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav-toggle__bar:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- 7. MOBILE MENU ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 39; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease); }
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu__inner { display: flex; flex-direction: column; gap: 0.2rem; text-align: center; width: min(86vw, 380px); }
.mobile-menu__link { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--text); padding: 0.6rem; border-radius: var(--r-sm); opacity: 0; transform: translateY(14px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.25s var(--ease); }
.mobile-menu__link:hover { color: var(--brand); }
body.menu-open .mobile-menu__link { opacity: 1; transform: none; }
body.menu-open .mobile-menu__link:nth-child(1) { transition-delay: 0.06s; }
body.menu-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
body.menu-open .mobile-menu__link:nth-child(3) { transition-delay: 0.14s; }
body.menu-open .mobile-menu__link:nth-child(4) { transition-delay: 0.18s; }
body.menu-open .mobile-menu__link:nth-child(5) { transition-delay: 0.22s; }
body.menu-open .mobile-menu__link:nth-child(6) { transition-delay: 0.26s; }
.mobile-menu__tels { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }

/* ---------- 8. HERO (light) ---------- */
.hero { position: relative; background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%); overflow: hidden; padding-block: clamp(36px, 5vw, 60px) 0; }
.hero__glow { position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 640px; max-height: 640px; background: radial-gradient(circle, rgba(211, 47, 47, 0.12), transparent 62%); pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; padding-bottom: clamp(40px, 5vw, 72px); }
.hero__title { font-size: clamp(2rem, 4.4vw, 3.15rem); line-height: 1.12; margin: 0.8rem 0 0.9rem; letter-spacing: -0.02em; }
.hero__sub { font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--text-soft); max-width: 48ch; }
.hero__sub strong { color: var(--text); font-weight: 700; }
.hero__points { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin: 1.2rem 0 1.6rem; }
.hero__points li { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 500; color: var(--text); font-size: 0.94rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero__stats { display: flex; gap: clamp(1rem, 3vw, 2.4rem); margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.hero__stats dt { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--brand); display: flex; align-items: baseline; gap: 0.2rem; }
.hero__stats dt span { font-size: 0.78rem; color: var(--text-mute); font-family: var(--font-body); font-weight: 500; }
.hero__stats dd { font-size: 0.8rem; color: var(--text-mute); margin-top: 0.1rem; }

/* Cụm visual hero (light card) */
.hero__visual { position: relative; min-height: 380px; }
.float-card { position: absolute; width: 200px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.float-card .bezel__core { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.float-card .asset { width: 48px; height: 48px; color: var(--brand); stroke-width: 1.6; }
.asset__tag { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--text); }
.float-card--a { top: 4%; left: 0; z-index: 3; }
.float-card--b { top: 38%; right: 2%; z-index: 2; }
.float-card--c { bottom: 4%; left: 14%; z-index: 1; }
.hero__badge { position: absolute; top: 2%; right: 8%; width: 120px; z-index: 4; background: var(--brand); border: none; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.hero__badge-core { padding: 0.85rem 0.95rem; display: flex; flex-direction: column; color: #fff; text-align: center; }
.hero__badge-core strong { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.1; }
.hero__badge-core span { font-size: 0.74rem; opacity: 0.9; }

.trustbar { position: relative; border-top: 1px solid var(--line); background: #fff; }
.trustbar__inner { display: flex; flex-wrap: wrap; gap: 0.6rem 1.8rem; justify-content: center; padding-block: 0.85rem; font-size: 0.82rem; color: var(--text-soft); }
.trustbar__inner span { white-space: nowrap; }
.trustbar__inner span::first-letter { color: var(--brand); }

/* ---------- 8b. ẢNH ACCENT (hero + về chúng tôi) ---------- */
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--bg-tint); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__visual { min-height: 0; }
.hero__photo { position: relative; width: 100%; aspect-ratio: 4 / 3.3; }
.hero__badge { position: absolute; left: -12px; bottom: -12px; top: auto; right: auto; width: auto; background: var(--brand); border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.hero__badge-core { padding: 0.7rem 0.95rem; }
.about__photo { aspect-ratio: 4 / 3.3; }
.about__photo-tag { position: absolute; left: 12px; bottom: 12px; z-index: 2; background: rgba(255, 255, 255, 0.92); color: var(--brand-700); font-weight: 600; font-size: 0.8rem; padding: 0.38rem 0.66rem; border-radius: var(--r-sm); backdrop-filter: blur(6px); }

/* ---------- 9. SERVICES ---------- */
.services { background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.service { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.3rem 1.2rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.service__ico { width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: 0.85rem; background: var(--brand-50); color: var(--brand); }
.service__ico svg { width: 26px; height: 26px; stroke-width: 1.7; }
.service h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.35; }
.service p { color: var(--text-soft); font-size: 0.88rem; margin-top: 0.3rem; }
.service--cta { background: var(--brand); border-color: transparent; display: grid; align-items: center; }
.service--cta h3 { color: #fff; }
.service--cta p { color: rgba(255, 255, 255, 0.82); }
.service--cta .link-brand { color: #fff; margin-top: 0.6rem; display: inline-block; }

/* ---------- 10. CONSULT FORM (compact) ---------- */
.consult__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.consult__assure { margin-top: 1.2rem; display: grid; gap: 0.5rem; }
.consult__assure li { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); font-weight: 500; font-size: 0.94rem; }
.consult__formwrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.consult__form { padding: clamp(1.2rem, 2.4vw, 1.7rem); }
.form__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); margin-bottom: 0.9rem; }

.field { margin-bottom: 0.7rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.field label span { color: var(--brand); }
.field input, .field select, .field textarea { width: 100%; background: var(--bg-soft); border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 0.62rem 0.8rem; color: var(--text); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-50); }
.field textarea { resize: vertical; min-height: 62px; }
.field.has-error input, .field.has-error select { border-color: #d64545; box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.1); }
.field__err { display: block; color: #d64545; font-size: 0.76rem; margin-top: 0.25rem; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem; }
.select-wrap__chev { position: absolute; right: 0.85rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--brand); pointer-events: none; }

.form__note { font-size: 0.76rem; color: var(--text-mute); margin-top: 0.6rem; text-align: center; }
.form__success { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.8rem; padding: 0.8rem 0.9rem; background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--r-md); color: var(--brand-700); }
.form__success svg { width: 1.4rem; height: 1.4rem; flex: none; color: var(--brand); stroke-width: 2.4; }
.form__success strong { display: block; font-family: var(--font-body); }
.form__success span { font-size: 0.84rem; opacity: 0.85; }

/* ---------- 11. CALC ---------- */
.calc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.calc__terms { margin-top: 1.3rem; display: grid; gap: 0.5rem; }
.calc__terms li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0.95rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); font-size: 0.92rem; }
.calc__terms span { color: var(--text-soft); }
.calc__terms strong { font-family: var(--font-body); color: var(--text); text-align: right; }
.calc__panelwrap { background: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.calc__panel { padding: clamp(1.2rem, 2.4vw, 1.7rem); color: #fff; }
.calc__panel .field label { color: rgba(255, 255, 255, 0.9); }
.calc__panel .field input, .calc__panel .field select { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); color: #fff; }
.calc__panel .select-wrap__chev { color: var(--brand-300); }
.calc__out { display: block; font-family: var(--font-display); font-size: 1.45rem; color: var(--brand-300); margin-top: 0.4rem; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 999px; background: linear-gradient(90deg, var(--brand-300) var(--p, 18%), rgba(255, 255, 255, 0.16) var(--p, 18%)); padding: 0; margin: 0.4rem 0; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-300); border: 3px solid var(--ink); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--brand-300); border: 3px solid var(--ink); cursor: pointer; }

.chip-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.chip { padding: 0.42rem 0.9rem; border-radius: var(--r-sm); border: 1px solid rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.7); font-weight: 600; font-size: 0.9rem; transition: all 0.25s var(--ease); }
.chip:hover { border-color: var(--brand-300); color: #fff; }
.chip.is-active { background: var(--brand); color: #fff; border-color: transparent; }

.calc__result { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.calc__result-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.3rem 0; }
.calc__result-row span { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }
.calc__result-row strong { font-family: var(--font-display); font-size: 1.05rem; }
.calc__result-row--total strong { font-size: 1.5rem; color: var(--brand-300); }
.calc__disclaimer { font-size: 0.76rem; color: rgba(255, 255, 255, 0.55); margin-top: 0.8rem; }
.calc__disclaimer a { color: var(--brand-300); }

/* ---------- 12. ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.about__media { position: relative; }
.about__card { background: var(--brand); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.about__card-core { aspect-ratio: 4 / 3.2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; }
.about__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4rem); color: #fff; letter-spacing: 0.02em; }
.about__card-core p { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; }
.about__chips { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; margin-top: 0.8rem; }
.pill { display: inline-block; font-size: 0.76rem; font-weight: 600; padding: 0.32rem 0.7rem; border-radius: var(--r-sm); background: var(--brand-50); color: var(--brand-700); }
.about__copy p { color: var(--text-soft); margin-top: 0.8rem; }
.about__copy p strong { color: var(--text); }
.about__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1.5rem; }
.about__list li { padding-left: 0.9rem; border-left: 2px solid var(--brand); }
.about__list strong { font-family: var(--font-display); color: var(--brand-700); font-size: 1rem; }
.about__list span { display: block; color: var(--text-soft); font-size: 0.88rem; margin-top: 0.1rem; }

/* ---------- 13. WHY ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.why__item { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.3rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.why__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.why__ico { width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--brand-50); color: var(--brand); margin-bottom: 0.8rem; }
.why__ico svg { width: 24px; height: 24px; }
.why__item h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; }
.why__item p { color: var(--text-soft); font-size: 0.89rem; margin-top: 0.3rem; }

.why__pledge { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 1.4rem; }
.pledge { background: var(--ink); border-radius: var(--r-md); }
.pledge__core { padding: 1.1rem; text-align: center; }
.pledge__no { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--brand-300); }
.pledge__core strong { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: 0.9rem; }

/* ---------- 14. PROCESS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.step { position: relative; padding: 1.4rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--brand); border-radius: var(--r-lg) var(--r-lg) 0 0; transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.step:hover::before { transform: scaleX(1); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--brand); display: block; line-height: 1; margin-bottom: 0.6rem; }
.step__body h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.step__body p { color: var(--text-soft); font-size: 0.89rem; margin-top: 0.3rem; }

/* ---------- 15. FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.faq__head { position: sticky; top: 96px; }
.faq__list { display: grid; gap: 0.6rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.faq__item.is-open { border-color: var(--brand-100); box-shadow: var(--shadow); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 0.95rem 1.1rem; font-weight: 600; font-size: 0.96rem; }
.faq__icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform 0.35s var(--ease); }
.faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p { padding: 0 1.1rem 1.05rem; color: var(--text-soft); font-size: 0.93rem; }

/* ---------- 16. FINAL CTA (teal block) ---------- */
.finalcta { position: relative; background: var(--brand); color: #fff; overflow: hidden; padding-block: clamp(48px, 6vw, 80px); text-align: center; }
.finalcta__glow { position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%); pointer-events: none; }
.finalcta__inner { position: relative; max-width: 680px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.finalcta__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin: 0.6rem 0 0.4rem; line-height: 1.18; }
.finalcta .text-brand { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.45); text-underline-offset: 4px; }
.finalcta__inner > p { color: rgba(255, 255, 255, 0.85); font-size: 1.02rem; }
.finalcta__btns { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.3rem; }
.finalcta .btn--brand { background: #fff; color: var(--brand-700); }
.finalcta .btn--brand:hover { background: #fff1f1; }

/* ---------- 17. FOOTER ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.66); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: clamp(1.4rem, 4vw, 2.6rem); padding-block: clamp(2.6rem, 5vw, 4rem); }
.brand--footer .brand__txt strong { color: #fff; }
.footer__brand > p { margin-top: 0.9rem; max-width: 38ch; font-size: 0.9rem; }
.footer__pills { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.9rem; }
.footer__pills .pill { background: rgba(255, 255, 255, 0.08); color: #f6d3d3; }
.footer__col h4 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 0.92rem; margin-bottom: 0.8rem; }
.footer__col ul { display: grid; gap: 0.5rem; }
.footer__col a { font-size: 0.9rem; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--brand-300); }
.footer__contact a { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__contact .ico { color: var(--brand-300); }
/* Địa chỉ: không bọc trong <a> nên cần tự dựng layout icon + chữ cùng hàng (flex-start để khi địa chỉ dài xuống dòng, ghim vẫn thẳng dòng đầu). */
.footer__addr { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer__addr .ico { margin-top: 0.15em; }
.footer__map { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; height: 120px; border: 1px dashed rgba(255, 255, 255, 0.18); border-radius: var(--r-md); color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }
.footer__map svg { width: 1.6rem; height: 1.6rem; color: var(--brand-300); }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.1rem; font-size: 0.82rem; }
.footer__credit { color: var(--brand-300); }

/* ---------- 18. FLOATING ACTIONS ---------- */
.floats { position: fixed; right: clamp(12px, 3vw, 22px); bottom: clamp(14px, 4vw, 26px); z-index: 45; display: flex; flex-direction: column; gap: 0.55rem; }
.float { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); position: relative; transition: transform 0.25s var(--ease); font-weight: 700; font-size: 0.78rem; }
.float:hover { transform: translateY(-2px) scale(1.04); }
.float svg { width: 24px; height: 24px; stroke-width: 2; }
.float--call { background: var(--brand); }
.float--zalo { background: #0068ff; }
.float--mess { background: linear-gradient(180deg, #a44bff, #0084ff); }
.float--mess svg { fill: #fff; stroke: none; }
.float__ping { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--brand); animation: ping 2.4s var(--ease) infinite; pointer-events: none; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }

/* Nút nổi: Gọi & Zalo bung danh sách 2 số khi hover/chạm */
.float-multi { position: relative; display: flex; }
.float-multi > .float { width: 50px; padding: 0; }
.float-multi__list { position: absolute; top: 50%; right: 100%; padding-right: 0.55rem; transform: translateY(-50%) translateX(10px); display: flex; flex-direction: column; align-items: flex-end; gap: 0.45rem; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); }
.float-multi:hover .float-multi__list, .float-multi:focus-within .float-multi__list, .float-multi.is-open .float-multi__list { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(-50%) translateX(0); }
.float-pill { display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; background: #fff; color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; letter-spacing: -0.01em; padding: 0.52rem 0.9rem; border-radius: 999px; border: 1px solid var(--line); box-shadow: 0 0 0 1px rgba(74, 20, 20, 0.05), 0 10px 24px -6px rgba(74, 20, 20, 0.32), 0 3px 8px -3px rgba(74, 20, 20, 0.22); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.float-pill:hover { box-shadow: 0 0 0 1px rgba(74, 20, 20, 0.08), 0 14px 30px -8px rgba(74, 20, 20, 0.36), 0 4px 10px -3px rgba(74, 20, 20, 0.24); }
.float-pill:hover { transform: translateX(-3px); }
.float-pill svg { width: 1.05rem; height: 1.05rem; flex: none; stroke: currentColor; fill: none; stroke-width: 2; color: var(--brand); }
.float-pill--zalo b { color: #0068ff; }
.float-pill--mess svg { fill: #0084ff; stroke: none; }

/* ---------- 19. REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why__pledge { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 320px; margin-top: 0.5rem; }
}
@media (max-width: 820px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: block; }
  .consult__grid, .calc__grid, .about__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}
@media (max-width: 540px) {
  body { font-size: 15px; }
  .topbar__addr { display: none; }
  .topbar__inner { justify-content: center; }
  .services__grid, .why__grid, .steps, .why__pledge, .about__list, .field-row { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { flex-wrap: wrap; gap: 1rem 1.6rem; }
  .hero__cta .btn, .finalcta__btns .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar-inner { justify-content: center; text-align: center; }
}
@media (max-width: 360px) { :root { --gutter: 15px; } .hero__title { font-size: 1.85rem; } }

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

  /* ===================== v2.css (nhung inline) ===================== */
/* =====================================================================
   v2.css — bổ sung các thành phần DÙNG HÌNH ẢNH cho trang v2.
   Nạp SAU style.css (kế thừa toàn bộ token màu/teal/spacing của v1).
   ===================================================================== */

img.ph { background: var(--bg-tint); }   /* nền chờ khi ảnh chưa tải */

/* ---------- Hero có ảnh nền ---------- */
.hero-img { position: relative; display: flex; align-items: center; min-height: clamp(440px, 72vh, 620px); color: #fff; overflow: hidden; background: var(--ink); }
.hero-img__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(42, 20, 22, 0.94) 0%, rgba(42, 20, 22, 0.74) 44%, rgba(42, 20, 22, 0.32) 100%); }
.hero-img__inner { position: relative; z-index: 2; max-width: 600px; padding-block: clamp(40px, 8vw, 84px); }
.hero-img .hero__title { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.14; margin: 0.8rem 0 0.9rem; }
.hero-img .hero__sub { color: rgba(255, 255, 255, 0.86); max-width: 46ch; }
.hero-img .hero__sub strong { color: #fff; }
.hero-img .eyebrow { background: rgba(255, 255, 255, 0.12); color: #fbd9d9; }
.hero-img__points { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin: 1.2rem 0 1.6rem; }
.hero-img__points li { display: inline-flex; align-items: center; gap: 0.45rem; color: #fff; font-weight: 500; font-size: 0.94rem; }
.hero-img__points .ico { color: var(--brand-300); }
.hero-img__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-img .btn--ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.hero-img .btn--ghost:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

/* ---------- Dải con số tin cậy (full-bleed, nền teal) ---------- */
.stats-band { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%); color: #fff; padding-block: clamp(40px, 5.5vw, 64px); }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 0.35rem; padding-inline: 0.5rem; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.16); }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1; color: #fff; }
.stat b small { font-size: 0.42em; font-weight: 500; opacity: 0.82; margin-left: 0.15em; }
.stat span { font-size: 0.94rem; color: rgba(255, 255, 255, 0.85); line-height: 1.35; }
@media (max-width: 720px) {
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .stat:nth-child(odd) { border-left: none; }
}
@media (max-width: 380px) {
  .stats-band__grid { grid-template-columns: 1fr; }
  .stat { border-left: none; }
  .stat + .stat { border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 1.4rem; }
}

/* ---------- About có ảnh ---------- */
.about-img__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3.4; background: var(--bg-tint); }
.about-img__media img { width: 100%; height: 100%; object-fit: cover; }
.about-img__tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; background: rgba(255, 255, 255, 0.92); color: var(--brand-700); font-weight: 600; font-size: 0.82rem; padding: 0.4rem 0.7rem; border-radius: var(--r-sm); backdrop-filter: blur(6px); }

/* ---------- CTA cuối có ảnh nền ---------- */
.cta-img { position: relative; overflow: hidden; color: #fff; text-align: center; padding-block: clamp(56px, 7vw, 96px); background: var(--ink); }
.cta-img__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(211, 47, 47, 0.92), rgba(163, 26, 26, 0.94)); }
.cta-img__inner { position: relative; z-index: 2; max-width: 680px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.cta-img .finalcta__title { color: #fff; }
.cta-img__inner > p { color: rgba(255, 255, 255, 0.88); font-size: 1.02rem; }
.cta-img__btns { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.3rem; }
.cta-img .btn--brand { background: #fff; color: var(--brand-700); }
.cta-img .btn--brand:hover { background: #fff1f1; }
.cta-img .btn--ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.3); }

@media (max-width: 540px) { .hero-img__cta .btn { width: 100%; justify-content: center; } }

/* ============ v2: trang đơn (bỏ menu) ============ */
/* Header không còn menu: đẩy nút Gọi ngay sang phải, luôn hiện cả trên mobile */
.header__cta { margin-left: auto; }
@media (max-width: 820px) { .site-header .header__cta { display: inline-flex; } }

/* Số hotline nổi trên ảnh hero — 2 nút gọi cạnh nhau (hiện cả trên mobile) */
.hero-call { position: absolute; z-index: 3; left: 70%; bottom: clamp(28px, 8%, 76px); transform: translateX(-50%); display: flex; flex-direction: column; gap: 0.55rem; background: #fff; color: var(--text); padding: 0.9rem 1rem; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-call__label { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.74rem; font-weight: 600; color: var(--text-soft); }
.hero-call__label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); flex: none; }
.hero-call__btns { display: flex; gap: 0.5rem; }
.hero-call__btn { flex: 1 1 0; min-width: 0; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; color: #fff; background: var(--brand); padding: 0.62rem 0.8rem; border-radius: var(--r-btn); white-space: nowrap; transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.hero-call__btn:hover { background: var(--brand-700); transform: translateY(-2px); }
.hero-call__btn svg { width: 1.05rem; height: 1.05rem; stroke: currentColor; fill: none; stroke-width: 2; flex: none; }
@media (max-width: 980px) {
  .hero-img { flex-direction: column; align-items: stretch; justify-content: center; }
  .hero-call { position: static; left: auto; bottom: auto; transform: none; order: 2; align-self: center; width: min(calc(100% - 2 * var(--gutter)), 600px); margin: 0 auto clamp(30px, 6vw, 44px); }
}
@media (max-width: 380px) {
  .hero-call__btn { font-size: 0.92rem; padding: 0.58rem 0.5rem; gap: 0.3rem; }
}

/* DỊCH VỤ CHỦ LỰC — bento: 1 thẻ chủ lực nổi bật + lưới cân đối */
.services { padding-block: clamp(64px, 8vw, 120px); }
.services .section__head { max-width: 780px; }
.services .section__title { font-size: clamp(2rem, 4.2vw, 3rem); }
.services .section__lead { font-size: 1.1rem; }

/* Showcase tương tác (CHỦ ĐẠO): danh sách trái + panel ẢNH lớn phải.
   Rê/bấm một dịch vụ → panel đổi ảnh + tiêu đề + mô tả. Tự xoay vòng. */
.show { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 1.5rem; align-items: stretch; }
.show-list { display: flex; flex-direction: column; gap: 0.5rem; justify-content: center; }
/* mỗi mục = hàng tiêu đề (.show-head) + chi tiết bung (.show-acc, chỉ dùng ở tablet/mobile) */
.show-head { position: relative; overflow: hidden; display: flex; align-items: center; gap: 0.85rem; padding: 1.05rem 1.2rem; border-radius: var(--r-md); cursor: pointer; border: 1px solid transparent; transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.show-item:hover .show-head { background: #fff; }
.show-item.active .show-head { background: #fff; border-color: var(--brand-100); box-shadow: var(--shadow); transform: translateX(5px); }
.show-num { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--text-mute); width: 1.4rem; flex: none; transition: color 0.3s var(--ease); }
.show-item.active .show-num { color: var(--brand); }
.show-iico { width: 52px; height: 52px; border-radius: 13px; background: var(--brand-50); color: var(--brand); display: grid; place-items: center; flex: none; transition: 0.3s var(--ease); }
.show-item.active .show-iico { background: var(--brand); color: #fff; }
.show-iico svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.show-tx { flex: 1; min-width: 0; }
.show-tx h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.12rem; }
.show-tx p { color: var(--text-soft); font-size: 0.86rem; }
.show-arrow { width: 22px; height: 22px; flex: none; color: var(--brand); fill: none; stroke: currentColor; stroke-width: 2; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.show-item.active .show-arrow { opacity: 1; transform: none; }
.show-prog { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--brand); transform: scaleX(0); transform-origin: left; }
.show-item.active .show-head .show-prog { animation: showProg 3s linear forwards; }
.show:hover .show-prog { animation-play-state: paused; }
@keyframes showProg { to { transform: scaleX(1); } }
.show-acc { display: none; }   /* desktop: ẩn (đã có panel lớn bên phải) */
.show-stage { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 560px; background: var(--ink); box-shadow: var(--shadow-md); }
.show-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.07); transition: opacity 0.6s var(--ease), transform 0.7s var(--ease); }
.show-slide.active { opacity: 1; transform: none; }
.show-slide img { width: 100%; height: 100%; object-fit: cover; }
.show-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42, 20, 22, 0.05) 0%, rgba(42, 20, 22, 0.42) 46%, rgba(42, 20, 22, 0.92) 100%); }
.show-cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 2.6rem; color: #fff; }
.show-cap .eyebrow { background: rgba(255, 255, 255, 0.16); color: #fbdada; border-color: rgba(255, 255, 255, 0.2); margin-bottom: 0.85rem; }
/* Tiêu đề panel showcase: là <div class="show-cap__title"> (không phải <h3>) để tránh lặp heading SEO — bù lại các thuộc tính heading toàn cục (h1–h4 ở quy tắc chung) đã mất. */
.show-cap .show-cap__title { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; text-wrap: balance; font-size: clamp(2.1rem, 3.6vw, 3.2rem); color: #fff; line-height: 1.08; }
.show-cap p { color: rgba(255, 255, 255, 0.92); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.55; margin-top: 0.7rem; max-width: 46ch; }
.show-feats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.4rem; margin-top: 1.1rem; max-width: 52ch; }
.show-feats li { position: relative; padding-left: 1.5rem; color: rgba(255, 255, 255, 0.92); font-size: 0.94rem; line-height: 1.35; }
.show-feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-300); font-weight: 700; }
.show-cta { margin-top: 1.4rem; gap: 0.45rem; }
.show-cta svg { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-width: 2; }
.show-count { position: absolute; top: 1.3rem; right: 1.6rem; z-index: 3; color: rgba(255, 255, 255, 0.82); font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.04em; }
.show-count b { color: #fff; font-size: 1.5rem; }

/* Lãi suất / hạn mức tham khảo hiển thị trên từng dịch vụ */
.show-rate { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.show-cap .show-rate { margin-top: 1.1rem; }
.rate-pill { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.9rem; padding: 0.42rem 0.85rem; border-radius: var(--r-sm); line-height: 1.15; }
.rate-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.55; flex: none; }
.show-cap .rate-pill--limit { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid rgba(255, 255, 255, 0.24); }
.show-cap .rate-pill--rate { background: var(--brand); color: #fff; border: 1px solid transparent; }
.show-acc__in .show-rate { margin: 0.85rem 1.1rem 0; }
.show-acc__in .rate-pill { font-size: 0.84rem; padding: 0.36rem 0.74rem; }
.show-acc__in .rate-pill--limit { background: var(--brand-50); color: var(--brand-700); }
.show-acc__in .rate-pill--rate { background: var(--brand); color: #fff; }

.services-note { margin-top: clamp(1.6rem, 3.2vw, 2.4rem); font-size: 0.82rem; line-height: 1.55; color: var(--text-mute); max-width: 76ch; }
.services-note strong { color: var(--text-soft); font-weight: 600; }

@media (prefers-reduced-motion: reduce) { .show-prog { display: none; } }

/* ===== TABLET & MOBILE (≤860px): ACCORDION — bấm dịch vụ nào, chi tiết bung TẠI CHỖ ===== */
@media (max-width: 860px) {
  .show { grid-template-columns: 1fr; }
  .show-stage { display: none; }                 /* bỏ panel lớn, dùng accordion */
  .show-list { gap: 0.7rem; }
  .show-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
  .show-item.active { border-color: var(--brand-300); box-shadow: var(--shadow-md); }
  .show-head { border: none; border-radius: 0; padding: 1rem 1.1rem; }
  .show-item:hover .show-head, .show-item.active .show-head { background: transparent; box-shadow: none; transform: none; }
  .show-prog { display: none; }
  .show-arrow { opacity: 1; transform: rotate(0); width: 20px; height: 20px; }
  .show-item.active .show-arrow { opacity: 1; transform: rotate(90deg); }
  /* phần bung dùng grid-rows 0fr→1fr để trượt mượt; min-height:0 để co hết khi gập,
     khoảng cách dùng margin (nằm trong vùng overflow:hidden) nên gập là ẩn sạch */
  .show-acc { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
  .show-item.active .show-acc { grid-template-rows: 1fr; }
  .show-acc__in { overflow: hidden; min-height: 0; }
  .show-acc__in img { display: block; width: calc(100% - 2.2rem); margin: 0.2rem 1.1rem 0; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r-sm); }
  .show-acc__in > p { margin: 0.85rem 1.1rem 0; color: var(--text-soft); font-size: 0.95rem; line-height: 1.5; }
  .show-acc-feats { list-style: none; margin: 0.7rem 1.1rem 0; display: grid; gap: 0.4rem; }
  .show-acc-feats li { position: relative; padding-left: 1.6rem; color: var(--text); font-size: 0.92rem; line-height: 1.35; }
  .show-acc-feats li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 700; }
  .show-acc-cta { margin: 1rem 1.1rem 1.2rem; gap: 0.4rem; }
  .show-acc-cta svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-width: 2; }
}
@media (max-width: 440px) {
  .show-tx h3 { font-size: 1.04rem; }
  .show-acc__in img { aspect-ratio: 3 / 2; }
}

/* Footer 3 cột (đã bỏ cột Bản đồ) */
@media (min-width: 1025px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1.5fr; } }

/* Header rút gọn (≤820): ẩn tagline; nút "Nhận tư vấn" vẫn hiện chữ */
@media (max-width: 820px) {
  .brand__txt em { display: none; }
  .site-header__inner { gap: 0.6rem; }
}

/* Header: hiện CẢ 2 hotline (desktop), cạnh nút Gọi ngay */
.header__phones { margin-left: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 0.05rem 1.1rem; }
.header__phone { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.9rem; color: var(--text); transition: color 0.2s var(--ease); }
.header__phone svg { width: 1rem; height: 1rem; color: var(--brand); }
.header__phone:hover { color: var(--brand); }
.site-header__inner .header__cta { margin-left: 0.9rem; }
@media (max-width: 980px) {
  .header__phones { display: none; }
  .site-header__inner .header__cta { margin-left: auto; }
}
