section { padding: 80px 0; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

h1, h2 { font-weight: 600; letter-spacing: -0.5px; }

.card-grid, .role-grid, .icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card, .role-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 40px;
}

.employment-hero {
  background: linear-gradient(135deg, #0b3c5d, #1f6fa5);
  color: #fff;
  text-align: center;
}

.employment-cta {
  background: #0b3c5d;
  color: #fff;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: #4dd0e1;
  color: #003;
  border-radius: 30px;
  font-weight: 600;
}
.support-suite-v2 {
  background: #f8fafc;
  padding: 90px 0;
}

.suite-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 50px;
}

.suite-line {
  width: 6px;
  height: 60px;
  background: linear-gradient(#0b3c5d, #1f6fa5);
  border-radius: 6px;
}

.suite-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.suite-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.suite-card:hover {
  transform: translateY(-6px);
}

.neurology-platform {
  background: linear-gradient(180deg, #f8fafc, #eef4f8);
  padding: 0px !important;
}

.platform-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.platform-header h2 {
  font-size: 36px;
  font-weight: 600;
}

.platform-header p {
  font-size: 17px;
  color: #555;
}

.platform-top,
.platform-bottom {
  display: grid;
  gap: 32px;
}

.platform-top {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.platform-bottom {
  margin-top: 40px;
}

.platform-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.platform-card.wide {
  margin-bottom: 32px;
}

.platform-card.highlight {
  background: linear-gradient(135deg, #0b3c5d, #1f6fa5);
  color: #fff;
}

.platform-card h3 {
  margin-bottom: 20px;
}

.platform-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 28px;
}

.platform-note {
  margin-top: 16px;
  font-size: 14px;
  color: #777;
}

.check-list li {
  margin-bottom: 10px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 14px;
}

.pill-grid span {
  background: rgba(255,255,255,0.15);
  padding: 14px 18px;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
}
.premium-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 15px;
  color: #2c2c2c;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s ease forwards;
}

.premium-list li:nth-child(1) { animation-delay: 0.1s; }
.premium-list li:nth-child(2) { animation-delay: 0.2s; }
.premium-list li:nth-child(3) { animation-delay: 0.3s; }
.premium-list li:nth-child(4) { animation-delay: 0.4s; }
.premium-list li:nth-child(5) { animation-delay: 0.5s; }

.list-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0b3c5d, #1f6fa5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.premium-list li:hover .list-icon {
  transform: scale(1.1);
}

/* animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subspecialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.sub-item {
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s ease;
}

.sub-item i {
  color: #1f6fa5;
  font-size: 18px;
}

.sub-item:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.premium-check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.premium-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 15px;
  color: #2c2c2c;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s ease forwards;
}

.premium-check-list li:nth-child(1){animation-delay:.1s}
.premium-check-list li:nth-child(2){animation-delay:.2s}
.premium-check-list li:nth-child(3){animation-delay:.3s}
.premium-check-list li:nth-child(4){animation-delay:.4s}

.check-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.pediatric-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 40px;
}

.pediatric-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.pediatric-grid .icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0b3c5d, #1f6fa5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

/* Mobile */
@media (max-width: 768px) {
  .pediatric-grid {
    grid-template-columns: 1fr;
  }
}
.premium-list li:hover .list-icon {
    transform: scale(1.1);
}
.cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 18px;

  /* blended navy glass */
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.04)
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.15);

  color: #ffffff;
  cursor: pointer;
  transition: all 0.35s ease;
}

.cta-dark:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cta-label {
  font-size: 13px;
  letter-spacing: 0.6px;
  opacity: 0.8;
  text-transform: uppercase;
}

.cta-email {
  font-size: 17px;
  font-weight: 600;
  color: #eaf4ff;
}

.employment-roles {
  background: linear-gradient(180deg, #f7fafc, #eef3f7);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 34px;
}

.role-showcase {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  margin-bottom: 36px;
}

.role-showcase img {
  height: 420px;
  transition: opacity 0.6s ease;
  float: inline-end;
}

.role-content {
  position: absolute;
  inset: 0;
  padding: 48px;
  background: linear-gradient(
    to right,
    rgba(8,40,65,0.92),
    rgba(8,40,65,0.4)
  );
  color: #fff;
}

.role-content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.role-content p {
  max-width: 520px;
  opacity: 0.9;
}

.role-content ul {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.role-content li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.role-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6fd3ff;
}

/* Role Grid */
.role-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.role-card {
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid #d9e4ee;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.role-card.active {
  background: #0a3d62;
  color: #fff;
  border-color: #0a3d62;
}

.role-note {
  text-align: center;
  margin-top: 20px;
  color: #6b7280;
}
