/* =========================================================
   AMIS HOSPITAL — Main Stylesheet
   File: /assets/css/main.css
   Stack: Pure CSS3, no framework
   ========================================================= */

/* ----- 1. CSS RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amis-blue-mid); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--amis-navy); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----- 2. BRAND TOKENS ----- */
:root {
  /* Brand colors */
  --amis-orange: #FCB645;
  --amis-blue-mid: #346FAA;
  --amis-blue-light: #51A9DE;
  --amis-navy: #222F62;

  /* Neutrals */
  --bg-white: #FFFFFF;
  --bg-soft: #F7F9FC;
  --bg-tint: #EEF3FA;
  --border: #E5E9F0;
  --meta: #6B7280;
  --body: #1F2937;
  --heading: #0F172A;

  /* Typography */
  --font-display: 'Be Vietnam Pro', system-ui, sans-serif;
  --font-body: 'Urbanist', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 56px;
  --space-2xl: 80px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 2px 6px rgba(34,47,98,.04);
  --sh-md: 0 4px 12px rgba(34,47,98,.06), 0 2px 6px rgba(34,47,98,.04);
  --sh-lg: 0 16px 40px rgba(34,47,98,.08), 0 4px 12px rgba(34,47,98,.04);

  /* Container */
  --container: 1240px;
  --container-narrow: 880px;

  /* Transitions */
  --t-fast: .15s ease;
  --t: .25s ease;
}

/* ----- 3. TYPOGRAPHY ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(32px, 4.5vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 19px; line-height: 1.6; color: var(--meta); }

/* ----- 4. LAYOUT ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--container-narrow);
}
section {
  padding: var(--space-2xl) 0;
}
section.section--soft { background: var(--bg-soft); }
section.section--tint { background: var(--bg-tint); }
section.section--navy { background: var(--amis-navy); color: rgba(255,255,255,.85); }
section.section--navy h1,
section.section--navy h2,
section.section--navy h3 { color: white; }

/* ----- 5. AMIS LOGO ----- */
.amis-logo {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  flex-shrink: 0;
}
.amis-logo--color { background-image: url('../images/amis_color.png'); }
.amis-logo--white { background-image: url('../images/amis_white.png'); }
.amis-logo--mark  { background-image: url('../images/amis_mark.png'); }

.amis-logo--nav    { width: 168px; height: 56px; }
.amis-logo--footer { width: 200px; height: 74px; }
.amis-logo--mark-sm { width: 40px; height: 40px; }

@media (max-width: 768px) {
  .amis-logo--nav { width: 132px; height: 44px; }
}

/* ----- 6. BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

.btn--primary {
  background: var(--amis-blue-mid);
  color: white;
}
.btn--primary:hover {
  background: var(--amis-navy);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--amis-blue-mid);
  border-color: var(--amis-blue-mid);
}
.btn--outline:hover {
  background: var(--amis-blue-mid);
  color: white;
}

.btn--ghost {
  background: transparent;
  color: var(--body);
}
.btn--ghost:hover {
  background: var(--bg-soft);
}

.btn--white {
  background: white;
  color: var(--amis-navy);
}
.btn--white:hover {
  background: var(--bg-soft);
  color: var(--amis-navy);
}

/* ----- 7. EYEBROW ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amis-blue-mid);
  margin-bottom: 16px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--amis-orange);
}

/* ----- 8. SECTION HEAD ----- */
.section-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-head__title {
  margin-bottom: 16px;
}
.section-head__lead {
  font-size: 18px;
  color: var(--meta);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-head--left { text-align: left; }
.section-head--left .section-head__lead { margin-left: 0; }

/* ----- 9. CARDS ----- */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t);
}
.card:hover {
  border-color: var(--amis-blue-light);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.card__icon {
  width: 56px;
  height: 56px;
  background: var(--bg-tint);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--amis-blue-mid);
}
.card__title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--heading);
}
.card__desc {
  color: var(--meta);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--amis-blue-mid);
}
.card__link::after { content: '→'; transition: transform var(--t); }
.card__link:hover::after { transform: translateX(4px); }

/* ----- 10. TAGS & BADGES ----- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
.tag--blue { background: var(--bg-tint); color: var(--amis-blue-mid); }
.tag--orange { background: #FFF6E5; color: #B8801F; }
.tag--green { background: #E8F5E8; color: #2D7A2D; }

/* ----- 11. UTILITY BAR ----- */
.utility-bar {
  background: var(--amis-navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.utility-bar__left,
.utility-bar__right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.utility-bar a {
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.utility-bar a:hover { color: var(--amis-orange); }

@media (max-width: 900px) {
  .utility-bar { display: none; }
}

/* ----- 12. HEADER / NAVIGATION ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.scrolled {
  box-shadow: var(--sh-sm);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}
.nav__menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav__link {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--heading);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  position: relative;
}
.nav__link:hover {
  background: var(--bg-soft);
  color: var(--amis-blue-mid);
}
.nav__link--active {
  color: var(--amis-blue-mid);
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--amis-orange);
  border-radius: 2px;
}

/* Dropdown menu */
.nav__item--has-dropdown {
  position: relative;
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t);
  list-style: none;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--body);
  font-weight: 500;
  font-size: 14px;
  transition: background var(--t-fast);
}
.nav__dropdown a:hover {
  background: var(--bg-soft);
  color: var(--amis-blue-mid);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.nav__toggle:hover { background: var(--bg-soft); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  position: relative;
  transition: all var(--t);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--heading);
  left: 0;
  transition: all var(--t);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: min(380px, 90vw);
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--t);
    overflow-y: auto;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 24px rgba(0,0,0,.04);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link {
    padding: 14px 16px;
    width: 100%;
  }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-soft);
    margin-top: 4px;
    padding: 8px;
  }
  .nav__cta { width: 100%; justify-content: center; margin-top: 8px; }
}

/* ----- 13. HERO ----- */
.hero {
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg-white) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.hero__title-accent { color: var(--amis-blue-mid); }
.hero__lead {
  font-size: 19px;
  color: var(--meta);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--meta);
}
.hero__trust-icon {
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amis-blue-mid);
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--amis-blue-light), var(--amis-navy));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(252,182,69,.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(81,169,222,.3) 0%, transparent 50%);
}
.hero__visual-mark {
  width: 50%;
  aspect-ratio: 1;
  opacity: 0.15;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { display: none; }
}

/* ----- 14. PILLARS (3 trụ cột) ----- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  text-align: center;
  padding: 32px 24px;
}
.pillar__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--amis-orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pillar__title {
  font-size: 24px;
  margin-bottom: 14px;
}
.pillar__desc {
  color: var(--meta);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; gap: 16px; }
}

/* ----- 15. SERVICES GRID ----- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all var(--t);
  text-decoration: none;
  display: block;
  height: 100%;
}
.service-card:hover {
  border-color: var(--amis-blue-light);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--bg-tint);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amis-blue-mid);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card__desc {
  color: var(--meta);
  font-size: 14px;
  line-height: 1.55;
}

/* ----- 16. HUB-AND-SPOKE SECTION ----- */
.hub-spoke {
  background: linear-gradient(135deg, var(--bg-tint) 0%, white 100%);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hub-spoke__diagram {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hub-spoke { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

/* ----- 17. CTA BANNER ----- */
.cta-banner {
  background: linear-gradient(135deg, var(--amis-navy) 0%, var(--amis-blue-mid) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(252,182,69,.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}
.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner__lead {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  .cta-banner { padding: 40px 24px; }
}

/* ----- 18. FOOTER ----- */
.site-footer {
  background: var(--amis-navy);
  color: rgba(255,255,255,.75);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color var(--t-fast);
}
.footer-col a:hover {
  color: var(--amis-orange);
}
.footer-brand__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 18px 0 24px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----- 19. COOKIE BANNER ----- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 24px;
  z-index: 1000;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--heading);
}
.cookie-banner p {
  font-size: 13.5px;
  color: var(--meta);
  margin-bottom: 16px;
  line-height: 1.55;
}
.cookie-banner__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ----- 20. ACCESSIBILITY ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--amis-navy);
  color: white;
  padding: 12px 20px;
  border-radius: var(--r-md);
  z-index: 1000;
  transition: top var(--t);
}
.skip-link:focus { top: 16px; color: white; }

*:focus-visible {
  outline: 2px solid var(--amis-blue-mid);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----- 21. UTILITIES ----- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

/* =========================================================
   INNER PAGES — Page hero, prose, TOC, forms, accordion
   ========================================================= */

/* ----- 22. PAGE HERO (cho các trang con) ----- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
}
.page-hero__lead {
  font-size: 19px;
  color: var(--meta);
  line-height: 1.6;
}
.page-hero__meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.page-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--meta);
}
.page-hero__meta-item strong {
  color: var(--heading);
  font-weight: 600;
}

/* ----- 23. BREADCRUMB ----- */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--meta);
  border-bottom: 1px solid var(--border);
  background: white;
}
.breadcrumb a { color: var(--meta); }
.breadcrumb a:hover { color: var(--amis-blue-mid); }
.breadcrumb__sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb__current { color: var(--heading); font-weight: 500; }

/* ----- 24. PROSE LAYOUT (with TOC sidebar) ----- */
.prose-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .prose-layout { grid-template-columns: 1fr; gap: 32px; }
}

.toc {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  font-size: 14px;
}
.toc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--meta);
  margin-bottom: 16px;
}
.toc ul { list-style: none; }
.toc li { margin-bottom: 10px; }
.toc a {
  display: block;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  color: var(--body);
  font-weight: 500;
  line-height: 1.4;
  transition: all var(--t-fast);
}
.toc a:hover {
  background: white;
  color: var(--amis-blue-mid);
}
@media (max-width: 900px) {
  .toc { position: static; }
}

/* ----- 25. PROSE CONTENT ----- */
.prose {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
}
.prose h2 {
  font-size: 28px;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--amis-orange);
  display: inline-block;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 21px;
  margin: 32px 0 14px;
  color: var(--heading);
}
.prose h4 {
  font-size: 17px;
  margin: 24px 0 10px;
  color: var(--heading);
  font-weight: 600;
}
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol {
  margin: 0 0 20px 24px;
  padding-left: 4px;
}
.prose li { margin-bottom: 10px; line-height: 1.65; }
.prose strong { color: var(--heading); font-weight: 600; }
.prose em { color: var(--meta); font-style: italic; }
.prose blockquote {
  border-left: 4px solid var(--amis-orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--body);
  font-style: normal;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose a {
  color: var(--amis-blue-mid);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--bg-tint);
  text-underline-offset: 3px;
}
.prose a:hover {
  text-decoration-color: var(--amis-blue-mid);
}

/* ----- 26. PROSE TABLE ----- */
.prose table,
.amis-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.prose th,
.amis-table th {
  background: var(--bg-tint);
  color: var(--heading);
  font-weight: 700;
  font-family: var(--font-display);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid var(--border);
  font-size: 14px;
}
.prose td,
.amis-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.prose tr:last-child td,
.amis-table tr:last-child td { border-bottom: none; }
.prose tr:hover td,
.amis-table tr:hover td { background: var(--bg-soft); }
@media (max-width: 768px) {
  .prose table, .amis-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ----- 27. ACCORDION (FAQ) ----- */
.accordion__item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--t);
}
.accordion__item.is-open {
  border-color: var(--amis-blue-light);
  box-shadow: var(--sh-md);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--heading);
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 16px;
}
.accordion__trigger:hover { background: var(--bg-soft); }
.accordion__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tint);
  border-radius: 50%;
  color: var(--amis-blue-mid);
  font-size: 18px;
  font-weight: 700;
  transition: transform var(--t);
}
.accordion__item.is-open .accordion__icon {
  background: var(--amis-blue-mid);
  color: white;
  transform: rotate(45deg);
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t) ease;
}
.accordion__item.is-open .accordion__content {
  max-height: 1000px;
}
.accordion__body {
  padding: 0 24px 20px;
  color: var(--body);
  line-height: 1.65;
}

/* ----- 28. INFO BOX (cảnh báo, lưu ý) ----- */
.info-box {
  background: var(--bg-tint);
  border-left: 4px solid var(--amis-blue-mid);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box--warning {
  background: #FFF6E5;
  border-left-color: var(--amis-orange);
}
.info-box--danger {
  background: #FEF1F1;
  border-left-color: #DC2626;
}
.info-box__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--heading);
}
.info-box p:last-child { margin-bottom: 0; }

/* ----- 29. STEP LIST (quy trình) ----- */
.steps {
  display: grid;
  gap: 16px;
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.step__num {
  width: 48px;
  height: 48px;
  background: var(--amis-blue-mid);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--heading);
}
.step__body { color: var(--body); line-height: 1.65; }
.step__body p:last-child { margin-bottom: 0; }

/* ----- 30. STAT CARDS (số liệu nhanh) ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.stat {
  background: var(--bg-tint);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--amis-blue-mid);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 13px;
  color: var(--meta);
  font-weight: 500;
}

/* ----- 31. FORMS ----- */
.form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form__row--full { grid-template-columns: 1fr; }
.form__field { margin-bottom: 20px; }
.form__field--full { grid-column: 1 / -1; }
.form__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 6px;
}
.form__label .req { color: #DC2626; }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--body);
  background: white;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--amis-blue-mid);
  box-shadow: 0 0 0 3px rgba(52, 111, 170, 0.1);
}
.form__input.has-error,
.form__select.has-error,
.form__textarea.has-error {
  border-color: #DC2626;
  background: #FEF1F1;
}
.form__textarea { resize: vertical; min-height: 100px; }
.form__hint {
  font-size: 13px;
  color: var(--meta);
  margin-top: 4px;
}
.form__radio-group,
.form__checkbox-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.form__radio,
.form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}
.form__radio input,
.form__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--amis-blue-mid);
  cursor: pointer;
}
.form__consent {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  align-items: flex-start;
}
.form__consent input { margin-top: 3px; }
.form__consent label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  cursor: pointer;
}
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}
.form__submit {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ----- 32. CONTACT GRID ----- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.contact-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  transition: all var(--t);
  text-decoration: none;
  display: block;
}
.contact-item:hover {
  border-color: var(--amis-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.contact-item__icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-item__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 14px;
  color: var(--meta);
}

/* ----- 33. PACKAGE CARDS (gói tầm soát) ----- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.package {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.package:hover {
  border-color: var(--amis-blue-light);
  box-shadow: var(--sh-md);
}
.package--featured {
  border-color: var(--amis-blue-mid);
  position: relative;
}
.package--featured::before {
  content: 'Phổ biến';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amis-blue-mid);
  color: white;
  padding: 4px 16px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}
.package__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 8px;
}
.package__tagline {
  font-size: 14px;
  color: var(--meta);
  margin-bottom: 20px;
  min-height: 42px;
}
.package__items {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  flex-grow: 1;
}
.package__items li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.package__items li:last-child { border-bottom: none; }
.package__items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--amis-blue-mid);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ----- 34. NOTICE / WARNING ----- */
.notice {
  background: #FFF6E5;
  border: 1px solid var(--amis-orange);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
}
.notice__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #B8801F;
  margin-bottom: 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----- 35. CTA STRIPE (mid-page CTA) ----- */
.cta-stripe {
  background: linear-gradient(135deg, var(--amis-navy) 0%, var(--amis-blue-mid) 100%);
  color: white;
  border-radius: var(--r-lg);
  padding: 32px 40px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-stripe__text h3 {
  color: white;
  margin-bottom: 6px;
}
.cta-stripe__text p {
  color: rgba(255,255,255,.85);
  margin-bottom: 0;
  font-size: 15px;
}
.cta-stripe__btn { flex-shrink: 0; }

@media (max-width: 600px) {
  .cta-stripe { padding: 24px 20px; }
}

/* ----- 36. MAP CONTAINER ----- */
.map-container {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 24px 0;
}
.map-container iframe,
.map-container__placeholder {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--bg-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--meta);
  font-size: 14px;
}

/* ----- 37. IMAGE PLACEHOLDER ----- */
.image-placeholder {
  background: linear-gradient(135deg, var(--bg-tint), var(--bg-soft));
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  color: var(--meta);
  font-size: 13px;
  font-style: italic;
}

/* ----- 38. PRINT STYLES ----- */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav__toggle { display: none; }
  body { color: black; background: white; }
  a { color: black; text-decoration: underline; }
}
/* =========================================================
   AMIS HOSPITAL — Inner Pages Stylesheet (append to main.css)
   ========================================================= */

/* ----- 22. PAGE HEADER (HERO cho inner pages) ----- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-white) 100%);
  padding: 56px 0 48px;
  position: relative;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--meta);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.page-hero__breadcrumb a {
  color: var(--meta);
  font-weight: 500;
}
.page-hero__breadcrumb a:hover { color: var(--amis-blue-mid); }
.page-hero__breadcrumb-sep { color: var(--border); }
.page-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 820px;
}
.page-hero__subtitle {
  font-size: 18px;
  color: var(--meta);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.page-hero__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.page-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--body);
  font-weight: 500;
}

/* ----- 23. PROSE (nội dung dài) ----- */
.prose {
  max-width: 760px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
}
.prose--wide { max-width: 920px; }
.prose h2 {
  font-size: 28px;
  margin-top: 56px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 21px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose h4 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--heading);
}
.prose p { margin-bottom: 1.2em; }
.prose ul, .prose ol { margin: 1em 0 1.4em 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose strong { color: var(--heading); font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--amis-blue-mid);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--body);
  font-style: normal;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose code {
  background: var(--bg-soft);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  color: var(--amis-navy);
}
.prose a { font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ----- 24. PAGE LAYOUT: with sidebar TOC ----- */
.page-with-toc {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
  align-items: start;
}
.page-with-toc__main { min-width: 0; }
.toc {
  position: sticky;
  top: 100px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  font-size: 13.5px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.toc__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--meta);
  margin-bottom: 12px;
}
.toc ol, .toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: 6px; }
.toc a {
  color: var(--body);
  display: block;
  padding: 4px 0;
  line-height: 1.45;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -10px;
  transition: all var(--t-fast);
}
.toc a:hover {
  color: var(--amis-blue-mid);
  border-left-color: var(--amis-blue-light);
}
.toc a.is-active {
  color: var(--amis-blue-mid);
  border-left-color: var(--amis-blue-mid);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .page-with-toc { grid-template-columns: 1fr; gap: 32px; }
  .toc { position: static; max-height: none; }
}

/* ----- 25. TABLE (cho prose) ----- */
.prose table, .table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.prose th, .table th {
  background: var(--bg-soft);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--heading);
  border-bottom: 1px solid var(--border);
}
.prose td, .table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--body);
}
.prose tr:last-child td, .table tr:last-child td { border-bottom: none; }
.prose tbody tr:hover, .table tbody tr:hover { background: var(--bg-soft); }

@media (max-width: 700px) {
  .prose table, .table { font-size: 13.5px; }
  .prose th, .table th, .prose td, .table td { padding: 10px 12px; }
}

/* ----- 26. ACCORDION (FAQ) ----- */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
}
.accordion__item {
  border-bottom: 1px solid var(--border);
}
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
  display: flex;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  background: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--heading);
  cursor: pointer;
  gap: 16px;
  transition: background var(--t-fast);
}
.accordion__trigger:hover { background: var(--bg-soft); }
.accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--amis-blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform var(--t);
}
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t) ease;
}
.accordion__item.is-open .accordion__content { max-height: 2000px; }
.accordion__body {
  padding: 0 24px 24px;
  color: var(--body);
  line-height: 1.7;
}

/* ----- 27. INFO BOXES ----- */
.info-box {
  padding: 20px 24px;
  border-radius: var(--r-md);
  margin: 24px 0;
  border: 1px solid;
  font-size: 15px;
  line-height: 1.6;
}
.info-box--info {
  background: #EEF6FC;
  border-color: #BFDEEF;
  color: #144E7C;
}
.info-box--warning {
  background: #FFF8E5;
  border-color: #F0D17A;
  color: #7A5C0E;
}
.info-box--success {
  background: #E8F5E8;
  border-color: #A4D4A4;
  color: #1F5A1F;
}
.info-box__title {
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

/* ----- 28. NUMBERED STEPS (quy trình) ----- */
.steps {
  display: grid;
  gap: 20px;
  margin: 32px 0;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  align-items: start;
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amis-blue-mid);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.step__title {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--heading);
  font-weight: 700;
}
.step__desc {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

/* ----- 29. STAT CARDS ----- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.stat-card__label {
  font-size: 13px;
  color: var(--meta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 8px;
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--amis-navy);
  margin-bottom: 6px;
  line-height: 1.1;
}
.stat-card__desc {
  font-size: 14px;
  color: var(--meta);
  line-height: 1.5;
}

/* ----- 30. FORM ----- */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 6px;
}
.form-label .required {
  color: #D32F2F;
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  background: white;
  transition: all var(--t-fast);
  color: var(--body);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amis-blue-mid);
  box-shadow: 0 0 0 3px rgba(52,111,170,.12);
}
.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: #D32F2F;
  background: #FFF5F5;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-help {
  font-size: 13px;
  color: var(--meta);
  margin-top: 4px;
}

.form-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast);
  font-size: 14px;
  background: white;
}
.form-radio:hover { border-color: var(--amis-blue-light); }
.form-radio input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--amis-blue-mid);
}
.form-radio:has(input:checked) {
  border-color: var(--amis-blue-mid);
  background: var(--bg-tint);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
}
.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--amis-blue-mid);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ----- 31. CONTACT INFO GRID ----- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--bg-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amis-blue-mid);
  flex-shrink: 0;
  font-size: 18px;
}
.contact-item__label {
  font-size: 12px;
  color: var(--meta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 15px;
  color: var(--heading);
  font-weight: 500;
  word-break: break-word;
}

/* ----- 32. PILL TABS / FILTER ----- */
.pill-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.pill-tab {
  padding: 8px 18px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--body);
  cursor: pointer;
  transition: all var(--t-fast);
}
.pill-tab:hover {
  border-color: var(--amis-blue-light);
  color: var(--amis-blue-mid);
}
.pill-tab.is-active {
  background: var(--amis-blue-mid);
  border-color: var(--amis-blue-mid);
  color: white;
}

/* ----- 33. PACKAGE CARDS (cho gói tầm soát) ----- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--t);
}
.package-card:hover {
  border-color: var(--amis-blue-light);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.package-card--featured {
  border: 2px solid var(--amis-blue-mid);
  position: relative;
}
.package-card--featured::before {
  content: 'Phổ biến';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amis-orange);
  color: var(--amis-navy);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
}
.package-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.package-card__target {
  font-size: 14px;
  color: var(--meta);
  margin-bottom: 20px;
  line-height: 1.5;
}
.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.package-card__features li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px dashed var(--border);
}
.package-card__features li:last-child { border-bottom: none; }
.package-card__features li::before {
  content: '✓';
  color: var(--amis-blue-mid);
  font-weight: 700;
  flex-shrink: 0;
}
.package-card__cta {
  margin-top: auto;
}

/* ----- 34. SPECIAL NOTICE (cho cảnh báo quan trọng) ----- */
.notice {
  display: flex;
  gap: 16px;
  padding: 24px 28px;
  background: var(--bg-tint);
  border: 1px solid var(--amis-blue-light);
  border-radius: var(--r-lg);
  margin: 32px 0;
}
.notice__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--amis-blue-mid);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}
.notice__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 6px;
}
.notice__body { font-size: 14.5px; color: var(--body); line-height: 1.6; }

/* ----- 35. CTA STRIPE (cuối trang) ----- */
.cta-stripe {
  background: var(--amis-navy);
  color: white;
  padding: 56px 0;
  margin-top: var(--space-2xl);
}
.cta-stripe__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-stripe h2 {
  color: white;
  margin-bottom: 8px;
  font-size: 28px;
}
.cta-stripe__lead {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.5;
  max-width: 600px;
}
.cta-stripe__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-stripe__inner { grid-template-columns: 1fr; }
  .cta-stripe__buttons { flex-direction: column; width: 100%; }
}

/* ----- 36. MAP CONTAINER ----- */
.map-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--meta);
  background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%);
}

/* ----- 37. PRINT STYLES ----- */
@media print {
  .site-header, .site-footer, .nav__toggle, .cookie-banner, .cta-stripe, .utility-bar { display: none; }
  body { font-size: 12pt; color: black; }
  a { color: black; text-decoration: underline; }
  .container { max-width: 100%; padding: 0; }
}
