/* ============================================================================
   SSAnkang Health — Premium Homepage Stylesheet
   Loaded only on the homepage. Builds on top of styles.css design tokens.
   Visual references: Mayo Clinic, Cleveland Clinic International, Bumrungrad VIP.
   Aesthetic: editorial typography, generous whitespace, restrained color, deep shadows.
   ============================================================================ */

:root {
  --p-ink:        #0b1220;            /* Headline-grade dark */
  --p-ink-soft:   #1e293b;
  --p-paper:      #fafaf7;            /* Warm off-white, premium feel */
  --p-paper-soft: #f5f5f0;
  --p-line:       #e7e5e0;
  --p-gold:       #b08947;            /* Editorial gold accent */
  --p-gold-soft:  #d4b378;
  --p-teal-deep:  #0a4d4a;            /* Darker, more "established" teal */
  --p-shadow:     0 30px 60px -20px rgba(11,18,32,.18), 0 18px 36px -18px rgba(11,18,32,.10);
  --p-shadow-lg:  0 50px 100px -30px rgba(11,18,32,.22), 0 30px 60px -30px rgba(11,18,32,.15);
}

/* Body type — editorial bump on the homepage only */
body { font-feature-settings: "kern" 1, "liga" 1, "calt" 1; }

/* =================  HERO  ================================================= */
.hero-premium {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(1200px 600px at 100% -20%, rgba(13,148,136,.08), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, rgba(176,137,71,.06), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--p-paper) 100%);
  overflow: hidden;
}
.hero-p-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-p-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-premium { padding: 64px 0 72px; }
}

.hero-p-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--p-teal-deep);
  padding: 8px 14px;
  background: rgba(10,77,74,.06);
  border: 1px solid rgba(10,77,74,.15);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-p-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--p-teal-deep);
  box-shadow: 0 0 0 4px rgba(10,77,74,.12);
}

.hero-p-h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--p-ink);
  margin: 0 0 28px;
}
.hero-p-h1 .line-a { display: block; }
.hero-p-h1 .line-b {
  display: block;
  background: linear-gradient(135deg, var(--p-teal-deep), #0d9488 60%, var(--p-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-p-h1 .line-c {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--p-ink-soft);
}

.hero-p-lead {
  font-size: 1.13rem;
  line-height: 1.65;
  color: #475569;
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-p-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-premium {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn-premium-primary {
  background: var(--p-ink);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(11,18,32,.45), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-premium-primary:hover { transform: translateY(-2px); background: var(--p-teal-deep); color: #fff; }
.btn-premium-ghost {
  background: rgba(255,255,255,.6);
  color: var(--p-ink);
  border-color: var(--p-line);
  backdrop-filter: blur(10px);
}
.btn-premium-ghost:hover { border-color: var(--p-ink); transform: translateY(-2px); }
.btn-premium-lg { padding: 17px 30px; font-size: 1.02rem; }

.play-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--p-teal-deep);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem;
  margin-right: -2px;
}

.hero-p-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  max-width: 480px;
}
.hero-p-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem;
  color: #475569;
}
.hero-p-badge i { color: var(--p-teal-deep); font-size: .92rem; }

/* Hero card (right) */
.hero-p-visual { position: relative; }
.hero-p-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--p-shadow-lg);
  border: 1px solid var(--p-line);
  position: relative;
}
.hero-p-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--p-paper-soft);
  margin-bottom: 22px;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #be4d2c;
  padding: 6px 12px;
  background: rgba(190,77,44,.08);
  border-radius: 999px;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #be4d2c;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-p-card-stats { display: flex; align-items: center; gap: 14px; }
.hs-div { width: 1px; height: 36px; background: var(--p-paper-soft); }
.hs-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--p-teal-deep);
  line-height: 1;
}
.hs-u { font-size: .7rem; color: #94a3b8; margin-left: 2px; font-weight: 600; }
.hs-l { font-size: .68rem; color: #64748b; line-height: 1.3; margin-top: 4px; max-width: 130px; }

.hero-p-card-title {
  font-size: 1.35rem; font-weight: 700;
  color: var(--p-ink); margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.hero-p-card-desc { color: #64748b; font-size: .9rem; line-height: 1.55; margin: 0 0 18px; }
.hero-p-card .inquiry-form { margin: 0; }
.hero-p-card .inquiry-form input,
.hero-p-card .inquiry-form textarea,
.hero-p-card .inquiry-form select {
  background: var(--p-paper);
  border-color: var(--p-line);
}
.hero-p-card .inquiry-form input:focus,
.hero-p-card .inquiry-form textarea:focus,
.hero-p-card .inquiry-form select:focus {
  background: #fff;
  border-color: var(--p-teal-deep);
  box-shadow: 0 0 0 3px rgba(10,77,74,.08);
}

/* Hero decorative blobs */
.hero-p-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .35;
}
.hero-p-blob-1 { width: 500px; height: 500px; top: -150px; right: -200px; background: #99f6e4; }
.hero-p-blob-2 { width: 400px; height: 400px; bottom: -180px; left: -150px; background: #fef3c7; }

/* =================  TRUST BAR  ============================================ */
.trust-bar {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
}
.trust-bar-label {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: #94a3b8; font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}
.trust-bar-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 56px;
}
.trust-logo {
  text-align: center;
  filter: grayscale(0.3);
  opacity: .85;
  transition: filter .25s, opacity .25s, transform .25s;
}
.trust-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
.trust-logo-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--p-ink); letter-spacing: -0.02em;
  line-height: 1;
}
.trust-logo-sub {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: #94a3b8; font-weight: 600; margin-top: 4px;
}

/* =================  SECTION HEADS (premium)  ============================== */
.section-head-premium { max-width: 760px; margin-bottom: 64px; }
.section-head-premium.centered { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow-premium {
  display: inline-block;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700;
  color: var(--p-gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.eyebrow-premium::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 1px; background: var(--p-gold);
}
.section-head-premium.centered .eyebrow-premium { padding-left: 32px; padding-right: 32px; }
.section-head-premium.centered .eyebrow-premium::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 1px; background: var(--p-gold);
}
.eyebrow-premium.on-dark { color: var(--p-gold-soft); }
.eyebrow-premium.on-dark::before, .eyebrow-premium.on-dark::after { background: var(--p-gold-soft); }

.h2-premium {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--p-ink);
  margin: 0 0 18px;
}
.h2-premium.on-dark { color: #fff; }

.lead-premium {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #475569;
  max-width: 640px;
}
.lead-premium.on-dark { color: #cbd5e1; }
.section-head-premium.centered .lead-premium { margin-left: auto; margin-right: auto; }

/* =================  DIFFERENTIATORS  ====================================== */
.diff-section { background: var(--p-paper); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
}
.diff-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10,77,74,.04) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--p-shadow);
  border-color: rgba(10,77,74,.2);
}
.diff-card:hover::after { opacity: 1; }

.diff-metric {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, var(--p-teal-deep), var(--p-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.diff-title {
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--p-ink);
  margin: 0 0 12px;
}
.diff-desc {
  font-size: .96rem; line-height: 1.6;
  color: #475569;
  margin: 0 0 20px;
}
.diff-proof {
  display: flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--p-paper-soft);
  font-size: .82rem; color: #64748b;
}
.diff-proof i {
  color: var(--p-teal-deep);
  background: rgba(10,77,74,.08);
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
}

/* =================  NUMBERS (dark band)  ================================== */
.numbers-section {
  background: var(--p-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.numbers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(13,148,136,.18), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(176,137,71,.12), transparent 60%);
  pointer-events: none;
}
.numbers-section .container { position: relative; z-index: 1; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
@media (max-width: 880px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }

.number-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.number-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(13,148,136,.15);
  color: var(--p-gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.number-n {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em; line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}
.number-l {
  font-size: .9rem; line-height: 1.45;
  color: #cbd5e1;
}
.numbers-caveat {
  text-align: center;
  font-size: .76rem;
  color: #64748b;
  margin: 0;
  letter-spacing: .03em;
}

/* =================  SPECIALTIES  ========================================== */
.specs-section { background: #fff; }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--p-line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 980px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .specs-grid { grid-template-columns: 1fr; } }

.spec-card {
  display: flex; flex-direction: column;
  padding: 36px 28px;
  border-right: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  position: relative;
  transition: background .25s, transform .25s;
  color: var(--p-ink);
  min-height: 220px;
}
.specs-grid > .spec-card:nth-child(4n) { border-right: 0; }
.specs-grid > .spec-card:nth-last-child(-n+4) { border-bottom: 0; }
@media (max-width: 980px) {
  .specs-grid > .spec-card { border-right: 1px solid var(--p-line) !important; border-bottom: 1px solid var(--p-line) !important; }
  .specs-grid > .spec-card:nth-child(2n) { border-right: 0 !important; }
  .specs-grid > .spec-card:nth-last-child(-n+2) { border-bottom: 0 !important; }
}
@media (max-width: 540px) {
  .specs-grid > .spec-card { border-right: 0 !important; border-bottom: 1px solid var(--p-line) !important; }
  .specs-grid > .spec-card:last-child { border-bottom: 0 !important; }
}
.spec-card:hover { background: var(--p-paper); }
.spec-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10,77,74,.08), rgba(176,137,71,.08));
  color: var(--p-teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 22px;
}
.spec-title {
  font-size: 1.18rem; font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--p-ink);
  margin: 0 0 10px;
}
.spec-desc {
  font-size: .9rem; line-height: 1.55;
  color: #64748b;
  margin: 0 0 auto;
  flex: 1;
}
.spec-arrow {
  margin-top: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--p-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--p-ink);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.spec-card:hover .spec-arrow {
  background: var(--p-ink); color: #fff; border-color: var(--p-ink);
  transform: translateX(4px);
}

.specs-all { text-align: center; margin-top: 48px; }
.link-premium {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .96rem;
  color: var(--p-ink);
  border-bottom: 1.5px solid var(--p-ink);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s, gap .25s;
}
.link-premium:hover { color: var(--p-teal-deep); border-color: var(--p-teal-deep); gap: 14px; }

/* =================  PROCESS  ============================================== */
.process-premium { background: var(--p-paper); }
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-rail::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--p-line), var(--p-teal-deep) 50%, var(--p-line));
  z-index: 0;
}
@media (max-width: 980px) {
  .process-rail { grid-template-columns: 1fr; gap: 24px; }
  .process-rail::before { display: none; }
}

.process-stage {
  text-align: center;
  position: relative; z-index: 1;
  padding: 0 14px;
}
.process-stage-label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--p-gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.process-stage-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--p-line);
  margin: 0 auto 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--p-teal-deep);
  box-shadow: 0 4px 12px rgba(11,18,32,.06);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.process-stage:hover .process-stage-num {
  transform: scale(1.08);
  border-color: var(--p-teal-deep);
  box-shadow: 0 12px 24px rgba(10,77,74,.15);
}
.process-stage-title {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--p-ink);
  margin: 0 0 10px;
}
.process-stage-desc {
  font-size: .87rem; line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* =================  OPERATING STANDARD (replaces team)  =================== */
.standard-section { background: #fff; }
.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--p-line);
  border: 1px solid var(--p-line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .standard-grid { grid-template-columns: 1fr; } }

.standard-card {
  background: #fff;
  padding: 36px 32px;
  position: relative;
  transition: background .25s;
}
.standard-card:hover { background: var(--p-paper); }

.standard-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10,77,74,.08), rgba(176,137,71,.10));
  color: var(--p-teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.standard-title {
  font-size: 1.18rem; font-weight: 700;
  letter-spacing: -0.012em; line-height: 1.35;
  color: var(--p-ink);
  margin: 0 0 12px;
}
.standard-desc {
  font-size: .95rem; line-height: 1.62;
  color: #475569;
  margin: 0;
}

.standard-pledge {
  display: flex; gap: 24px; align-items: flex-start;
  max-width: 880px; margin: 0 auto;
  padding: 32px 36px;
  background: var(--p-paper);
  border-left: 3px solid var(--p-gold);
  border-radius: 0 12px 12px 0;
}
.standard-pledge-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.2rem; line-height: 1;
  color: var(--p-gold);
  font-weight: 400;
  flex-shrink: 0;
  margin-top: -6px;
}
.standard-pledge-text {
  font-size: 1.02rem; line-height: 1.65;
  color: var(--p-ink-soft);
  font-style: italic;
  margin: 0;
}
html[dir="rtl"] .standard-pledge {
  border-left: 0; border-right: 3px solid var(--p-gold);
  border-radius: 12px 0 0 12px;
}

/* =================  HOSPITALS PREMIUM  ==================================== */
.hospitals-premium { background: var(--p-paper); }
.hosp-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 880px) { .hosp-featured-grid { grid-template-columns: 1fr; } }

.hosp-featured {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--p-line);
  transition: transform .35s, box-shadow .35s;
  color: var(--p-ink);
}
.hosp-featured:hover { transform: translateY(-4px); box-shadow: var(--p-shadow-lg); color: var(--p-ink); }

.hosp-featured-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--p-paper-soft);
}
.hosp-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.hosp-featured:hover .hosp-featured-img img { transform: scale(1.05); }
.hosp-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,18,32,.4) 100%);
  pointer-events: none;
}
.hosp-featured-badges {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.hosp-featured-badges span {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  padding: 6px 10px;
  background: rgba(255,255,255,.95);
  color: var(--p-ink);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hosp-featured-body { padding: 28px; }
.hosp-featured-meta {
  font-size: .82rem; color: #64748b;
  margin-bottom: 12px;
}
.hosp-featured-meta i { color: var(--p-teal-deep); margin-right: 6px; }
.hosp-featured-title {
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--p-ink);
  margin: 0 0 12px;
  line-height: 1.3;
}
.hosp-featured-desc {
  font-size: .92rem; line-height: 1.6;
  color: #64748b;
  margin: 0 0 20px;
}
.hosp-featured-stats {
  display: flex; gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--p-paper-soft);
}
.hosp-featured-stats > div { display: flex; flex-direction: column; }
.hosp-featured-stats strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--p-ink); letter-spacing: -0.02em;
}
.hosp-featured-stats span { font-size: .76rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

.hosp-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 700px) { .hosp-rail { grid-template-columns: repeat(2, 1fr); } }

.hosp-rail-item {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--p-ink);
  transition: border-color .25s, transform .25s;
}
.hosp-rail-item:hover { border-color: var(--p-teal-deep); transform: translateY(-2px); color: var(--p-ink); }
.hosp-rail-name { font-weight: 600; font-size: .95rem; line-height: 1.3; margin-bottom: 4px; }
.hosp-rail-city { font-size: .78rem; color: #94a3b8; }

/* =================  TESTIMONIALS  ========================================= */
.testimonials-premium { background: #fff; }
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .tm-grid { grid-template-columns: 1fr; } }

.tm-card {
  position: relative;
  background: var(--p-paper);
  border-radius: 20px;
  padding: 40px 32px 28px;
  border: 1px solid var(--p-line);
  transition: transform .35s, box-shadow .35s;
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--p-shadow); }

.tm-quote-mark {
  position: absolute;
  top: -8px; left: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--p-gold);
  opacity: .35;
}
.tm-quote {
  font-size: 1.05rem; line-height: 1.6;
  color: var(--p-ink-soft);
  margin: 0 0 24px;
  font-style: italic;
  font-weight: 500;
}
.tm-cap {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--p-paper-soft);
}
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p-teal-deep), var(--p-gold));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.tm-title { font-size: .92rem; font-weight: 700; color: var(--p-ink); }
.tm-meta { font-size: .78rem; color: #94a3b8; }
.tm-rating { margin-left: auto; color: var(--p-gold); font-size: .85rem; letter-spacing: 1px; }

/* =================  CTA PREMIUM  ========================================== */
.cta-premium {
  background: var(--p-ink);
  color: #fff;
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}
.cta-premium::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(13,148,136,.22), transparent 60%),
    radial-gradient(800px 400px at 100% 100%, rgba(176,137,71,.18), transparent 60%);
  pointer-events: none;
}
.cta-premium-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto; text-align: center;
}
.cta-premium .eyebrow-premium { display: inline-block; padding-left: 32px; padding-right: 32px; }
.cta-premium .eyebrow-premium::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 1px; background: var(--p-gold-soft);
}
.cta-premium-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin: 40px 0 24px;
}
.cta-premium .btn-premium-primary {
  background: #fff; color: var(--p-ink);
  box-shadow: 0 14px 40px -10px rgba(0,0,0,.4);
}
.cta-premium .btn-premium-primary:hover { background: var(--p-gold-soft); color: var(--p-ink); }
.cta-premium .btn-premium-ghost {
  background: rgba(255,255,255,.05);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.cta-premium .btn-premium-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.cta-premium-email {
  font-size: .92rem; color: #94a3b8; margin: 0;
}
.cta-premium-email a { color: var(--p-gold-soft); border-bottom: 1px solid rgba(212,179,120,.4); padding-bottom: 1px; }
.cta-premium-email a:hover { color: #fff; border-color: #fff; }

/* =================  RTL  ================================================== */
html[dir="rtl"] .eyebrow-premium { padding-left: 0; padding-right: 32px; }
html[dir="rtl"] .eyebrow-premium::before { left: auto; right: 0; }
html[dir="rtl"] .section-head-premium.centered .eyebrow-premium::after { left: 0; right: auto; }
html[dir="rtl"] .hero-p-blob-1 { right: auto; left: -200px; }
html[dir="rtl"] .hero-p-blob-2 { left: auto; right: -150px; }
html[dir="rtl"] .hosp-featured-badges { left: auto; right: 16px; }
html[dir="rtl"] .tm-quote-mark { left: auto; right: 24px; }
html[dir="rtl"] .tm-rating { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .spec-arrow .fa-arrow-right::before { content: "\f060"; }
html[dir="rtl"] .btn-premium .fa-arrow-right::before { content: "\f060"; }
html[dir="rtl"] .play-dot { margin-right: 0; margin-left: -2px; }
html[dir="rtl"] .number-icon, html[dir="rtl"] .spec-icon { font-family: inherit; }

/* =================  MOTION & ACCESSIBILITY  =============================== */
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  .btn-premium, .diff-card, .hosp-featured, .tm-card, .team-card, .process-stage-num,
  .hosp-featured-img img, .spec-card { transition: none !important; }
}
