:root {
  --hc-navy: #0a2540;
  --hc-navy-dark: #071a2e;
  --hc-blue: #1e3a8a;
  --hc-teal: #0d9488;
  --hc-cyan: #06b6d4;
  --hc-sky: #38bdf8;
  --hc-light: #f8fafc;
  --hc-gray: #64748b;
  --hc-border: #e2e8f0;
  --hc-white: #ffffff;
  --hc-shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
  --hc-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
  --hc-shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.12);
  --hc-radius: 16px;
  --hc-radius-lg: 24px;
  --hc-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET FOR HEALTHCARE SECTIONS ONLY ===== */
.hc-trust-wrapper,
.hc-process-wrapper,
.hc-partners-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hc-trust-wrapper *,
.hc-process-wrapper *,
.hc-partners-wrapper * {
  box-sizing: border-box;
}

/* ===== TRUST & COMPLIANCE SECTION ===== */
.hc-trust-wrapper {
  background: linear-gradient(135deg, var(--hc-light) 0%, #e0f2fe 40%, var(--hc-white) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.hc-trust-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hc-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hc-trust-header {
  text-align: center;
  margin-bottom: 56px;
}

.hc-trust-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hc-navy);
  margin: 0 0 12px;
  line-height: 1.25;
}

.hc-trust-subtitle {
  font-size: 1.1rem;
  color: var(--hc-gray);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hc-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.hc-trust-item {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: var(--hc-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--hc-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hc-trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hc-navy), var(--hc-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hc-trust-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--hc-shadow-lg);
  border-color: rgba(10,37,64,0.15);
}

.hc-trust-item:hover::before {
  transform: scaleX(1);
}

.hc-trust-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e0f2fe, var(--hc-white));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--hc-navy);
  border: 1px solid var(--hc-border);
  transition: var(--hc-transition);
}

.hc-trust-item:hover .hc-trust-icon-wrap {
  background: linear-gradient(135deg, var(--hc-navy), var(--hc-blue));
  color: var(--hc-white);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 28px rgba(10,37,64,0.3);
  border-color: transparent;
}

.hc-trust-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin: 0 0 12px;
}

.hc-trust-item-desc {
  font-size: 0.95rem;
  color: var(--hc-gray);
  line-height: 1.65;
  margin: 0;
}

/* ===== PROCESS WORKFLOW SECTION ===== */
.hc-process-wrapper {
  background: var(--hc-white);
  padding: 90px 0;
  position: relative;
}

.hc-process-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hc-navy) 20%, var(--hc-navy) 80%, transparent);
  transform: translateY(-50%);
  opacity: 0.08;
  z-index: 0;
}

@media (max-width: 991px) {
  .hc-process-wrapper::after { display: none; }
}

.hc-process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hc-process-header {
  text-align: center;
  margin-bottom: 64px;
}

.hc-process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hc-navy);
  margin: 0 0 16px;
  background: linear-gradient(90deg, var(--hc-navy), var(--hc-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hc-process-subtitle {
  font-size: 1.15rem;
  color: var(--hc-gray);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hc-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.hc-process-step {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--hc-border);
  transition: var(--hc-transition);
  position: relative;
  height: 100%;
}

.hc-process-step:hover {
  transform: translateY(-12px);
  box-shadow: var(--hc-shadow-lg);
  border-color: var(--hc-navy);
}

.hc-step-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--hc-navy), var(--hc-blue));
  color: var(--hc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(10,37,64,0.25);
}

.hc-step-badge::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(10,37,64,0.2);
  border-radius: 50%;
  animation: hc-rotate 16s linear infinite;
}

@keyframes hc-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hc-step-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin: 0 0 14px;
}

.hc-step-text {
  font-size: 0.95rem;
  color: var(--hc-gray);
  line-height: 1.7;
  margin: 0;
}

/* ===== PARTNERS SECTION ===== */
.hc-partners-wrapper {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f7fa 40%, #f8fafc 100%);
  padding: 90px 0;
  color: var(--hc-navy);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative elements */
.hc-partners-wrapper::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hc-partners-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hc-partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hc-partners-header {
  margin-bottom: 56px;
}

.hc-partners-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--hc-navy);
  background: linear-gradient(90deg, var(--hc-navy), var(--hc-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hc-partners-subtitle {
  font-size: 1.1rem;
  color: var(--hc-gray);
  margin: 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hc-partners-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.hc-partner-card {
  background: var(--hc-white);
  border: 1px solid var(--hc-border);
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--hc-transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.hc-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--hc-teal), var(--hc-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hc-partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hc-shadow-lg);
  border-color: var(--hc-teal);
}

.hc-partner-card:hover::before {
  transform: scaleX(1);
}

.hc-partner-label {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--hc-navy);
  transition: color 0.3s ease;
}

.hc-partner-card:hover .hc-partner-label {
  color: var(--hc-teal);
}

.hc-cta-wrap {
  margin-top: 16px;
}

.hc-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--hc-navy), var(--hc-blue));
  color: var(--hc-white);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--hc-transition);
  border: none;
  box-shadow: 0 8px 25px rgba(10,37,64,0.15);
}

.hc-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(10,37,64,0.25);
  color: var(--hc-white);
}

.hc-cta-button i {
  transition: transform 0.3s ease;
}

.hc-cta-button:hover i {
  transform: translateX(4px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 991px) {
  .hc-trust-wrapper,
  .hc-process-wrapper,
  .hc-partners-wrapper {
    padding: 70px 0;
  }
  
  .hc-trust-title,
  .hc-partners-title {
    font-size: 1.9rem;
  }
  
  .hc-process-title {
    font-size: 2.1rem;
  }
  
  .hc-trust-grid,
  .hc-process-steps,
  .hc-partners-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hc-trust-wrapper,
  .hc-process-wrapper,
  .hc-partners-wrapper {
    padding: 56px 0;
  }
  
  .hc-trust-title,
  .hc-process-title,
  .hc-partners-title {
    font-size: 1.7rem;
  }
  
  .hc-trust-subtitle,
  .hc-process-subtitle,
  .hc-partners-subtitle {
    font-size: 1rem;
  }
  
  .hc-trust-grid,
  .hc-process-steps,
  .hc-partners-showcase {
    grid-template-columns: 1fr;
  }
  
  .hc-trust-item,
  .hc-process-step,
  .hc-partner-card {
    padding: 28px 20px;
  }
  
  .hc-step-badge {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
  
  .hc-cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

@media (max-width: 479px) {
  .hc-trust-icon-wrap {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  
  .hc-step-badge {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }
  
  .hc-trust-item-title,
  .hc-step-heading {
    font-size: 1.05rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .hc-trust-wrapper,
  .hc-process-wrapper,
  .hc-partners-wrapper {
    background: white !important;
    color: black !important;
  }
  
  .hc-trust-item,
  .hc-process-step,
  .hc-partner-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .hc-cta-button {
    display: none;
  }
}

