/* .hero-highlight-primary is defined in 00_tokens-base.css — solid color, no gradient text */

/* Pain section icon styling */
.pain-card i {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: var(--radius-m);
  /* Smooth, gentle transitions */
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              background 0.3s ease;
  position: relative;
  will-change: transform;
}

.pain-card:hover i {
  /* Subtle scale and rotate for smoothness */
  transform: scale(1.08) rotate(-2deg);
}

/* Icon background variants */
.pain-card i.text-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
  /* box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2); */
}

.pain-card i.text-warning {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(251, 146, 60, 0.2) 100%);
  /* box-shadow: 0 4px 12px rgba(251, 146, 60, 0.2); */
}

.pain-card i.text-info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
  /* box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2); */
}

.pain-card i.text-secondary {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(107, 114, 128, 0.2) 100%);
  /* box-shadow: 0 4px 12px rgba(107, 114, 128, 0.2); */
}

.pain-card:hover i.text-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.25) 100%);
  /* box-shadow: 0 5px 16px rgba(239, 68, 68, 0.28); */
}

.pain-card:hover i.text-warning {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(251, 146, 60, 0.25) 100%);
  /* box-shadow: 0 5px 16px rgba(251, 146, 60, 0.28); */
}

.pain-card:hover i.text-info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.25) 100%);
  /* box-shadow: 0 5px 16px rgba(59, 130, 246, 0.28); */
}

.pain-card:hover i.text-secondary {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(107, 114, 128, 0.25) 100%);
  /* box-shadow: 0 5px 16px rgba(107, 114, 128, 0.28); */
}

[data-bs-theme="dark"] .pain-card i {
  backdrop-filter: blur(8px);
}

/* Outcome section icon styling */
.outcome-card i {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: var(--radius-m);
  /* Smooth, gentle transitions */
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              background 0.3s ease;
  position: relative;
  will-change: transform;
}

.outcome-card:hover i {
  /* Subtle scale and rotate for smoothness */
  transform: scale(1.08) rotate(3deg);
}

/* Icon background variants for outcome section */
.outcome-card i.text-success {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.2) 100%);
  /* box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2); */
}

.outcome-card i.text-primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
  /* box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); */
}

.outcome-card i.text-info {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.2) 100%);
  /* box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2); */
}

.outcome-card:hover i.text-success {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
  /* box-shadow: 0 5px 16px rgba(5, 150, 105, 0.28); */
}

.outcome-card:hover i.text-primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.25) 100%);
  /* box-shadow: 0 5px 16px rgba(37, 99, 235, 0.28); */
}

.outcome-card:hover i.text-info {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0.25) 100%);
  /* box-shadow: 0 5px 16px rgba(20, 184, 166, 0.28); */
}

[data-bs-theme="dark"] .outcome-card i {
  backdrop-filter: blur(8px);
}

.btn-main-color {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981 0%, #2563eb 100%);
  color: #fff;
  border-radius: .75rem; /* rounded-xl */
  border: 1px solid #0a6f78;
  box-shadow:
    0 10px 20px rgba(37, 99, 235, 0.18),
    0 4px 10px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-main-color::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(.75rem - 1px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.2) 100%);
}

.btn-main-color:hover {
  background: linear-gradient(135deg, #0f9f72 0%, #1d4ed8 100%);
  text-decoration: none;
  color: #fff;
  border-color: #075985;
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.22),
    0 8px 18px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -3px 0 rgba(3, 105, 161, 0.34);
  transform: translateY(-1px);
}

.btn-main-color:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 14px rgba(37, 99, 235, 0.18),
    0 3px 8px rgba(16, 185, 129, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -2px 0 rgba(3, 105, 161, 0.24);
}

.btn-main-color:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(248, 250, 252, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.3),
    0 10px 20px rgba(37, 99, 235, 0.18),
    0 4px 10px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);
}

[data-bs-theme="dark"] .btn-main-color {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(37, 99, 235, 0.6) 100%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-color: rgba(8, 145, 178, 0.45);
  box-shadow:
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

.btn-raised-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  color: #0f172a;
  border: 1px solid rgba(100, 116, 139, 0.45);
  border-radius: .75rem;
  box-shadow:
    0 10px 18px rgba(148, 163, 184, 0.18),
    0 3px 8px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -3px 0 rgba(148, 163, 184, 0.18);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-raised-secondary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(.75rem - 1px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, rgba(226, 232, 240, 0) 52%, rgba(203, 213, 225, 0.42) 100%);
}

.btn-raised-secondary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e8eef8 100%);
  color: #020617;
  border-color: rgba(71, 85, 105, 0.52);
  box-shadow:
    0 14px 24px rgba(148, 163, 184, 0.22),
    0 6px 12px rgba(148, 163, 184, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -3px 0 rgba(148, 163, 184, 0.22);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-raised-secondary:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 12px rgba(148, 163, 184, 0.16),
    0 2px 6px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -2px 0 rgba(148, 163, 184, 0.18);
}

.btn-raised-secondary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(248, 250, 252, 0.92),
    0 0 0 6px rgba(100, 116, 139, 0.2),
    0 10px 18px rgba(148, 163, 184, 0.18),
    0 3px 8px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -3px 0 rgba(148, 163, 184, 0.18);
}

[data-bs-theme="dark"] .btn-raised-secondary {
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow:
    0 10px 20px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(15, 23, 42, 0.3);
}

[data-bs-theme="dark"] .btn-raised-secondary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0) 56%, rgba(15, 23, 42, 0.24) 100%);
}

[data-bs-theme="dark"] .btn-raised-secondary:hover {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 90%, white 10%) 0%, var(--surface-2) 100%);
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow:
    0 14px 24px rgba(2, 6, 23, 0.48),
    0 5px 12px rgba(15, 23, 42, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -3px 0 rgba(15, 23, 42, 0.34);
}

[data-bs-theme="dark"] .btn-raised-secondary:active {
  box-shadow:
    0 8px 16px rgba(2, 6, 23, 0.38),
    0 2px 6px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(15, 23, 42, 0.3);
}

[data-bs-theme="dark"] .btn-raised-secondary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.92),
    0 0 0 6px rgba(96, 165, 250, 0.12),
    0 10px 20px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(15, 23, 42, 0.3);
}

[data-bs-theme="dark"] .btn-main-color::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.16) 100%);
}

[data-bs-theme="dark"] .btn-main-color:hover {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(29, 78, 216, 0.6) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 88%, white 12%) 0%, var(--surface-2) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.5),
    0 6px 14px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 0 rgba(2, 132, 199, 0.22);
}

[data-bs-theme="dark"] .btn-main-color:active {
  box-shadow:
    0 8px 16px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .btn-main-color:focus-visible {
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.2),
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

.hero-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  border-radius: 0.95rem;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.hero-cta-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(0.95rem - 1px);
  pointer-events: none;
  opacity: 0.95;
}

.hero-cta-button:focus-visible {
  outline: none;
}

.hero-cta-button-primary {
  background: linear-gradient(135deg, #10b981 0%, #2563eb 100%);
  color: #fff;
  border-color: #0a6f78;
  box-shadow:
    0 10px 20px rgba(37, 99, 235, 0.18),
    0 4px 10px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);
}

.hero-cta-button-primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.2) 100%);
}

.hero-cta-button-primary:hover {
  background: linear-gradient(135deg, #0f9f72 0%, #1d4ed8 100%);
  color: #fff;
  border-color: #075985;
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.22),
    0 8px 18px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -3px 0 rgba(3, 105, 161, 0.34);
  transform: translateY(-1px);
}

.hero-cta-button-primary:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 14px rgba(37, 99, 235, 0.18),
    0 3px 8px rgba(16, 185, 129, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -2px 0 rgba(3, 105, 161, 0.24);
}

.hero-cta-button-primary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(248, 250, 252, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.3),
    0 10px 20px rgba(37, 99, 235, 0.18),
    0 4px 10px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);
}

.hero-cta-button-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  color: #0f172a;
  border-color: rgba(100, 116, 139, 0.45);
  box-shadow:
    0 10px 18px rgba(148, 163, 184, 0.18),
    0 3px 8px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -3px 0 rgba(148, 163, 184, 0.18);
}

.hero-cta-button-secondary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, rgba(226, 232, 240, 0) 52%, rgba(203, 213, 225, 0.42) 100%);
}

.hero-cta-button-secondary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e8eef8 100%);
  color: #020617;
  border-color: rgba(71, 85, 105, 0.52);
  box-shadow:
    0 14px 24px rgba(148, 163, 184, 0.22),
    0 6px 12px rgba(148, 163, 184, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -3px 0 rgba(148, 163, 184, 0.22);
  transform: translateY(-1px);
}

.hero-cta-button-secondary:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 12px rgba(148, 163, 184, 0.16),
    0 2px 6px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -2px 0 rgba(148, 163, 184, 0.18);
}

.hero-cta-button-secondary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(248, 250, 252, 0.92),
    0 0 0 6px rgba(100, 116, 139, 0.2),
    0 10px 18px rgba(148, 163, 184, 0.18),
    0 3px 8px rgba(148, 163, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -3px 0 rgba(148, 163, 184, 0.18);
}

[data-bs-theme="dark"] .hero-cta-button {
  color: #f8fafc;
}

[data-bs-theme="dark"] .hero-cta-button-primary {
  background:
    linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.7) 0%,
      rgba(37, 99, 235, 0.6) 100%
    ),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-color: rgba(8, 145, 178, 0.45);
  box-shadow:
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .hero-cta-button-primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.16) 100%);
}

[data-bs-theme="dark"] .hero-cta-button-primary:hover {
  background:
    linear-gradient(
      135deg,
      rgba(16, 185, 129, 0.7) 0%,
      rgba(29, 78, 216, 0.6) 100%
    ),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 88%, white 12%) 0%, var(--surface-2) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.5),
    0 6px 14px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 0 rgba(2, 132, 199, 0.22);
}

[data-bs-theme="dark"] .hero-cta-button-primary:active {
  box-shadow:
    0 8px 16px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .hero-cta-button-primary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.2),
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .hero-cta-button-secondary {
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow:
    0 10px 20px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(15, 23, 42, 0.3);
}

[data-bs-theme="dark"] .hero-cta-button-secondary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0) 56%, rgba(15, 23, 42, 0.24) 100%);
}

[data-bs-theme="dark"] .hero-cta-button-secondary:hover {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 90%, white 10%) 0%, var(--surface-2) 100%);
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow:
    0 14px 24px rgba(2, 6, 23, 0.48),
    0 5px 12px rgba(15, 23, 42, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -3px 0 rgba(15, 23, 42, 0.34);
}

[data-bs-theme="dark"] .hero-cta-button-secondary:active {
  box-shadow:
    0 8px 16px rgba(2, 6, 23, 0.38),
    0 2px 6px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(15, 23, 42, 0.3);
}

[data-bs-theme="dark"] .hero-cta-button-secondary:focus-visible {
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.92),
    0 0 0 6px rgba(96, 165, 250, 0.12),
    0 10px 20px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -3px 0 rgba(15, 23, 42, 0.3);
}

/* 1) base "text-xl" */
.bs-text-xl {
  font-size: 1.25rem;      /* =20px */
  line-height: 1.75rem;    /* =28px */
}

/* 2) md:text-2xl */
@media (min-width: 768px) {
  .bs-text-md-2xl {
    font-size: 1.5rem;     /* =24px */
    line-height: 2rem;     /* =32px */
  }
}

/* 3) exact Tailwind gray-600 */
.bs-text-gray-600 {
  color: #4B5563;
}

/* 4) max-w-4xl = 56rem */
.bs-max-w-4xl {
  max-width: 56rem;        /* =896px */
}

/* 5) leading-relaxed = 1.625 */
.bs-leading-relaxed {
  line-height: 1.625;
}

.btn-dashboard {
  /* layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem; /* tailwind's gap-2 */
  white-space: nowrap;

  /* sizing & type */
  font-size: .875rem; /* text-sm */
  font-weight: 600; /* font-semibold */
  height: 2.5rem; /* h-10 */
  padding: .75rem 2rem; /* py-3 px-8 */
  border-radius: .75rem; /* rounded-xl */

  position: relative;

  /* colors & background */
  background: linear-gradient(135deg, #10b981 0%, #2563eb 100%);
  color: #fff;
  border: 1px solid #0a6f78;
  box-shadow:
    0 10px 20px rgba(37, 99, 235, 0.18),
    0 4px 10px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);

  /* smooth hover/focus transitions */
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-dashboard::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(.75rem - 1px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.2) 100%);
}

/* hover: slightly darker gradient + primary-90 fallback */
.btn-dashboard:hover {
  background: linear-gradient(135deg, #0f9f72 0%, #1d4ed8 100%);
  text-decoration: none;
  border-color: #075985;
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.22),
    0 8px 18px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -3px 0 rgba(3, 105, 161, 0.34);
  transform: translateY(-1px);
}

.btn-dashboard:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 14px rgba(37, 99, 235, 0.18),
    0 3px 8px rgba(16, 185, 129, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -2px 0 rgba(3, 105, 161, 0.24);
}

/* focus outline ("ring") */
.btn-dashboard:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(248, 250, 252, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.3),
    0 10px 20px rgba(37, 99, 235, 0.18),
    0 4px 10px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(3, 105, 161, 0.3);
}

[data-bs-theme="dark"] .btn-dashboard {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(37, 99, 235, 0.6) 100%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-color: rgba(8, 145, 178, 0.45);
  box-shadow:
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .btn-dashboard::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(2, 132, 199, 0) 58%, rgba(2, 132, 199, 0.16) 100%);
}

[data-bs-theme="dark"] .btn-dashboard:hover {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(29, 78, 216, 0.6) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface-1) 88%, white 12%) 0%, var(--surface-2) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.5),
    0 6px 14px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 0 rgba(2, 132, 199, 0.22);
}

[data-bs-theme="dark"] .btn-dashboard:active {
  box-shadow:
    0 8px 16px rgba(2, 6, 23, 0.42),
    0 3px 8px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(2, 132, 199, 0.18);
}

[data-bs-theme="dark"] .btn-dashboard:focus-visible {
  box-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.92),
    0 0 0 6px rgba(37, 99, 235, 0.2),
    0 10px 22px rgba(2, 6, 23, 0.45),
    0 4px 12px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -3px 0 rgba(2, 132, 199, 0.18);
}

/* disabled state */
.btn-dashboard:disabled,
.btn-dashboard.disabled {
  pointer-events: none;
  opacity: .5;
}

/* SVG children: no pointer events, fixed size, no shrink */
.btn-dashboard svg {
  pointer-events: none;
  width: 1rem; /* size-4 */
  height: 1rem;
  flex-shrink: 0;
}

.card-deck {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.card {
  flex: 1 0 auto;
}
