/* =====================================================
   PRALASH — About Us Page Styles
   ===================================================== */

  /* ── HERO ── */
  .about-hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
  }

  .about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A0A0B 0%, #1C1C1E 45%, #2A2A2E 75%, #3F3F42 100%);
  }

  .about-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .about-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 206, 27, 0.18) 0%, transparent 70%);
    top: -100px;
    right: -80px;
  }

  .about-hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.07) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
  }

  .about-hero-visual {
    position: relative;
  }

  .about-hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  }

  .about-hero-stat-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
  }

  .about-hero-stat-card i {
    font-size: 1.25rem;
    color: var(--primary);
  }

  .about-hero-stat-card div strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  .about-hero-stat-card div span {
    font-size: 0.7rem;
    color: var(--text-muted);
  }

  .ahsc-1 {
    top: 18px;
    left: -18px;
  }

  .ahsc-2 {
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
  }

  .ahsc-3 {
    bottom: 30px;
    left: -18px;
  }

  @media (max-width: 991px) {
    .about-hero {
      min-height: auto;
      padding: 80px 0 50px;
    }

    .about-hero-img {
      height: 280px;
    }

    .about-hero-stat-card {
      display: none;
    }
  }

  /* ── SUMMARY STRIP ── */
  .about-summary-strip {
    background: var(--primary-gradient);
    padding: 2.5rem 0;
  }

  /* ── IMG SPLIT ── */
  .about-img-split {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
  }

  .about-split-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .about-split-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
  }

  .about-split-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 767px) {
    .about-img-split {
      padding: 0 0 1rem;
    }

    .about-split-accent {
      display: none;
    }

    .about-split-main {
      height: 260px;
    }
  }

  /* ── APPROACH ── */
  .about-approach-section {
    background: linear-gradient(160deg, #0A0A0B 0%, #1C1C1E 100%);
    padding: 100px 0;
  }

  .approach-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
  }

  .approach-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
  }

  .approach-card-featured {
    background: rgba(255, 206, 27, 0.14);
    border-color: rgba(255, 206, 27, 0.45);
  }

  .approach-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
  }

  .approach-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0.75rem auto 1.25rem;
  }

  .approach-card h3 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
  }

  .approach-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin: 0;
  }

  /* ── PRIORITY PILL ── */
  .about-priority-pill {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    margin: 0.5rem 0 0.25rem;
    text-transform: uppercase;
  }

  .about-priority-pill-skin {
    background: #fce4ec;
    color: #c2185b;
  }

  .about-priority-pill-hair {
    background: #e8f5e9;
    color: #2e7d32;
  }

  /* ── TREATMENT GRID ── */
  .about-treatment-grid {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .atg-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
  }

  .atg-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .atg-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  .atg-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* ── TECH + LOCATION ── */
  .about-infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .aig-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }

  .aig-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .aig-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
  }

  .aig-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
  }

  @media (max-width: 479px) {
    .about-infra-grid {
      grid-template-columns: 1fr;
    }
  }

  .about-location-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.3rem;
    border-left: 4px solid var(--primary);
  }

  .alc-icon {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 3px;
  }

  .about-location-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
  }

  .about-location-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
  }

  .about-areas-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .about-area-tag {
    background: white;
    border: 1px solid var(--border);
    color: var(--text-body);
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .about-area-tag i {
    color: var(--primary);
    font-size: 0.65rem;
  }

  /* ── PATIENT EXPERIENCE ── */
  .patient-exp-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
  }

  .patient-exp-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    transform: translateY(-4px);
  }

  .patient-exp-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
  }

  .pec-step {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
  }

  .pec-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0.5rem auto 1.1rem;
  }

  .patient-exp-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .patient-exp-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
  }

  /* ── DIFF GRID ── */
  .about-diff-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .adg-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
  }

  .adg-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
  }

  .adg-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }

  .adg-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
  }

  /* ── CTA ── */
  .about-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }

  .about-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1C1C1E 0%, #3F3F42 50%, #1C1C1E 100%);
  }
