/* Inline CSS extracted from social-responsibility.txt */
:root {
    --csr-pink: #e45fa0;
    --csr-soft-pink: #ffd7e8;
    --csr-black: #050505;
    --csr-ink: #ffffff;
    --csr-muted: rgba(255, 255, 255, 0.72);
    --csr-line: rgba(255, 255, 255, 0.12);
    --csr-radius: 46px;
  }

  .csr-page {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 8px 18px 38px;
    color: var(--csr-ink);
  }

  .csr-topbar {
    max-width: 1220px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .csr-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .csr-logo-link img {
    display: block;
    width: 170px;
    max-width: 48vw;
    height: auto;
  }

  .csr-home-btn {
    min-height: 48px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 999px;
    background: #ffffff;
    color: var(--csr-pink);
    border: 1px solid rgba(228, 95, 160, 0.2);
    box-shadow: 0 12px 30px rgba(228, 95, 160, 0.12);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .csr-home-btn:hover {
    background: #fff6fa;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(228, 95, 160, 0.18);
  }

  .csr-shell {
    max-width: 1180px;
    margin: 40 auto;
    background:
      radial-gradient(circle at 15% 12%, rgba(228, 95, 160, 0.2), transparent 30%),
      radial-gradient(circle at 88% 18%, rgba(255, 215, 232, 0.14), transparent 28%),
      linear-gradient(135deg, #050505 0%, #101012 100%);
    border-radius: var(--csr-radius);
    padding: 86px 78px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  }

  .csr-shell::before,
  .csr-shell::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }

  .csr-shell::before {
    width: 340px;
    height: 340px;
    right: -170px;
    top: -120px;
    border: 1px solid rgba(228, 95, 160, 0.24);
  }

  .csr-shell::after {
    width: 210px;
    height: 210px;
    left: -92px;
    bottom: -82px;
    background: rgba(228, 95, 160, 0.12);
    filter: blur(4px);
  }

  .csr-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
    gap: 58px;
    align-items: center;
  }

  .csr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--csr-soft-pink);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .csr-eyebrow::before {
    content: '';
    width: 34px;
    height: 3px;
    background: linear-gradient(90deg, var(--csr-pink), var(--csr-soft-pink));
    border-radius: 999px;
  }

  .csr-title {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .csr-title span {
    color: var(--csr-pink);
  }

  .csr-divider {
    width: 78px;
    height: 5px;
    background: linear-gradient(90deg, #ffffff, var(--csr-pink));
    border-radius: 999px;
    margin: 30px 0 34px;
  }

  .csr-copy {
    max-width: 790px;
    margin: 0;
    color: var(--csr-muted);
    font-size: 1.15rem;
    line-height: 1.85;
  }

  .csr-copy strong {
    color: #ffffff;
    font-weight: 700;
  }

  .csr-copy + .csr-copy {
    margin-top: 22px;
  }

  .csr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
    align-items: center;
  }

  .csr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 32px;
    background: var(--csr-pink);
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(228, 95, 160, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .csr-btn:hover {
    background: #f076ae;
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(228, 95, 160, 0.42);
  }

  .csr-note {
    color: var(--csr-muted);
    font-size: 0.95rem;
  }

  .csr-impact-card {
    border: 1px solid var(--csr-line);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    padding: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .csr-impact-number {
    font-size: clamp(4.5rem, 12vw, 7.6rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: var(--csr-pink);
  }

  .csr-impact-label {
    margin-top: 18px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .csr-impact-text {
    margin-top: 14px;
    color: var(--csr-muted);
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .csr-pill-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .csr-pill {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
    color: #ffffff;
    border: 1px solid var(--csr-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    font-weight: 600;
  }

  .csr-pill i {
    color: var(--csr-soft-pink);
  }

  .csr-values {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px;
  }

  .csr-value {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--csr-line);
    background: rgba(255, 255, 255, 0.045);
  }

  .csr-value i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(228, 95, 160, 0.16);
    color: var(--csr-soft-pink);
    margin-bottom: 16px;
  }

  .csr-value h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    color: #ffffff;
  }

  .csr-value p {
    margin: 0;
    color: var(--csr-muted);
    font-size: 1rem;
    line-height: 1.65;
  }

  @media (max-width: 900px) {
    .csr-shell {
      padding: 64px 34px;
      border-radius: 34px;
    }

    .csr-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .csr-values {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 540px) {
    .csr-page {
      padding: 28px 12px;
    }

    .csr-topbar {
      margin-bottom: 14px;
    }

    .csr-logo-link img {
      width: 138px;
    }

    .csr-home-btn {
      min-height: 42px;
      padding: 0 20px;
      font-size: 0.92rem;
    }

    .csr-shell {
      padding: 46px 22px;
      border-radius: 28px;
    }

    .csr-copy {
      font-size: 1.15rem;
      line-height: 1.75;
    }

    .csr-btn {
      width: 100%;
    }
  }

.qdepot-sticky-header {
    margin-top: 8px;
    margin-bottom: 18px;
  }
