.uvd-scope {
    --uvd-bg: #0a0a0c;
    --uvd-accent: #e05a3a;
    --uvd-accent-soft: rgba(224, 90, 58, 0.35);
    --uvd-text-primary: #fdf9f6;
    --uvd-text-muted: rgba(235, 228, 222, 0.78);
    --uvd-card-bg: #17120f;
    --uvd-card-border: rgba(224, 110, 70, 0.35);
    --uvd-logo-box: #0e2140;

    background: var(--uvd-bg);
    font-family: "Quicksand", system-ui, sans-serif;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 6vw, 5rem);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Reset sirf apne elements par — host page untouched */
  .uvd-scope,
  .uvd-scope * {
    margin: 0;
    box-sizing: border-box;
  }

  .uvd-inner {
    width: 100%;
    /* max-width: 1630px; */
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
  }

  /* ---------- Left column ---------- */

  .uvd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--uvd-accent);
    margin-bottom: 1.4rem;
  }

  .uvd-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--uvd-accent);
    flex-shrink: 0;
  }

  .uvd-title {
    font-family: "Zilla Slab", Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--uvd-text-primary);
    max-width: 16ch;
    margin-bottom: 1.4rem;
  }

  .uvd-desc {
    font-family: inherit;
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    font-weight: 500;
    line-height: 1.7;
    color: var(--uvd-text-muted);
    max-width: 52ch;
  }

  /* ---------- Right column: card ---------- */

  .uvd-card {
    position: relative;
    border: 1px solid var(--uvd-card-border);
    border-radius: 22px;
    background:
      radial-gradient(ellipse 70% 60% at 18% 0%,
        rgba(224, 90, 58, 0.22) 0%,
        rgba(160, 60, 40, 0.10) 45%,
        transparent 75%),
      var(--uvd-card-bg);
    padding: clamp(1.5rem, 3vw, 2rem);
    overflow: hidden;
  }

  .uvd-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    box-shadow: 0 0 32px 6px rgba(255, 190, 140, 0.35);
  }

  .uvd-card-icon svg {
    width: 26px;
    height: 26px;
    display: block;
    color: var(--uvd-accent);
  }

  .uvd-card-title {
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--uvd-text-primary);
    margin-bottom: 0.7rem;
  }

  .uvd-card-text {
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--uvd-text-muted);
    margin-bottom: 1.5rem;
  }

  .uvd-logo-box {
    background: var(--uvd-logo-box);
    border-radius: 12px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  /* Partner logo image yahan lagayein */
  .uvd-logo-box img {
    max-height: 56px;
    max-width: 100%;
    display: block;
  }

  /* Agar logo image nahi hai toh text fallback */
  .uvd-logo-fallback {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.25;
  }

  .uvd-logo-fallback small {
    display: block;
    font-family: "Quicksand", system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 860px) {
    .uvd-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .uvd-card {
      max-width: 520px;
    }
  }
  @media (max-width: 520px) {
    .uvd-card-text {
      font-size: 0.78rem; 
    }
  }