
    :root {
      --red-1: #ff6b7a;
      --red-2: #ff4757;
      --red-soft: #ffe4ea;
      --dark-text: #1f2933;
      --muted-text: #6b7280;
      --bg-light: #fff7f9;
      --shadow-soft: 0 18px 45px rgba(255,71,87,0.25);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui,-apple-system,BlinkMacSystemFont,"Poppins","Segoe UI",sans-serif;
    }
    body {
      background: linear-gradient(180deg, #fff7f9 0%, #ffffff 40%, #fff5f7 100%);
      color: var(--dark-text);
    }

    /* ---------- HERO SECTION ---------- */
    .ivf-hero {
      position: relative;
      min-height: 80vh;
      padding: 110px 6vw 80px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
      overflow: hidden;
    }

    .ivf-hero__bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 0% 0%, rgba(255,107,122,0.3) 0, transparent 55%),
        radial-gradient(circle at 85% 0%, rgba(255,148,164,0.25) 0, transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(255,107,122,0.22) 0, transparent 60%);
      opacity: 0.85;
      z-index: -1;
      animation: heroBgFloat 16s ease-in-out infinite alternate;
    }
    @keyframes heroBgFloat {
      0% { transform: translateY(0); }
      100% { transform: translateY(-12px); }
    }

    .ivf-hero__content {
      animation: slideUp 1s ease-out;
    }
    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .ivf-hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      background: rgba(255,71,87,0.08);
      color: #b91c1c;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.9rem;
    }
    .ivf-hero__eyebrow i {
      color: var(--red-2);
    }

    .ivf-hero__title {
      font-size: clamp(2.6rem, 3.6vw, 3.3rem);
      line-height: 1.15;
      margin-bottom: 0.9rem;
      background: linear-gradient(135deg, #b91c1c, #7f1d1d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 10px 25px rgba(248,113,113,0.25);
    }

    .ivf-hero__subtitle {
      font-size: 1.05rem;
      color: var(--muted-text);
      margin-bottom: 1.6rem;
      max-width: 530px;
    }

    .ivf-hero__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 2.1rem;
    }
    .ivf-hero__badge {
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #b91c1c;
      background: #fee2e2;
      border: 1px solid rgba(248,113,113,0.6);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .ivf-hero__badge i { color: #ef4444; }

    .ivf-hero__cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.1rem;
    }
    .btn-primary-red,
    .btn-ghost {
      border-radius: 999px;
      padding: 0.85rem 1.7rem;
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .btn-primary-red {
      background: linear-gradient(135deg, var(--red-2), var(--red-1));
      color: #fff;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }
    .btn-primary-red::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
      transform: translateX(-120%);
      transition: transform 0.6s ease;
    }
    .btn-primary-red:hover::after { transform: translateX(120%); }
    .btn-primary-red:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 55px rgba(248,113,113,0.45);
    }

    .btn-ghost {
      background: rgba(255,107,122,0.08);
      color: #b91c1c;
      border: 1px solid rgba(248,113,113,0.5);
    }
    .btn-ghost:hover {
      background: rgba(255,107,122,0.15);
      transform: translateY(-2px);
    }

    .ivf-hero__note {
      font-size: 0.85rem;
      color: #9ca3af;
    }

    /* Hero Right: card / illustration */
    .ivf-hero__visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: floatCard 5s ease-in-out infinite alternate;
    }
    @keyframes floatCard {
      0% { transform: translateY(0); }
      100% { transform: translateY(-10px); }
    }

    .ivf-hero__card {
      position: relative;
      width: 100%;
      max-width: 380px;
      border-radius: 28px;
      background: radial-gradient(circle at 0% 0%, #fff7f9 0, #ffffff 55%, #ffe4ea 100%);
      box-shadow: 0 30px 70px rgba(248,113,113,0.35);
      padding: 1.6rem 1.6rem 1.8rem;
      overflow: hidden;
    }

    .ivf-hero__card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }
    .ivf-hero__chip {
      font-size: 0.78rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(34,197,94,0.08);
      color: #15803d;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }
    .ivf-hero__chip i { color: #22c55e; }

    .ivf-hero__doctor {
      font-size: 0.96rem;
      font-weight: 600;
      color: var(--dark-text);
    }
    .ivf-hero__doctor span {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      color: #6b7280;
    }

  /* Hero image container */
.ivf-hero__image {
  width: 100%;
  height: 300px;        /* Fixed height for card balance */
  border-radius: 18px;  /* Slightly softer for card */
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(220,53,69,0.15);  /* Red glow shadow */
}

/* Image itself */
.ivf-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.ivf-hero__card:hover .ivf-hero__img {
  transform: scale(1.05);  /* Subtle zoom on hover */
}


    .ivf-hero__stats {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
      font-size: 0.8rem;
      color: #6b7280;
    }
    .ivf-hero__stat strong {
      display: block;
      font-size: 1.1rem;
      color: #b91c1c;
    }

    .ivf-hero__steps {
      display: flex;
      gap: 0.7rem;
      font-size: 0.78rem;
      flex-wrap: wrap;
    }
    .ivf-hero__step-pill {
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(255,107,122,0.1);
      color: #b91c1c;
    }

    /* ---------- SECTION: IVF Journey ---------- */
    .ivf-section {
      padding: 70px 6vw 90px;
      background: #ffffff;
      position: relative;
    }

    .ivf-section__header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3.5rem;
    }

    .ivf-section__eyebrow {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #b91c1c;
      margin-bottom: 0.6rem;
    }

    .ivf-section__title {
      font-size: 2.1rem;
      margin-bottom: 0.9rem;
      color: var(--dark-text);
    }

    .ivf-section__subtitle {
      font-size: 0.98rem;
      color: var(--muted-text);
    }

    .ivf-steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .ivf-step {
      background: linear-gradient(135deg, #fff7f9 0%, #ffffff 60%, #ffeef3 100%);
      border-radius: 20px;
      padding: 1.6rem 1.4rem 1.7rem;
      box-shadow: 0 16px 35px rgba(15,23,42,0.06);
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;
    }
    .ivf-step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--red-2), var(--red-1));
      transition: width 0.35s ease;
    }
    .ivf-step:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(248,113,113,0.22);
    }
    .ivf-step:hover::before { width: 100%; }

    .ivf-step__index {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(255,107,122,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b91c1c;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .ivf-step__title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--dark-text);
    }

    .ivf-step__text {
      font-size: 0.9rem;
      color: var(--muted-text);
      line-height: 1.6;
    }

    .ivf-step__tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 0.9rem;
      font-size: 0.8rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(22,163,74,0.06);
      color: #15803d;
    }
    .ivf-step__tag i { color: #22c55e; }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 992px) {
      .ivf-hero {
        grid-template-columns: 1fr;
        padding-top: 90px;
      }
      .ivf-hero__visual {
        order: -1;
      }
      .ivf-hero__card {
        margin-inline: auto;
      }
    }

    @media (max-width: 768px) {
      .ivf-hero {
        padding: 80px 5vw 60px;
      }
      .ivf-hero__title {
        font-size: 2.3rem;
      }
      .ivf-steps {
        grid-template-columns: 1fr;
      }
    }


    