/* ═══════════════════════
       CSS
  ═══════════════════════ */
  
    :root {
      --green:       #3aab5e;
      --green-mid:   #2d9150;
      --green-dark:  #1e6b3a;
      --green-pale:  #edf9f1;
      --green-light: #c8edda;
      --sky:         #38b6e8;
      --sky-mid:     #1e9fd4;
      --sky-dark:    #126b96;
      --sky-pale:    #eaf7fd;
      --sky-light:   #bde6f7;
      --white:       #ffffff;
      --page-bg:     #f6fafc;
      --border:      #ddeef5;
      --text-dark:   #192d3c;
      --text-mid:    #3b5568;
      --text-soft:   #6b8699;
      --font:        'Inter',sans-serif;
      --radius:      22px;
      --shadow-rest: 0 2px 14px rgba(30,159,212,0.07), 0 1px 3px rgba(0,0,0,0.04);
      --shadow-hover:0 24px 60px rgba(56,182,232,0.20), 0 8px 24px rgba(58,171,94,0.12);
      --ease:        cubic-bezier(0.34,1.2,0.64,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth;overflow-x: hidden; }

    body {
      font-family: var(--font);
      background: var(--page-bg);
      color: var(--text-dark);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── HERO ───────────────── */
    .hero {
      background: var(--white);
      border-bottom: 1.5px solid var(--border);
      padding: 50px 24px 20px;
      /* padding: 68px 24px 56px; */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(56,182,232,0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -50px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(58,171,94,0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sky-mid);
      background: var(--sky-pale);
      border: 1px solid var(--sky-light);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--sky);
      display: inline-block;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.75); }
    }

    .hero h1 {
      white-space: nowrap;
      font-size: clamp(2rem, 4.5vw, 3.1rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.16;
      max-width: 640px;
      margin: 0 auto 16px;
      letter-spacing: -0.025em;
    }
    .hero h1 {
      transform: translateX(-46px);
    }
    
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--green-mid), var(--sky-mid));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 15px;
      color: var(--text-soft);
      max-width: 480px;
      margin: 0 auto 36px;
      font-weight: 400;
    }

    /* .hero-pills {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    } */

    /* .hero-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
    }

    .pill-green {
      background: var(--green-pale);
      border: 1.5px solid var(--green-light);
      color: var(--green-dark);
    }

    .pill-sky {
      background: var(--sky-pale);
      border: 1.5px solid var(--sky-light);
      color: var(--sky-dark);
    }

    .pill-neutral {
      background: #f1f5f9;
      border: 1.5px solid #dde5ed;
      color: var(--text-mid);
    } */

    /* ── WRAP ───────────────── */
    .page-wrap {
      max-width: 1420px;
      /* max-width: 1200px; 1320*/
      margin: 0 auto;
      padding: 0 24px;
       /* padding: 0 24px; */
    }
    

    /* ── SECTION INTRO ──────── */
    .section-intro {
      text-align: center;
      padding: 52px 0 32px;
    }

    .section-intro h2 {
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.015em;
      margin-bottom: 6px;
    }

    
    .section-intro h2 em {
      font-style: normal;
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      font-weight: 700; color: var(--sky);
      /* color: var(--text-dark); */
      letter-spacing: -0.015em;
      margin-bottom: 6px;
    }

    .section-intro p {
      font-size: 13.5px;
      color: var(--text-soft);
    }

    /* ── GRID ───────────────── */
    .cards-grid {
      display: grid; 
       /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
      
      /*grid-template-columns: repeat(4, minmax(0, 1fr));*/
      grid-template-columns: repeat(3, minmax(0, 1fr));

      gap: 22px;
      padding-bottom: 40px; /* reduce gap */
      /* padding-bottom: 80px; */
    }

    /* ── CARD ───────────────── */
    .persona-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-rest);
      overflow: hidden;
      cursor: pointer;
      position: relative;
      transition:
        transform 0.36s var(--ease),
        box-shadow 0.36s var(--ease),
        border-color 0.25s ease;
      outline: none;
    }

    .persona-card:focus-visible {
      box-shadow: 0 0 0 3px var(--sky-light);
    }

    .persona-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      background: linear-gradient(160deg, rgba(56,182,232,0.04) 0%, rgba(58,171,94,0.04) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .persona-card:hover {
      transform: translateY(-12px) scale(1.018);
      box-shadow: var(--shadow-hover);
      border-color: rgba(56,182,232,0.35);
    }

    .persona-card:hover::after { opacity: 1; }

    /* top accent bar */
    .card-accent {
      height: 4px;
      width: 100%;
    }

    .accent-green { background: linear-gradient(90deg, var(--green), #7dd4a0); }
    .accent-sky   { background: linear-gradient(90deg, var(--sky), #8dd8f6); }
    .accent-dual  { background: linear-gradient(90deg, var(--green), var(--sky)); }

    /* card band / illustration area */
    .card-band {
      height: 80px;
      display: flex;
      align-items: center;
      padding: 0 24px;
      position: relative;
    }

    .band-green { background: linear-gradient(135deg, var(--green-pale) 0%, #daf4e7 100%); }
    .band-sky   { background: linear-gradient(135deg, var(--sky-pale)   0%, #d4eef9 100%); }
    .band-dual  { background: linear-gradient(135deg, var(--green-pale) 0%, var(--sky-pale) 100%); }

    .card-avatar {
      width: 52px;
      height: 52px;
      border-radius: 15px;
      background: var(--white);
      border: 2px solid rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.09);
      transition: transform 0.36s var(--ease);
      flex-shrink: 0;
    }

    .persona-card:hover .card-avatar {
      transform: scale(1.14) rotate(-5deg);
    }

    .card-band-label {
      margin-left: 14px;
    }

    .card-role {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.01em;
      line-height: 1.25;
    }

    .card-dept {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .dept-green { color: var(--green-mid); }
    .dept-sky   { color: var(--sky-mid); }

    /* card body */
    .card-body {
      padding: 18px 24px 0;
    }

    .card-summary {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.68;
      margin-bottom: 16px;
      font-weight: 400;
    }

    .card-needs-preview {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .need-row {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 12.5px;
      color: var(--text-mid);
      line-height: 1.5;
    }

    .need-check {
      width: 16px; height: 16px;
      border-radius: 5px;
      flex-shrink: 0;
      margin-top: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .check-green { background: var(--green-pale); }
    .check-sky   { background: var(--sky-pale); }

    .need-check svg { width: 9px; height: 9px; }

    .card-tags {
      /*display: flex;        */
      display:none;
      flex-wrap: wrap;
      gap: 5px;
      padding: 14px 0;
      border-top: 1px solid var(--border);
    }

    .tag {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: 0.02em;
    }

    .tag-green {
      background: var(--green-pale);
      color: var(--green-dark);
      border: 1px solid var(--green-light);
    }

    .tag-sky {
      background: var(--sky-pale);
      color: var(--sky-dark);
      border: 1px solid var(--sky-light);
    }

    /* card footer */
    .card-footer {
      padding: 12px 24px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .read-more {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--sky-mid);
      transition: gap 0.25s ease;
    }

    .persona-card:hover .read-more { gap: 10px; }

    .arrow-circle {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--sky-pale);
      border: 1px solid var(--sky-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--sky-mid);
      transition: background 0.25s, transform 0.3s var(--ease);
      margin-bottom: 20px;
      margin-left: auto;
    }

    .persona-card:hover .arrow-circle {
      background: var(--sky-light);
      transform: translateX(4px);
    }

    /* ── MODAL ──────────────── */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(18,35,52,0.48);
      backdrop-filter: blur(5px);
      z-index: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease;
    }

    .overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--white);
      border-radius: 26px;
      width: 100%;
      max-width: 700px;
      max-height: 88vh;
      overflow-y: auto;
      box-shadow: 0 40px 100px rgba(0,0,0,0.22);
      transform: translateY(28px) scale(0.96);
      transition: transform 0.36s var(--ease);
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
    }

    .overlay.open .modal {
      transform: translateY(0) scale(1);
    }

    .modal-top-bar {
      height: 5px;
      background: linear-gradient(90deg, var(--green), var(--sky));
      border-radius: 26px 26px 0 0;
    }

    .modal-head {
      padding: 28px 30px 22px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      border-bottom: 1.5px solid var(--border);
    }

    .modal-avatar {
      width: 60px; height: 60px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      flex-shrink: 0;
      border: 2px solid var(--border);
    }

    .modal-avatar-green { background: var(--green-pale); border-color: var(--green-light); }
    .modal-avatar-sky   { background: var(--sky-pale);   border-color: var(--sky-light); }

    .modal-info { flex: 1; }

    .modal-role {
      font-size: 1.18rem;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.018em;
      margin-bottom: 3px;
    }

    .modal-dept {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .modal-tags { display: flex; flex-wrap: wrap; gap: 5px; }

 .modal-close {
  position: absolute;
  top: 24px;
  right: 24px;

  width: 32px;
  height: 32px;

  border-radius: 50%;
  border: 1.5px solid var(--border);

  background: var(--page-bg);

  cursor: pointer;

  font-size: 15px;
  color: var(--text-soft);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.2s, color 0.2s;

  z-index: 10;
}

.modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

    .modal-close:hover { background: var(--border); color: var(--text-dark); }

    .modal-body { padding: 26px 30px; }

    .modal-summary {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.78;
      margin-bottom: 26px;
    }

    .modal-summary strong { color: var(--text-dark); font-weight: 600; }

    .modal-needs-label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 12px;
    }

    .modal-needs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .modal-need {
      background: var(--page-bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 13px 15px;
      display: flex;
      gap: 9px;
      align-items: flex-start;
      transition: border-color 0.2s, background 0.2s;
    }

    .modal-need:hover { background: var(--green-pale); border-color: var(--green-light); }

    .modal-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 5px;
    }

    .dot-green { background: var(--green); }
    .dot-sky   { background: var(--sky); }

    .modal-need-text {
      font-size: 12.5px;
      color: var(--text-mid);
      line-height: 1.55;
    }

    .modal-footer {
      padding: 18px 30px 26px;
      border-top: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .modal-hint {
      font-size: 13px;
      color: var(--text-soft);
    }

    .modal-hint strong { color: var(--text-dark); font-weight: 600; }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 11px 22px;
      /*background:white;*/
      background: linear-gradient(135deg, var(--green-mid), var(--sky-mid));
      color:#fff;
      font-family: var(--font);
      font-size: 13.5px;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
    }

    .btn-cta:hover { opacity: 0.87; transform: translateY(-2px); }

   /* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  /* margin:0 48px 72px; */
  background: linear-gradient(130deg, #0d3d28 0%, #1a8a45 50%, #0272b0 100%);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-band::before {
  content: 'PERSONA';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.06em;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: 180px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.cta-text h2 em {
  font-style: italic;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 400px
}

.cta-acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.cbtn-w {
  padding: 12px 24px;
  border-radius: 9px;
  background: #fff;
  color: #0d3d28;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .16s;
}

.cbtn-w:hover {
  opacity: .92;
  transform: translateY(-2px)
}

.cbtn-g {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .14s;
  font-family: 'Inter', sans-serif;
}

.cbtn-g:hover {
  background: rgba(255, 255, 255, .17);
  color: #fff
}


/* ─────────────────────────────────────────────────────────
   CTA RESPONSIVE ADJUSTMENTS
───────────────────────────────────────────────────────── */

/* Tablet (Max-width: 1080px) */
@media(max-width:1080px) {
  .cta-band {
    margin: 0 0 0;      /* Removes side margins if any */
    padding: 40px 32px; /* Reduces padding for smaller width */
  }
}

/* Mobile (Max-width: 640px) */
@media(max-width:640px) {
  .cta-band {
    margin: 0 0 60px;   /* Adds bottom spacing for mobile flow */
    padding: 32px 20px; /* Tightens padding */
    flex-direction: column; /* Stacks text and buttons vertically */
    text-align: center;     /* Centers text for mobile balance (implied) */
  }

  .cta-text p {
    max-width: 100%;    /* Allows text to fill the width */
  }

  .cta-acts {
    width: 100%;        /* Forces action container to full width */
    justify-content: center;
  }
}



   /* ═══════════════════════
   RESPONSIVE SYSTEM
   ═══════════════════════ */

/*  Large Screens (1400px+) */
@media (min-width: 1400px) {
  .page-wrap {
    max-width: 1300px;
  }
}

/*  Laptops (1024px ↓) */
@media (max-width: 1024px) {

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    max-width: 520px;
  }
  .hero h1 {
  white-space: normal;
  transform: none;
}
}

/*  Tablets (768px ↓) */
@media (max-width: 768px) {

  .page-wrap {
    padding: 0 18px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 44px 18px 18px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    white-space: normal;   /* IMPORTANT FIX */
    transform: none;       /* IMPORTANT FIX */
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .section-intro {
    padding: 40px 0 24px;
  }

  .section-intro h2 {
    font-size: 1.3rem;
  }

  .card-body {
    padding: 16px 18px 0;
  }

  .card-footer {
    padding: 12px 18px 18px;
  }

  .modal {
    max-width: 95%;
  }
    .bottom-cta{
    flex-direction: column;
    text-align: center;
  }

  .cta-text{
    text-align: center;
  }
}

/*  Mobile (600px ↓) */
@media (max-width: 600px) {

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero {
    padding: 40px 16px 16px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 13.5px;
  }

  .section-intro {
    padding: 32px 0 20px;
  }

  .section-intro p {
    font-size: 12.5px;
  }

  .card-band {
    height: 70px;
    padding: 0 18px;
  }

  .card-avatar {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .card-role {
    font-size: 14px;
  }

  .card-summary {
    font-size: 12.5px;
  }

  .bottom-cta {
    padding: 36px 18px;
  }

  .bottom-cta h2 {
    font-size: 1.4rem;
  }

  .bottom-cta p {
    font-size: 13.5px;
  }
}

/*  Small Mobile (480px ↓) */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-sub {
    font-size: 13px;
  }

  .eyebrow {
    font-size: 10px;
    padding: 4px 10px;
  }

  .modal-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-avatar {
    width: 52px;
    height: 52px;
  }

  .modal-role {
    font-size: 1rem;
  }

  .modal-body {
    padding: 20px 16px;
  }

  .modal-footer {
    padding: 14px 16px 20px;
  }

  .modal-needs {
    grid-template-columns: 1fr;
  }
}

/*  Extra Small Devices (360px ↓) */
@media (max-width: 360px) {

  .hero h1 {
    font-size: 1.4rem;
  }

  .card-role {
    font-size: 13px;
  }

  .card-summary {
    font-size: 12px;
  }

  .tag {
    font-size: 10px;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}














/* =========================================================================
   PERSONA PAGE — IPAD PRO TOP NAV
   IDENTICAL TO ASSET SCORE NAVIGATION
   ========================================================================= */

@media only screen 
and (min-width: 820px) 
and (max-width: 1180px) {

  /* ─── NAVBAR ────────────────────────────────────────── */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px !important;
    overflow: visible !important;
  }

  /* LOGO — uses max-height, no fixed width (like Asset Score) */
  .logo img,
  .nav-logo img,
  .brand-logo img {
    max-height: 30px !important;
    width: auto !important;
  }

  /* NAV LINKS CONTAINER */
  .nav-links {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0px;
    flex: 0 1 auto !important;    /* prevents pushing login too far */
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible !important;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  /* INDIVIDUAL NAV LINKS */
  .nav-links a {
    white-space: nowrap;
    font-size: 10px !important;
    padding: 5px 6px !important;
    flex-shrink: 0;
  }

  /* RIGHT BUTTON AREA (Login / Demo) */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 12px !important;  /* controls gap between last link and login */
  }

  /* LOGIN BUTTON */
  .btn-ghost-sm,
  .login-btn {
    font-size: 10px !important;
    padding: 7px 10px !important;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
  }

  /* DROPDOWN FIX */
  .dropdown,
  .dropdown-menu,
  .submenu {
    z-index: 99999 !important;
  }

  .dropdown-menu,
  .submenu {
    position: absolute;
  }

  /* ─── HERO ADJUSTMENTS (OPTIONAL, KEEP FROM YOUR ORIGINAL) ─── */
  .hero {
    margin-top: 0 !important;
    padding-top: 34px !important;
  }
}


.card-extra-line{
  width: 100%;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
  padding-left: 10px;
  padding-right: 10px;
  display:flex;
  align-items:flex-start;
  gap:8px;
}

/*.card-extra-line{*/
/*    display:flex;*/
/*    align-items:flex-start;*/
/*    gap:10px;*/
/*    padding:0 24px 20px;*/
/*}*/

.challenge-text{
   
    color:var(--text-soft);
    line-height:1.7;
    flex:1;
}

.bulk-icon{
  width: 22px;
  height: 22px;
  object-fit: contain;
   flex-shrink: 0;
  vertical-align: middle;
 
}

 .Challenge-icon{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  /*vertical-align: middle;*/
 
}

.modal-bottom-line{
  padding: 12px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.bottom-line-wrap{
    display: flex;
    align-items: center; /* icon and text in same line */
    gap: 5px;
}

/*.Challenge-icon{*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    object-fit: contain;*/
/*    flex-shrink: 0;*/
/*}*/

/*.modal-bottom-line{*/
/*    margin: 0;*/
/*}*/



.bottom-wrap{
    display: flex;
    align-items: center; /* icon and text in same line */
    gap: 5px;
    /*margin-top: -5px;*/
}
.modal-needs-label{
    position: relative;
    top: 7px;
}