/* ══ THẨM MỸ VIỆN — CLINICAL LUXURY ══
   Identity: CLEAN-CORPORATE + Gold Luxury overlay
   Màu: White #ffffff + Gold #c9a96e + Clinical grey #f8f7f5
   Nav: Always Solid Light (Nav-2) với gold underline active
   Hero: Split 45/55 (H2) — Left dark clinical + Right full-height image
   Font: DM Sans
   Prefix class: tmv-
   ──────────────────────────────────────── */

:root {
  --bg: #f8f7f5;
  --surface: #ffffff;
  --dark: #0d0c0a;
  --dark2: #181614;
  --dark3: #1e1b18;
  --border: #e6e2db;
  --border-light: #eeebe5;
  --text: #1c1a17;
  --text-2: #706a60;
  --text-3: #a39e97;
  --accent: #c9a96e;
  --accent-h: #b8924f;
  --accent-light: #fdf8ef;
  --accent-mid: #dfc08a;
  --accent-dark: #8b6a35;
  --gold-pale: #faf5eb;
  --gold-border: rgba(201,169,110,.25);
  --gold-border-strong: rgba(201,169,110,.5);
  --clinical-white: #ffffff;
  --clinical-bg: #f8f7f5;
  --sans: 'DM Sans', sans-serif;
  --bs-body-font-family: var(--sans);
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-border-color: var(--border);
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
*, *::before, *::after { box-sizing: border-box; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--accent-mid); border-radius: 4px; opacity: .4; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.wd-container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.sec-pad { padding: clamp(72px, 10vw, 120px) 0; }

/* ── Reveal ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* ══ NAVIGATION — Always Solid Light (Nav-2) + gold accent ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--clinical-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border-light);
  transition: box-shadow .3s;
}
#nav.nav-elevated { box-shadow: 0 4px 24px rgba(0,0,0,.07); }

.tmv-nav-inner {
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}

/* Logo */
.tmv-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.tmv-logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tmv-logo-mark svg { width: 16px; height: 16px; }
.tmv-logo-text { display: flex; flex-direction: column; line-height: 1; }
.tmv-logo-name { font-size: 15px; font-weight: 600; color: var(--text); letter-spacing: -.3px; }
.tmv-logo-sub { font-size: 9px; font-weight: 500; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 2px; }

/* Nav links */
.tmv-nav-links { display: flex; gap: 2px; }
.tmv-nav-links a {
  font-size: 13px; font-weight: 400; color: var(--text-2);
  padding: 8px 14px; border-radius: 6px;
  text-decoration: none; transition: color .2s, background .2s;
  position: relative;
}
.tmv-nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}
.tmv-nav-links a:hover { color: var(--text); background: var(--bg); }
.tmv-nav-links a:hover::after, .tmv-nav-links a.active::after { transform: scaleX(1); }
.tmv-nav-links a.active { color: var(--text); font-weight: 500; }

/* Nav CTA */
.tmv-nav-cta {
  font-size: 13px; font-weight: 500;
  background: var(--dark2); color: #fff;
  padding: 9px 20px; border-radius: 7px; border: none;
  cursor: pointer; font-family: var(--sans);
  text-decoration: none; display: inline-block;
  transition: background .2s, transform .2s;
  letter-spacing: .1px; white-space: nowrap;
}
.tmv-nav-cta:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

/* Hamburger */
.tmv-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: transparent;
}
.tmv-burger span { display: block; width: 22px; height: 1.5px; background: var(--text-2); border-radius: 2px; transition: all .3s; }
.tmv-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.tmv-burger.open span:nth-child(2) { opacity: 0; }
.tmv-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.tmv-mobile-menu {
  position: fixed; inset: 0; background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px); z-index: 850;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.tmv-mobile-menu.open { opacity: 1; pointer-events: auto; }
.tmv-mobile-menu a {
  font-size: 20px; font-weight: 400; color: var(--text-2);
  text-decoration: none; padding: 10px 24px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.tmv-mobile-menu a:hover { color: var(--text); background: var(--bg); }
.tmv-mobile-menu .tmv-mob-cta {
  font-size: 14px; font-weight: 500;
  background: var(--dark2); color: #fff;
  padding: 12px 36px; border-radius: 8px; margin-top: 12px;
}
.tmv-mobile-menu .tmv-mob-cta:hover { background: var(--accent); }

@media (max-width: 900px) {
  .tmv-nav-links, .tmv-nav-cta { display: none; }
  .tmv-burger { display: flex; }
}

/* ══ SECTION HEADER ══ */
.tmv-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.tmv-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--accent);
}
.tmv-h2 {
  font-size: clamp(28px, 3.8vw, 46px); font-weight: 600;
  color: var(--text); line-height: 1.1; letter-spacing: -.8px; margin-bottom: 14px;
}
.tmv-h2 em { color: var(--accent); font-style: italic; font-weight: 300; }
.tmv-lead {
  font-size: 15px; font-weight: 300; color: var(--text-2);
  line-height: 1.75; max-width: 520px;
}
.tmv-lead.center { margin: 0 auto; }

/* ══ BUTTONS ══ */
.tmv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; font-family: var(--sans);
  padding: 12px 24px; border-radius: 7px; border: none;
  cursor: pointer; text-decoration: none; transition: all .2s; white-space: nowrap;
}
.tmv-btn-dark { background: var(--dark2); color: #fff; }
.tmv-btn-dark:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.tmv-btn-gold { background: var(--accent); color: #fff; }
.tmv-btn-gold:hover { background: var(--accent-h); color: #fff; transform: translateY(-1px); }
.tmv-btn-outline {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border); padding: 11px 24px;
}
.tmv-btn-outline:hover { background: var(--bg); color: var(--accent); border-color: var(--gold-border-strong); }
.tmv-btn-outline-gold {
  background: transparent; color: var(--accent);
  border: 1px solid var(--gold-border-strong); padding: 11px 24px;
}
.tmv-btn-outline-gold:hover { background: var(--accent-light); color: var(--accent-h); }
.tmv-btn-white-on-dark {
  background: #fff; color: var(--dark2);
}
.tmv-btn-white-on-dark:hover { background: var(--gold-pale); transform: translateY(-1px); }
.tmv-btn-ghost-on-dark {
  background: transparent; color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.18);
}
.tmv-btn-ghost-on-dark:hover { border-color: rgba(255,255,255,.45); color: #fff; }

/* ══ PAGE HERO (internal pages) ══ */
.tmv-page-hero {
  padding: calc(68px + clamp(48px, 6vw, 72px)) 0 clamp(48px, 5vw, 64px);
  background: var(--dark2); text-align: center;
  border-bottom: 1px solid rgba(201,169,110,.15);
}
.tmv-ph-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 500; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  border: 1px solid var(--gold-border); padding: 5px 14px; border-radius: 20px;
  margin-bottom: 20px; background: rgba(201,169,110,.06);
}
.tmv-ph-title {
  font-size: clamp(30px, 4.5vw, 54px); font-weight: 600; color: #fff;
  line-height: 1.1; letter-spacing: -.8px; margin-bottom: 12px;
}
.tmv-ph-title em { color: var(--accent); font-style: italic; font-weight: 300; }
.tmv-ph-sub {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 300;
  color: rgba(255,255,255,.4); max-width: 460px; margin: 0 auto;
}

/* ══ CARDS ══ */
/* Service card — clinical white, border-top gold accent */
.tmv-svc-card {
  background: var(--clinical-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), box-shadow .28s, border-color .28s;
  height: 100%;
}
.tmv-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0,0,0,.08);
  border-color: var(--border);
  border-top-color: var(--accent-h);
}
.tmv-svc-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .5s ease; }
.tmv-svc-card:hover .tmv-svc-thumb { transform: scale(1.05); }
.tmv-svc-body { padding: 22px 24px; }
.tmv-svc-tag {
  font-size: 10px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 8px;
}
.tmv-svc-name { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: -.3px; }
.tmv-svc-desc { font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.tmv-svc-price { font-size: 14px; font-weight: 600; color: var(--accent); }
.tmv-svc-price span { font-size: 12px; font-weight: 300; color: var(--text-3); margin-left: 4px; }

/* Doctor card */
.tmv-doc-card {
  background: var(--clinical-white);
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; text-align: center;
  transition: transform .28s, box-shadow .28s;
}
.tmv-doc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.07); }
.tmv-doc-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.tmv-doc-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.tmv-doc-card:hover .tmv-doc-img { transform: scale(1.04); }
.tmv-doc-badge {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(201,169,110,.9); backdrop-filter: blur(8px);
  color: #fff; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.tmv-doc-body { padding: 18px 20px 22px; }
.tmv-doc-name { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.tmv-doc-role { font-size: 12px; font-weight: 400; color: var(--accent); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .8px; }
.tmv-doc-creds { font-size: 12px; font-weight: 300; color: var(--text-3); line-height: 1.6; }

/* Review card */
.tmv-rv {
  background: var(--clinical-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; height: 100%;
}
.tmv-rv-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 14px; }
.tmv-rv-text {
  font-size: 14px; font-weight: 300; color: var(--text-2);
  line-height: 1.75; margin-bottom: 20px; font-style: italic;
}
.tmv-rv-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.tmv-rv-av { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--gold-border); }
.tmv-rv-name { font-size: 13px; font-weight: 500; color: var(--text); }
.tmv-rv-role { font-size: 11px; color: var(--text-3); margin-top: 1px; }

/* Technology card */
.tmv-tech-card {
  background: var(--clinical-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tmv-tech-card:hover {
  transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.07);
  border-color: var(--gold-border-strong);
}
.tmv-tech-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--accent-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.tmv-tech-icon svg { width: 22px; height: 22px; }
.tmv-tech-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.tmv-tech-desc { font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.65; }

/* Price table */
.tmv-price-table {
  background: var(--clinical-white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.tmv-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--border-light);
  transition: background .18s;
}
.tmv-price-row:last-child { border-bottom: none; }
.tmv-price-row:hover { background: var(--accent-light); }
.tmv-price-name { font-size: 14px; font-weight: 400; color: var(--text); }
.tmv-price-note { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.tmv-price-val { font-size: 15px; font-weight: 600; color: var(--accent); white-space: nowrap; }

/* Before/After */
.tmv-ba-wrap {
  border-radius: 14px; overflow: hidden; position: relative;
  background: var(--dark3);
}
.tmv-ba-grid { display: grid; grid-template-columns: 1fr 1fr; }
.tmv-ba-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.tmv-ba-label {
  position: absolute; top: 12px;
  font-size: 10px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 4px;
}
.tmv-ba-label.before { left: 12px; background: rgba(0,0,0,.5); }
.tmv-ba-label.after { right: 12px; background: rgba(201,169,110,.8); }
.tmv-ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,.6);
  transform: translateX(-50%);
}
.tmv-ba-divider::before {
  content: '↔'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text-2);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  line-height: 28px; text-align: center;
}

/* Stat bar */
.tmv-stat-bar { background: var(--dark2); padding: clamp(48px, 6vw, 72px) 0; }
.tmv-stat { text-align: center; }
.tmv-stat-num {
  font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: var(--accent);
  line-height: 1; margin-bottom: 8px; letter-spacing: -.5px;
}
.tmv-stat-label { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); letter-spacing: .3px; }

/* ══ ZALO FLOAT ══ */
.tmv-zalo {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 50px; height: 50px; border-radius: 50%;
  background: #0068FF; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,104,255,.4); text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.tmv-zalo:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,104,255,.5); }
.tmv-zalo svg { width: 26px; height: 26px; }

/* ══ FORM ══ */
.tmv-form-group { margin-bottom: 18px; }
.tmv-label-form {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--text-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .6px;
}
.tmv-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-family: var(--sans); font-size: 14px;
  color: var(--text); background: var(--clinical-white);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.tmv-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,169,110,.12); }
.tmv-input::placeholder { color: var(--text-3); }
textarea.tmv-input { resize: vertical; min-height: 120px; }
select.tmv-input { appearance: none; cursor: pointer; }

/* ══ INFO STRIP ══ */
.tmv-info-strip {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300; color: var(--text-2);
}
.tmv-info-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--accent-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* ══ SECTION DIVIDER ══ */
.tmv-divider { width: 40px; height: 2px; background: var(--accent); margin: 16px 0; }
.tmv-divider.center { margin: 16px auto; }

/* ══ TRUST BADGE ══ */
.tmv-trust-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 400; color: var(--text-2);
  padding: 8px 16px; border-radius: 20px;
  border: 1px solid var(--border); background: var(--clinical-white);
}
.tmv-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ══ ALTERNATING STRIP ══ */
.tmv-alt-sec { display: flex; align-items: center; gap: clamp(32px, 5vw, 72px); }
.tmv-alt-sec.reverse { flex-direction: row-reverse; }
.tmv-alt-text { flex: 1; }
.tmv-alt-img-wrap { flex: 1; border-radius: 14px; overflow: hidden; }
.tmv-alt-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .5s ease; }
.tmv-alt-img-wrap:hover .tmv-alt-img { transform: scale(1.04); }
@media (max-width: 768px) {
  .tmv-alt-sec, .tmv-alt-sec.reverse { flex-direction: column; }
}

/* ══ SPECIALTY GRID (bento) ══ */
.tmv-specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.tmv-spec-item {
  background: var(--clinical-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.tmv-spec-item:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.07); }
.tmv-spec-item.span2 { grid-column: span 2; }
.tmv-spec-bg {
  position: absolute; right: -20px; bottom: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--accent-light); opacity: .6;
}
.tmv-spec-num {
  font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1;
  margin-bottom: 8px; opacity: .35; letter-spacing: -1px;
}
.tmv-spec-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.tmv-spec-desc { font-size: 12.5px; font-weight: 300; color: var(--text-2); line-height: 1.65; }

@media (max-width: 768px) {
  .tmv-specialty-grid { grid-template-columns: 1fr; }
  .tmv-spec-item.span2 { grid-column: span 1; }
}

/* ══ FOOTER ══ */
footer { background: var(--dark); }
.tmv-ft-top { padding: clamp(56px, 7vw, 88px) 0 clamp(36px, 5vw, 56px); border-bottom: 1px solid rgba(255,255,255,.06); }
.tmv-ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tmv-ft-logo-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,169,110,.2); display: flex; align-items: center; justify-content: center;
}
.tmv-ft-logo-mark svg { width: 14px; height: 14px; }
.tmv-ft-logo-name { font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -.3px; }
.tmv-ft-logo-sub { font-size: 9px; font-weight: 500; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; }
.tmv-ft-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.32); line-height: 1.75; max-width: 230px; margin-bottom: 20px; }
.tmv-ft-socials { display: flex; gap: 8px; }
.tmv-ft-soc {
  width: 32px; height: 32px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.32); display: flex; align-items: center;
  justify-content: center; font-size: 12px;
  text-decoration: none; transition: all .18s;
}
.tmv-ft-soc:hover { border-color: var(--gold-border); color: var(--accent); }
.tmv-ft-col-title {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.tmv-ft-links { display: flex; flex-direction: column; gap: 10px; }
.tmv-ft-links a {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.32);
  text-decoration: none; transition: color .18s;
}
.tmv-ft-links a:hover { color: rgba(255,255,255,.72); }
.tmv-ft-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.tmv-ft-contact-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(201,169,110,.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.tmv-ft-contact-icon svg { width: 12px; height: 12px; }
.tmv-ft-contact-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.32); line-height: 1.6; }
.tmv-ft-contact-text strong { color: rgba(255,255,255,.55); font-weight: 400; display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 2px; }
.tmv-ft-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.tmv-ft-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.22); }
.tmv-ft-cert { display: flex; gap: 16px; }
.tmv-ft-cert span { font-size: 11px; color: rgba(255,255,255,.2); }

/* ══ RESPONSIVE ══ */
@media (max-width: 992px) {
  .tmv-specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .tmv-spec-item.span2 { grid-column: span 2; }
}
@media (max-width: 576px) {
  .tmv-specialty-grid { grid-template-columns: 1fr; }
  .tmv-spec-item.span2 { grid-column: span 1; }
  .tmv-ba-grid { grid-template-columns: 1fr 1fr; }
  .tmv-stat-bar .row > div + div { margin-top: 32px; }
  .tmv-ft-bottom { justify-content: center; text-align: center; }
  .tmv-price-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}
