/* Glassmorphism — frosted glass, blur, translucent surfaces (Kumpay Tech UI) */

:root {
  --sw-primary: #8b5cf6;
  --sw-secondary: #06b6d4;
  --sw-accent: #f472b6;
  --sw-bg: #1e1b4b;
  --sw-surface: rgba(255, 255, 255, 0.1);
  --sw-text: #ffffff;
  --sw-text-muted: rgba(255, 255, 255, 0.72);
  --sw-sage: #06b6d4;
  --sw-radius: 16px;
  --sw-border-w: 1px;
  --sw-border: rgba(255, 255, 255, 0.18);
  --sw-border-secondary: rgba(6, 182, 212, 0.35);
  --sw-shadow: 0 0 32px rgba(139, 92, 246, 0.12),
    0 0 48px rgba(6, 182, 212, 0.06);
  --sw-glass-blur: 20px;
}

.sw-ui {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--sw-text);
  background-color: var(--sw-bg);
  background-image: radial-gradient(
      ellipse 120% 80% at 20% -10%,
      rgba(139, 92, 246, 0.35),
      transparent 55%
    ),
    radial-gradient(
      ellipse 100% 70% at 100% 20%,
      rgba(6, 182, 212, 0.22),
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 60% at 50% 100%,
      rgba(244, 114, 182, 0.12),
      transparent 45%
    ),
    linear-gradient(165deg, #1e1b4b 0%, #17153a 45%, #121028 100%);
  background-attachment: fixed;
}

.sw-ui h1,
.sw-ui h2,
.sw-ui h3,
.sw-ui h4,
.sw-ui h5,
.sw-ui h6,
.sw-ui .font-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--sw-text);
}

.sw-ui .text-base-content {
  color: var(--sw-text);
}

/* Glass panel */
.sw-surface {
  background: var(--sw-surface);
  backdrop-filter: blur(var(--sw-glass-blur));
  -webkit-backdrop-filter: blur(var(--sw-glass-blur));
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid var(--sw-border);
  box-shadow: var(--sw-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sw-surface--elevated {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(calc(var(--sw-glass-blur) + 4px));
  -webkit-backdrop-filter: blur(calc(var(--sw-glass-blur) + 4px));
}

.sw-header {
  background: rgba(30, 27, 75, 0.65);
  backdrop-filter: blur(var(--sw-glass-blur));
  -webkit-backdrop-filter: blur(var(--sw-glass-blur));
  border-bottom: var(--sw-border-w) solid var(--sw-border) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.sw-brand-logo,
.sw-brand-logo-footer {
  display: block;
  max-width: 100%;
}

.sw-navbar-inner.navbar {
  align-items: center;
}

.sw-header .menu-horizontal > li > ul {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid var(--sw-border);
  box-shadow: var(--sw-shadow);
  background: rgba(30, 27, 75, 0.85);
  backdrop-filter: blur(var(--sw-glass-blur));
  -webkit-backdrop-filter: blur(var(--sw-glass-blur));
}

.sw-header .menu-horizontal > li > span {
  font-weight: 500;
  user-select: none;
}

.sw-footer {
  margin-top: 4rem;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 40, 0.92) 0%,
    rgba(14, 12, 32, 0.96) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.92);
  border-top: var(--sw-border-w) solid var(--sw-border) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sw-footer .link {
  color: rgba(255, 255, 255, 0.85);
}

.sw-footer .link:hover {
  color: var(--sw-accent);
}

.sw-footer .opacity-70,
.sw-footer .opacity-90 {
  color: rgba(255, 255, 255, 0.82);
}

.sw-section-muted {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sw-section-band {
  background: linear-gradient(
    125deg,
    rgba(139, 92, 246, 0.14),
    rgba(6, 182, 212, 0.1),
    rgba(244, 114, 182, 0.08)
  );
}

.sw-cta-band {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid var(--sw-border);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--sw-glass-blur));
  -webkit-backdrop-filter: blur(var(--sw-glass-blur));
  box-shadow: var(--sw-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: var(--sw-text);
}

.sw-cta-band h2,
.sw-cta-band p {
  color: var(--sw-text);
}

.sw-badge {
  display: inline-block;
  border-radius: var(--sw-radius);
  padding: 0.35rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: var(--sw-border-w) solid rgba(244, 114, 182, 0.45);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.35),
    rgba(244, 114, 182, 0.25)
  );
  color: var(--sw-text);
  box-shadow: 0 0 24px rgba(244, 114, 182, 0.15);
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid rgba(139, 92, 246, 0.5);
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background: linear-gradient(135deg, #a78bfa, var(--sw-primary));
  color: #ffffff;
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
}

.sw-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(139, 92, 246, 0.45);
}

.sw-btn:active {
  transform: translateY(0);
}

.sw-btn-block {
  width: 100%;
}

.sw-card {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid var(--sw-border) !important;
  background: var(--sw-surface);
  backdrop-filter: blur(var(--sw-glass-blur));
  -webkit-backdrop-filter: blur(var(--sw-glass-blur));
  box-shadow: var(--sw-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sw-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sw-ui .btn-primary {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid rgba(167, 139, 250, 0.55);
  background: linear-gradient(135deg, #a78bfa, var(--sw-primary));
  color: #ffffff;
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
}

.sw-ui .btn-primary:hover {
  filter: brightness(1.06);
  background: linear-gradient(135deg, #b4a3fc, #9668f7);
}

.sw-ui .btn-outline {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.35);
  color: var(--sw-text);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sw-ui .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sw-secondary);
}

.sw-ui .btn-neutral {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--sw-text);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

.sw-ui .btn-neutral:hover {
  filter: brightness(1.12);
  background: rgba(255, 255, 255, 0.14);
}

.sw-ui .btn-ghost {
  color: var(--sw-text);
}

.sw-ui .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sw-ui .btn-link {
  color: var(--sw-secondary);
}

.sw-ui .btn-link:hover {
  color: var(--sw-accent);
}

.sw-ui .menu li > a {
  border-radius: 8px;
}

.sw-ui .menu li > a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sw-ui .dropdown-content.sw-menu-surface {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid var(--sw-border);
  box-shadow: var(--sw-shadow);
  background: rgba(30, 27, 75, 0.92);
  backdrop-filter: blur(var(--sw-glass-blur));
  -webkit-backdrop-filter: blur(var(--sw-glass-blur));
}

.sw-lang-switch {
  border-radius: var(--sw-radius);
  overflow: hidden;
  border: var(--sw-border-w) solid var(--sw-border);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sw-ui .prose {
  color: var(--sw-text-muted);
}

.sw-ui .prose a {
  color: var(--sw-secondary);
}

.sw-ui .stat-title,
.sw-ui .stat-desc {
  color: var(--sw-text-muted);
}

.sw-ui .badge-outline {
  border-width: var(--sw-border-w);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--sw-text);
  background: rgba(255, 255, 255, 0.06);
}

.sw-check {
  color: var(--sw-secondary);
}

.sw-text-muted {
  color: var(--sw-text-muted);
}

.sw-alert-soft {
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid var(--sw-border);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Semantic accents (ganti inline warna template) */
.sw-eyebrow {
  color: var(--sw-primary);
}

.sw-heading-text {
  color: var(--sw-text);
}

.sw-border-l-primary {
  border-left-color: var(--sw-primary) !important;
}

.sw-border-l-secondary {
  border-left-color: var(--sw-secondary) !important;
}

.sw-border-l-accent {
  border-left-color: var(--sw-accent) !important;
}

.sw-ui .label-text,
.sw-ui .label-text-alt {
  color: var(--sw-text);
}

.sw-ui .label-text-alt {
  color: var(--sw-text-muted);
}

.sw-ui .input,
.sw-ui .textarea,
.sw-ui .select {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--sw-text) !important;
  border-width: var(--sw-border-w);
  border-style: solid;
  border-color: var(--sw-border);
  border-radius: var(--sw-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sw-ui .input::placeholder,
.sw-ui .textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.sw-ui .input:focus,
.sw-ui .textarea:focus,
.sw-ui .select:focus {
  outline: none;
  border-color: var(--sw-secondary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.25);
}

.sw-ui .checkbox {
  border-width: var(--sw-border-w);
  border-color: var(--sw-primary);
  --chkbg: var(--sw-primary);
  --chkfg: #ffffff;
}

.sw-ui .checkbox.checkbox-primary {
  --chkbg: var(--sw-primary);
}

.sw-ui .card-title {
  color: var(--sw-text);
}

.sw-ui .card-body {
  color: var(--sw-text);
}

.sw-ui .bg-base-100 {
  background-color: rgba(255, 255, 255, 0.06) !important;
}

.sw-ui .bg-base-200\/50,
.sw-ui .bg-base-200\/60 {
  background: rgba(255, 255, 255, 0.08) !important;
}

.sw-ui .border-base-300 {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.sw-ui .alert:not(.alert-success):not(.alert-error):not(.alert-warning):not(.alert-info) {
  color: var(--sw-text);
}

.sw-ui .alert.alert-warning,
.sw-ui .alert.alert-info,
.sw-ui .alert.alert-success,
.sw-ui .alert.alert-error {
  border-radius: var(--sw-radius);
  border-width: var(--sw-border-w);
}

/* DaisyUI / prose: headings di konten */
.sw-ui .prose-neutral {
  --tw-prose-body: var(--sw-text-muted);
  --tw-prose-headings: var(--sw-text);
  --tw-prose-links: var(--sw-secondary);
}

.sw-ui .text-primary {
  color: var(--sw-primary) !important;
}

.sw-inline-cta {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--sw-secondary);
}

.sw-inline-cta:hover {
  color: var(--sw-accent);
}

/* Subjudul / lead — lebih terstruktur & menarik di atas gelap */
.sw-ui .sw-lede {
  margin-top: 1.25rem;
  padding: 1rem 1.125rem 1.125rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(6, 182, 212, 0.07)
  );
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.14);
  border-left-width: 4px;
  border-left-color: rgba(6, 182, 212, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(6, 182, 212, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.sw-ui .sw-lede--justify,
.sw-ui .sw-service-summary--justify {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.sw-ui .sw-service-sidebar h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.sw-ui .sw-service-summary {
  margin-top: 1rem;
  padding: 1rem 1rem 1.0625rem 1.125rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.1);
  border-left-width: 3px;
  border-left-color: rgba(139, 92, 246, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.sw-ui .sw-microcopy {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: var(--sw-border-w) dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* Blok “Untuk siapa layanan ini?” — kartu glass + daftar chip */
.sw-ui .sw-service-prose .sw-service-audience {
  margin: 0 0 2rem;
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: var(--sw-radius);
  background: linear-gradient(
    155deg,
    rgba(139, 92, 246, 0.14),
    rgba(30, 27, 75, 0.35),
    rgba(6, 182, 212, 0.1)
  );
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sw-ui .sw-service-prose .sw-service-audience h3 {
  margin: 0;
  padding-bottom: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  color: var(--sw-text);
  border-bottom: var(--sw-border-w) solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sw-ui .sw-service-prose .sw-service-audience h3::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--sw-secondary),
    var(--sw-accent)
  );
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.45);
}

.sw-ui .sw-service-prose .sw-service-audience__lead {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sw-secondary);
}

.sw-ui .sw-service-prose ul.sw-service-audience__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sw-ui .sw-service-prose ul.sw-service-audience__list > li {
  margin: 0;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  position: relative;
}

.sw-ui .sw-service-prose ul.sw-service-audience__list > li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sw-secondary);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.55);
}

@media (min-width: 640px) {
  .sw-ui .sw-service-prose ul.sw-service-audience__list,
  .sw-ui .sw-service-prose ul.sw-service-fit__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.65rem;
  }

  .sw-ui .sw-service-prose ul.sw-service-audience__list > li,
  .sw-ui .sw-service-prose ul.sw-service-fit__list > li {
    min-height: 3rem;
  }
}

.sw-ui .sw-service-prose ul.sw-service-fit__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sw-ui .sw-service-prose ul.sw-service-fit__list > li {
  margin: 0;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  position: relative;
}

.sw-ui .sw-service-prose ul.sw-service-fit__list > li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sw-accent);
  box-shadow: 0 0 10px rgba(244, 114, 182, 0.5);
}

/* Kartu glass: Cocok jika / Masalah / Apa yang kami lakukan */
.sw-ui .sw-service-prose .sw-service-fit,
.sw-ui .sw-service-prose .sw-service-problems,
.sw-ui .sw-service-prose .sw-service-actions {
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: var(--sw-radius);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sw-ui .sw-service-prose .sw-service-fit {
  margin: 0 0 2rem;
  background: linear-gradient(
    155deg,
    rgba(244, 114, 182, 0.12),
    rgba(30, 27, 75, 0.38),
    rgba(139, 92, 246, 0.12)
  );
}

.sw-ui .sw-service-prose .sw-service-problems {
  margin: 0 0 2rem;
  background: linear-gradient(
    155deg,
    rgba(251, 146, 60, 0.14),
    rgba(30, 27, 75, 0.4),
    rgba(244, 114, 182, 0.07)
  );
}

.sw-ui .sw-service-prose .sw-service-actions {
  margin: 0;
  background: linear-gradient(
    155deg,
    rgba(6, 182, 212, 0.14),
    rgba(30, 27, 75, 0.38),
    rgba(139, 92, 246, 0.1)
  );
}

.sw-ui .sw-service-prose .sw-service-fit h3,
.sw-ui .sw-service-prose .sw-service-problems h3,
.sw-ui .sw-service-prose .sw-service-actions h3 {
  margin: 0;
  padding-bottom: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  color: var(--sw-text);
  border-bottom: var(--sw-border-w) solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sw-ui .sw-service-prose .sw-service-fit h3::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sw-accent), var(--sw-primary));
  box-shadow: 0 0 14px rgba(244, 114, 182, 0.45);
}

.sw-ui .sw-service-prose .sw-service-problems h3::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fb923c, var(--sw-accent));
  box-shadow: 0 0 14px rgba(251, 146, 60, 0.35);
}

.sw-ui .sw-service-prose .sw-service-actions h3::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sw-secondary), var(--sw-primary));
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.45);
}

.sw-ui .sw-service-prose .sw-service-problems__stack > p {
  margin: 0 0 0.65rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.08);
  border-left-width: 4px;
  border-left-color: rgba(251, 146, 60, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.sw-ui .sw-service-prose .sw-service-problems__stack > p:last-child {
  margin-bottom: 0;
}

.sw-ui .sw-service-prose .sw-service-actions__stack > p:has(> strong:only-child) {
  margin: 1rem 0 0.35rem;
  padding: 0.72rem 1.05rem;
  border-radius: 11px;
  background: rgba(6, 182, 212, 0.11);
  border: var(--sw-border-w) solid rgba(6, 182, 212, 0.28);
  border-left-width: 4px;
  border-left-color: rgba(6, 182, 212, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sw-ui .sw-service-prose .sw-service-actions__stack > p:has(> strong:only-child):first-of-type {
  margin-top: 0;
}

.sw-ui .sw-service-prose .sw-service-actions__stack > p:has(> strong:only-child) strong {
  color: rgba(165, 243, 252, 0.98);
  font-weight: 700;
  font-size: 1rem;
}

.sw-ui .sw-service-prose .sw-service-actions__stack > p:has(> strong:only-child) + p {
  margin: 0 0 1rem;
  padding: 0 0.15rem 0 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.sw-ui .sw-service-prose .sw-service-actions__stack > ul {
  margin: -0.25rem 0 1.05rem;
  padding: 0.75rem 1rem 0.85rem 2.75rem;
  list-style: none;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--sw-border-w) solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sw-ui .sw-service-prose .sw-service-actions__stack > ul > li {
  position: relative;
  margin-bottom: 0.45rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.sw-ui .sw-service-prose .sw-service-actions__stack > ul > li:last-child {
  margin-bottom: 0;
}

.sw-ui .sw-service-prose .sw-service-actions__stack > ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sw-primary);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.45);
}
