   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  

    /* Trigger link */
    .addon-trigger {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      font-weight: 300;
      color: #185fa5;
      text-decoration: none;
      border-bottom: 1px dashed #378add;
      padding-bottom: 1px;
      cursor: pointer;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: inherit;
    }

    .addon-trigger i { font-size: 14px; }

    /* Overlay */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 9998;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .modal-overlay.open { display: flex; }

    /* Modal box */
    .modal {
      background: #fff;
      border-radius: 14px;
      width: 100%;
      max-width: 1100px;
      min-height: 89vh;
      display: flex;
      flex-direction: column;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
      animation: modalIn 0.18s ease;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    @keyframes modalIn {
      from { opacity: 0; transform: translate(-50%, -46%) scale(0.98); }
      to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }

    /* Modal header */
    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px 14px;
      border-bottom: 0.5px solid rgba(0,0,0,0.10);
      flex-shrink: 0;
    }

    .modal-header-left h2 {
      font-size: 16px;
      font-weight: 600;
      color: #1a1a18;
      margin-bottom: 2px;
    }

    .modal-header-left p {
      font-size: 12px;
      color: #5f5e5a;
    }

    .modal-header-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .meet-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      color: #185fa5;
      text-decoration: none;
      border: 0.5px solid #378add;
      border-radius: 7px;
      padding: 6px 12px;
      background: #e6f1fb;
      white-space: nowrap;
      transition: background 0.12s;
    }

    .meet-btn:hover { background: #cce0f5; }
    .meet-btn i { font-size: 14px; }

    .close-btn {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      border: 0.5px solid rgba(0,0,0,0.14);
      background: #f4f3ee;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #5f5e5a;
      font-size: 16px;
      transition: background 0.12s;
      flex-shrink: 0;
    }

    .close-btn:hover { background: #e8e6df; color: #1a1a18; }

    /* Modal body — scrollable */
    .modal-body {
      overflow-y: auto;
      padding: 6px 22px 20px;
      flex: 1;
    }

    /* Service section */
    .service {
      padding: 16px 0;
      border-bottom: 0.5px solid rgba(0,0,0,0.08);
    }

    .service:last-child { border-bottom: none; }

    .service-header {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      margin-bottom: 8px;
    }

    .service-icon {
      width: 32px;
      height: 32px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .service-icon i { font-size: 16px; }
    .icon-blue   { background: #e6f1fb; } .icon-blue i   { color: #185fa5; }
    .icon-green  { background: #eaf3de; } .icon-green i  { color: #3b6d11; }
    .icon-amber  { background: #faeeda; } .icon-amber i  { color: #854f0b; }
    .icon-purple { background: #eeedfe; } .icon-purple i { color: #534ab7; }
    .icon-teal   { background: #e1f5ee; } .icon-teal i   { color: #0f6e56; }

    .service-title {
      font-size: 14px;
      font-weight: 600;
      color: #1a1a18;
      margin-bottom: 3px;
    }

    .service-desc {
      display: inline;
      font-size: 13px;
      font-weight: 400;
      color: #5f5e5a;
      line-height: 1.55;
    }

    .service-bullets {
      list-style: none;
      margin-top: 8px;
      padding-left: 43px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .service-bullets li {
      font-size: 12.5px;
      color: #5f5e5a;
      line-height: 1.55;
      position: relative;
      padding-left: 14px;
    }

    .service-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 7px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #378add;
    }

    .service-bullets li strong {
      color: #1a1a18;
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 500px) {
      .modal-header { padding: 14px 16px 12px; }
      .modal-body   { padding: 4px 16px 16px; }
      .meet-btn span { display: none; }
      .service-bullets { padding-left: 32px; }
    }