        :root {
  --primary: #1e4fd7;
  --secondary: #00a8a8;
  --dark: #0f172a;
  --soft-bg: #f5f8ff;
  --text: #334155;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
}
.footer li {
      margin-bottom: 0px !important;
      line-height: normal !important;
    }
/* HERO */
.hero {
  padding:0px !important;
  color: white;
}

.hero-content {
  margin: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  opacity: 0.85;
}

.hero h1 {
  font-size: 48px;
  margin: 15px 0;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 500;
}

.hero-description {
  max-width: 700px;
  margin-top: 15px;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 30px;
}


/* SECTIONS */
.section {
  padding: 90px 20px;
}

.section-soft {
  background: var(--soft-bg);
}

.container {
  max-width: 1320px;
  margin: auto;
}

.section-title {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-intro {
  max-width: 750px;
  margin-bottom: 50px;
}

/* SUPPORT GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.support-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.support-card:hover {
  transform: translateY(-6px);
}

/* HYBRID */
.hybrid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.hybrid-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
}

/* LISTS */
ul {
  margin-top: 15px;
}

ul li {
  margin-bottom: 10px;
}

/* FEATURE LIST */
.feature-list {
  max-width: 700px;
  font-size: 18px;
}

/* SPECIALTIES */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* PILLS */
.pill-list span {
  display: inline-block;
  background: #e8f1ff;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 50px;
  margin: 8px;
  font-weight: 500;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.btn-large {
  margin-top: 25px;
  padding: 18px 36px;
}



.provider-platform {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.platform-container {
  max-width: 1200px;
  margin: auto;
}

.platform-header {
  max-width: 860px;
  margin-bottom: 70px;
}

.platform-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #049ebb;
  font-weight: 600;
  margin-bottom: 12px;
}

.platform-header h2 {
  font-size: 38px;
  color: #0f172a;
  margin-bottom: 18px;
}

.platform-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
}

/* CARDS */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.platform-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle top accent line */
.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #049ebb, #0ea5e9);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.platform-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 12px;
}

.platform-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.hybrid-visual {
 
  background: #f8fafc;
}

.hybrid-header {
max-width:860px;
  margin-bottom: 90px;
}

.hybrid-header h2 {
  font-size: 40px;
  color: #0f172a;
  margin: 15px 0;
}

.hybrid-header p {
  font-size: 18px;
  color: #475569;
}

/* ROW */
.hybrid-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 110px;
}

.hybrid-row.reverse {
  grid-template-columns: 1fr 1.1fr;
}

/* IMAGES */
.hybrid-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hybrid-images img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
}

/* Make first image larger */
.hybrid-images img:first-child {
  grid-column: span 2;
  height: 280px;
}

/* CONTENT */
.hybrid-content h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #0f172a;
}

.hybrid-content ul {
  list-style: none;
  padding-left: 0;
}

.hybrid-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 17px;
  color: #334155;
}

.hybrid-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}


.network-header {
  max-width: 860px;
  margin-bottom: 50px;
}

.network-header h2 {
  font-size: 38px;
  color: #0f172a;
  margin: 15px 0;
}

.network-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

/* CARDS */
.network-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px 45px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.network-card h3 {
  font-size: 26px;
  margin-bottom: 28px;
  color: #0f172a;
}

/* FEATURE LIST */
.network-features {
  list-style: none;
  padding: 0;
}

.network-features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  font-size: 17px;
  color: #334155;
}

.network-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #049ebb;
  font-weight: 700;
}

/* GLASS EFFECT */
.network-card.glass {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.95)
  );
  backdrop-filter: blur(6px);
}

/* SPECIALTIES */
.specialty-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.specialty-lists h4 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #049ebb;
}

.specialty-lists ul {
  list-style: none;
  padding: 0;
}

.specialty-lists li {
  margin-bottom: 10px;
  color: #334155;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
}
.eyebrow{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #049ebb;
    font-weight: 600;
    margin-bottom: 12px;
}

.careers-highlight {
  position: relative;
  overflow: hidden;
  padding: 15px !important;
}

/* GRID */
.careers-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

/* RIGHT IMAGE OUTSIDE CONTAINER */
.careers-image-outside {
  position: absolute;
  right: -80px; /* push outside */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.careers-image-outside img {
  height: 600px;
  max-width: none;
  border-radius: 28px;
}

.careers-roles {
  display: grid;
  gap: 18px;
}

/* CARD */
.role-card.premium {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fbff 100%
  );
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all .3s ease;
}

/* ICON */
.role-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* TEXT */
.role-card h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.role-card p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* HOVER */
.role-card.premium:hover {
  transform: translateX(10px);
  box-shadow: 0 28px 70px rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.25);
}

.ccm-partner-cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e5e7eb;
  padding: 120px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.cta-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
}

.ccm-partner-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.cta-features {
  display: grid;
  gap: 28px;
}

.cta-feature h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.cta-feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* RIGHT PANEL */
.cta-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 42px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.cta-panel h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #ffffff;
}

.cta-panel p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 20px 0 30px;
  color: #dbeafe;
}

.cta-button {
  display: inline-block;
  padding: 14px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #049ebb, #049e77);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(59,130,246,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(59,130,246,0.45);
  color: #ffffff;
}

/* FOOTER */
.cta-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.cta-footer strong {
  display: block;
  color: #ffffff;
}

.cta-footer span {
  font-size: 0.85rem;
  color: #93c5fd;
}

/* MOBILE */
@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}
