  /* â”€â”€ Get Started page extras â”€â”€ */
  .gs-content {
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .gs-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .gs-page-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
  }
  .gs-page-header .breadcrumb-text {
    font-size: 11px;
    color: #9ca3af;
  }
  .gs-page-header .breadcrumb-text a {
    color: #9ca3af;
    text-decoration: none;
  }
  .gs-page-header .breadcrumb-text a:hover { color: #374151; }
  .gs-page-header .breadcrumb-text span { margin: 0 4px; }

  /* â”€â”€ Cards Grid â”€â”€ */
  .gs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
  }

  .gs-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    padding: 18px;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
  }
  .gs-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-color: #d1d5db;
  }

  .gs-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .gs-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .gs-icon-wrap.blue   { background: #eff6ff; color: #3b82f6; }
  .gs-icon-wrap.purple { background: #f5f3ff; color: #7c3aed; }
  .gs-icon-wrap.green  { background: #f0fdf4; color: #16a34a; }
  .gs-icon-wrap.orange { background: #fff7ed; color: #ea580c; }
  .gs-icon-wrap.rose   { background: #fff1f2; color: #e11d48; }
  .gs-icon-wrap.teal   { background: #f0fdfa; color: #0d9488; }
  .gs-icon-wrap.indigo { background: #eef2ff; color: #4f46e5; }
  .gs-icon-wrap.amber  { background: #fffbeb; color: #d97706; }
  .gs-icon-wrap.slate  { background: #f8fafc; color: #475569; }
  .gs-icon-wrap.pink   { background: #fdf2f8; color: #db2777; }
  .gs-icon-wrap.cyan   { background: #ecfeff; color: #0891b2; }

  .gs-card-menu {
    background: none;
    border: none;
    cursor: pointer;
    color: #d1d5db;
    font-size: 16px;
    padding: 2px 6px;
    border-radius: 6px;
    line-height: 1;
    transition: color 0.15s, background 0.15s;
  }
  .gs-card-menu:hover { color: #6b7280; background: #f3f4f6; }

  .gs-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
  }
  .gs-card p {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.55;
  }

  /* â”€â”€ Bottom CTA â”€â”€ */
  .gs-footer-cta {
    text-align: center;
    margin-bottom: 8px;
  }
  .gs-footer-cta a {
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    background: #eff6ff;
    transition: background 0.15s;
  }
  .gs-footer-cta a:hover { background: #dbeafe; }

  /* â”€â”€ Responsive â”€â”€ */
  @media (max-width: 1024px) {
    .gs-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .gs-grid { grid-template-columns: 1fr; }
    .gs-content { padding: 12px 14px; }
    .gs-page-header { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 400px) {
    .gs-card { padding: 14px; }
    .gs-icon-wrap { width: 34px; height: 34px; font-size: 15px; }
  }