:root {
  --hc-black: #0a0a0a;
  --hc-gold: #c8a951;
  --hc-gold-light: #e8c96a;
  --hc-white: #fafafa;
  --hc-grey: #f2f2f0;
  --hc-text: #1a1a1a;
  --hc-muted: #666666;
}

.hc-page, .hc-page * {
  box-sizing: border-box;
}

.hc-page {
  font-family: 'DM Sans', sans-serif;
  color: var(--hc-text);
  background: var(--hc-white);
  overflow-x: hidden;
}

.hc-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hc-gold);
  margin-bottom: 16px;
}

.hc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--hc-black);
  margin-bottom: 64px;
  max-width: 720px;
}

.hc-hero {
  position: relative;
  background: var(--hc-black);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hc-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hc-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hc-hero-inner {
  position: relative;
  z-index: 2;
}

.hc-logo-wrap {
  margin-bottom: 40px;
  opacity: 1;
  animation: none;
}

.hc-logo {
  max-height: 60px;
  width: auto;
  display: block;
}

.hc-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: var(--hc-white);
  margin-bottom: 24px;
  opacity: 1;
  animation: none;
}

.hc-hero-title span {
  color: var(--hc-gold);
  display: block;
}

.hc-hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 1;
  animation: none;
}

.hc-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 1;
  animation: none;
}

.hc-btn-gold, .hc-btn-outline-light, .hc-btn-dark, .hc-btn-outline-dark {
  display: inline-block;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hc-btn-gold {
  background: var(--hc-gold);
  color: var(--hc-black);
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hc-btn-gold:hover {
  background: var(--hc-gold-light);
  color: var(--hc-black);
  transform: translateY(-2px);
}

.hc-btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--hc-white);
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 400;
}

.hc-btn-outline-light:hover {
  border-color: var(--hc-gold);
  color: var(--hc-gold);
}

.hc-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  opacity: 1;
  animation: none;
}

.hc-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--hc-gold);
}

.hc-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hc-trust-bar {
  background: var(--hc-gold);
  padding: 20px 0;
}

.hc-trust-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hc-trust-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hc-black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hc-trust-item::before {
  content: '✓';
  font-weight: 700;
}

.hc-hospitals, .hc-pricing {
  padding: 100px 0;
  background: var(--hc-white);
}

.hc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: #e0e0e0;
}

.hc-hospital-card {
  position: relative;
  background: var(--hc-white);
  padding: 48px 40px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hc-hospital-card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--hc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hc-hospital-card:hover {
  background: #fafaf7;
}

.hc-hospital-card:hover::before {
  transform: scaleX(1);
}

.hc-hospital-icon {
  font-size: 36px;
  margin-bottom: 24px;
  display: block;
}

.hc-hospital-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--hc-black);
  margin-bottom: 8px;
}

.hc-hospital-location {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hc-gold);
  margin-bottom: 20px;
}

.hc-hospital-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--hc-muted);
  margin-bottom: 28px;
}

.hc-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hc-feature-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--hc-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hc-feature-list li::before {
  content: '→';
  color: var(--hc-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.hc-wav {
  position: relative;
  background: var(--hc-black);
  padding: 100px 0;
  overflow: hidden;
}

.hc-wav::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,169,81,0.05) 100%);
  pointer-events: none;
}

.hc-wav .hc-section-title, .hc-wav-title, .hc-wav-subtitle, .hc-wav-feature-title {
  color: var(--hc-white);
}

.hc-wav-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hc-wav-title span {
  color: var(--hc-gold);
}

.hc-wav-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.hc-wav-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hc-wav-feature-card, .hc-wav-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hc-wav-feature-card {
  padding: 20px;
}

.hc-wav-feature-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.hc-wav-feature-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hc-wav-feature-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 0;
}

.hc-wav-stat-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hc-wav-stat {
  border-left: 3px solid var(--hc-gold);
  padding: 28px 32px;
}

.hc-wav-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--hc-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hc-wav-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  margin-bottom: 0;
}

.hc-how {
  padding: 100px 0;
  background: var(--hc-grey);
}

.hc-steps {
  position: relative;
  margin-top: 60px;
}

.hc-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--hc-gold), transparent);
}

.hc-step {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 40px 0;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hc-step:last-child {
  border-bottom: none;
}

.hc-step-number {
  width: 56px;
  height: 56px;
  background: var(--hc-black);
  color: var(--hc-gold);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hc-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hc-black);
  margin-bottom: 8px;
}

.hc-step-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--hc-muted);
  margin-bottom: 0;
}

.hc-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: #e0e0e0;
  margin-top: 60px;
}

.hc-price-card {
  background: var(--hc-white);
  padding: 40px 32px;
  text-align: center;
}

.hc-price-card.is-featured {
  background: var(--hc-black);
}

.hc-price-hospital {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hc-gold);
  margin-bottom: 16px;
}

.hc-price-route {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hc-black);
  margin-bottom: 24px;
  line-height: 1.3;
}

.hc-price-card.is-featured .hc-price-route {
  color: var(--hc-white);
}

.hc-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--hc-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hc-price-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--hc-muted);
  margin-bottom: 28px;
}

.hc-price-card.is-featured .hc-price-note {
  color: rgba(255,255,255,0.4);
}

.hc-price-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.hc-price-list li {
  font-size: 13px;
  color: var(--hc-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-price-card.is-featured .hc-price-list li {
  color: rgba(255,255,255,0.5);
}

.hc-price-list li::before {
  content: '✓';
  color: var(--hc-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.hc-cta {
  background: var(--hc-gold);
  padding: 80px 0;
  text-align: center;
}

.hc-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--hc-black);
  margin-bottom: 16px;
}

.hc-cta-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(0,0,0,0.6);
  margin-bottom: 40px;
}

.hc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hc-btn-dark {
  background: var(--hc-black);
  color: var(--hc-white);
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hc-btn-dark:hover {
  background: #222222;
  color: var(--hc-white);
  transform: translateY(-2px);
}

.hc-btn-outline-dark {
  border: 2px solid var(--hc-black);
  color: var(--hc-black);
  padding: 20px 48px;
  font-size: 16px;
  font-weight: 700;
}

.hc-btn-outline-dark:hover {
  background: rgba(0,0,0,0.08);
  color: var(--hc-black);
}

.hc-footer {
  background: var(--hc-black);
  padding: 40px 0;
  text-align: center;
}

.hc-footer-text {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

.hc-footer-link {
  color: var(--hc-gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.hc-footer-link:hover {
  color: var(--hc-gold-light);
}

@keyframes hcFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hc-wav-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .hc-hero {
    padding: 60px 0 48px;
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .hc-hospitals, .hc-wav, .hc-how, .hc-pricing, .hc-cta {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hc-hero-stats {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .hc-trust-list {
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .hc-step {
    gap: 20px;
  }
}

