

/* ============================
   SURGERY HERO – MODERN V2
============================ */

.surgery-hero-v2 {
  position: relative;
  padding: 90px 16px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  overflow: hidden;
}

/* Soft floating glows */
.bg-blur {
  position: absolute;
  width: 280px;
  height: 280px;
  filter: blur(80px);
  opacity: 0.6;
}

.bg-blur.pink {
  background: #fca5a5;
  top: -80px;
  right: -60px;
}

.bg-blur.blue {
  background: #93c5fd;
  bottom: -90px;
  left: -60px;
}

/* Glass Card – Wider & Compact */
.hero-card {
  max-width: 820px;              /* ⬅️ wider (from 640px) */
  margin: auto;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-radius: 22px;

  padding: 22px 32px;            /* ⬅️ reduced height by ~40% */
  
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255,255,255,.85);

  position: relative;
  z-index: 2;
}


.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;             /* ⬅️ reduced vertical padding */
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  margin-bottom: 10px;           /* ⬅️ less gap */
}

.hero-card h1 {
  font-size: 26px;               /* ⬅️ slightly smaller */
  line-height: 1.18;             /* ⬅️ tighter line-height */
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;           /* ⬅️ reduced */
}

.hero-card h1 span {
  color: #4f46e5;
}


.hero-card p {
  font-size: 14.5px;
  line-height: 1.55;             /* ⬅️ tighter */
  color: #475569;
  margin-bottom: 18px;           /* ⬅️ reduced spacing */
}


/* CTA Row */
.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.cta {
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.cta.primary {
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 12px 30px rgba(79,70,229,.35);
}

.cta.ghost {
  background: transparent;
  border: 1px solid #c7d2fe;
  color: #4f46e5;
}

/* Trust strip */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #334155;
}

/* ============================
   DESKTOP POLISH
============================ */

@media (min-width: 900px) {
  .surgery-hero-v2 {
    padding: 130px 8%;
  }

@media (min-width: 1024px) {
  .hero-card {
    max-width: 900px;
  }
}


  .hero-card h1 {
    font-size: 44px;
  }

  .hero-card p {
    font-size: 17px;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
  }
}
/* ===============================
   MODERN FRACTURE SECTION
   Clean • Professional • Smooth
================================ */

.fracture-section {
  max-width: 1100px;
  margin: 70px auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  background: #f9fbff;
}

.fracture-header {
  text-align: center;
  margin-bottom: 50px;
}

.fracture-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.fracture-header p {
  color: #475569;
  font-size: 1rem;
}

/* Grid */

.fracture-container {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .fracture-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .fracture-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */

.fracture-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.fracture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.fracture-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.preview {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Hidden checkbox */

.toggle {
  display: none;
}

/* More content */

.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.more-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 14px;
}

/* Expand effect */

.toggle:checked ~ .more-content {
  max-height: 200px;
  opacity: 1;
}

/* Button */

.btn-toggle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
  position: relative;
  padding-right: 18px;
  transition: color 0.3s ease;
}

.btn-toggle::after {
  content: "Know More →";
}

.toggle:checked + .more-content + .btn-toggle::after {
  content: "Show Less ↑";
}

/* Smooth Button Hover */

.btn-toggle:hover {
  color: #1d4ed8;
}
