/* ================================
   Wakkeli Typography
================================ */

.wk-display-xl {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wk-display-lg {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.15;
  font-weight: 800;
}

.wk-h1 { font-size: 48px; line-height: 1.2; font-weight: 800; }
.wk-h2 { font-size: 40px; line-height: 1.25; font-weight: 800; }
.wk-h3 { font-size: 32px; line-height: 1.3; font-weight: 700; }
.wk-h4 { font-size: 24px; line-height: 1.35; font-weight: 700; }

.wk-body-lg { font-size: 18px; line-height: 1.8; font-weight: 400; }
.wk-body { font-size: 16px; line-height: 1.8; font-weight: 400; }
.wk-body-sm { font-size: 14px; line-height: 1.7; font-weight: 400; }

.wk-caption { font-size: 13px; line-height: 1.5; color: var(--wk-muted); }
.wk-label { font-size: 14px; line-height: 1.4; font-weight: 700; }

.wk-text-muted { color: var(--wk-muted); }
.wk-text-primary { color: var(--wk-primary); }
.wk-text-success { color: var(--wk-success); }

/* ================================
   Wakkeli Title Primitive
================================ */

.wk-title[data-wk-title] {
  margin: 0;
  color: var(--wk-text);
}

.wk-title[data-wk-title].wk-title--hero {
  font-size: 64px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.wk-title[data-wk-title].wk-title--section {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wk-title[data-wk-title].wk-title--card {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 850;
}

.wk-title[data-wk-title].wk-title--subtle {
  color: var(--wk-muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.wk-title[data-wk-title] .wk-title__link {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.wk-title[data-wk-title] .wk-title__link:hover {
  color: var(--wk-primary);
}

/* ================================
   Wakkeli Text Primitive
================================ */

.wk-text[data-wk-text] {
  margin: 0;
  color: var(--wk-text);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.wk-text[data-wk-text].wk-text--card {
  color: var(--wk-muted);
  font-size: 15px;
  line-height: 1.85;
}

.wk-text[data-wk-text].wk-text--section {
  color: var(--wk-muted);
  font-size: 18px;
  line-height: 1.9;
}

.wk-text[data-wk-text].wk-text--hero {
  color: var(--wk-muted);
  font-size: 18px;
  line-height: 1.9;
}

.wk-text[data-wk-text].wk-text--body {
  color: var(--wk-text);
  font-size: 16px;
  line-height: 1.8;
}

.wk-text[data-wk-text].wk-text--subtle {
  color: var(--wk-muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.wk-text[data-wk-text].wk-text--meta-label {
  color: var(--wk-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.wk-text[data-wk-text].wk-text--meta-value {
  color: var(--wk-text);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
  overflow-wrap: anywhere;
}

/* ================================
   Wakkeli Surface Primitive
================================ */

.wk-surface[data-wk-surface] {
  --wk-surface-bg: var(--wk-surface, #FFFFFF);
  --wk-surface-border-color: var(--wk-border, #E2E8F0);
  --wk-surface-radius: var(--wk-radius-card, 20px);
  --wk-surface-padding: var(--wk-space-2, 16px);
  --wk-surface-shadow: none;
  box-sizing: border-box;
  background: var(--wk-surface-bg);
  border: 1px solid var(--wk-surface-border-color);
  border-radius: var(--wk-surface-radius);
  padding: var(--wk-surface-padding);
  box-shadow: var(--wk-surface-shadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wk-surface[data-wk-surface].wk-surface--flat {
  --wk-surface-border-color: transparent;
  --wk-surface-shadow: none;
}

.wk-surface[data-wk-surface].wk-surface--card {
  --wk-surface-shadow: none;
}

.wk-surface[data-wk-surface].wk-surface--elevated {
  --wk-surface-shadow: var(--wk-shadow-card, 0 8px 24px rgba(15, 23, 42, .08));
}

.wk-surface[data-wk-surface].wk-surface--media {
  --wk-surface-radius: var(--wk-radius-section, 24px);
  overflow: hidden;
}

.wk-surface[data-wk-surface].wk-surface--legacy-card {
  --wk-surface-border-color: #E5E7EB;
  --wk-surface-radius: 16px;
  --wk-surface-shadow: none;
}

.wk-surface[data-wk-surface].wk-surface--background-none {
  --wk-surface-bg: transparent;
}

.wk-surface[data-wk-surface].wk-surface--border-gray {
  --wk-surface-border-color: #E5E7EB;
}

.wk-surface[data-wk-surface].wk-surface--border-primary-hover {
  --wk-surface-border-color: #E5E7EB;
}

.wk-surface[data-wk-surface].wk-surface--border-primary-hover:hover {
  --wk-surface-border-color: var(--wk-primary, #2563EB);
  border-color: var(--wk-primary, #2563EB);
}

.wk-surface[data-wk-surface].wk-surface--radius-rounded-2xl {
  --wk-surface-radius: 16px;
}

.wk-surface[data-wk-surface].wk-surface--padding-none {
  --wk-surface-padding: 0;
}

.wk-surface[data-wk-surface].wk-surface--padding-sm {
  --wk-surface-padding: var(--wk-space-1, 8px);
}

.wk-surface[data-wk-surface].wk-surface--padding-md {
  --wk-surface-padding: var(--wk-space-2, 16px);
}

.wk-surface[data-wk-surface].wk-surface--padding-lg {
  --wk-surface-padding: var(--wk-space-3, 24px);
}

.wk-surface[data-wk-surface].wk-surface--hover:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 163, 184, .55);
  box-shadow: var(--wk-shadow-card-hover, 0 18px 44px rgba(15, 23, 42, .10));
}

.wk-surface[data-wk-surface].wk-surface--legacy-card.wk-surface--hover:hover {
  transform: none;
  border-color: var(--wk-surface-border-color);
  box-shadow: none;
}

.wk-surface[data-wk-surface].wk-surface--legacy-card.wk-surface--border-primary-hover:hover {
  border-color: var(--wk-primary, #2563EB);
}

/* ================================
   Wakkeli Avatar Primitive
================================ */

.wk-avatar[data-wk-avatar] {
  --wk-avatar-size: 48px;
  --wk-avatar-status-size: 12px;
  --wk-avatar-verified-size: 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--wk-avatar-size);
  height: var(--wk-avatar-size);
  flex: 0 0 var(--wk-avatar-size);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(34, 197, 94, .12));
  color: var(--wk-primary);
  font-size: calc(var(--wk-avatar-size) * .34);
  line-height: 1;
  font-weight: 800;
  overflow: hidden;
  vertical-align: middle;
}

.wk-avatar[data-wk-avatar].wk-avatar--xs {
  --wk-avatar-size: 24px;
  --wk-avatar-status-size: 8px;
  --wk-avatar-verified-size: 12px;
}

.wk-avatar[data-wk-avatar].wk-avatar--sm {
  --wk-avatar-size: 32px;
  --wk-avatar-status-size: 9px;
  --wk-avatar-verified-size: 13px;
}

.wk-avatar[data-wk-avatar].wk-avatar--md {
  --wk-avatar-size: 48px;
  --wk-avatar-status-size: 12px;
  --wk-avatar-verified-size: 16px;
}

.wk-avatar[data-wk-avatar].wk-avatar--lg {
  --wk-avatar-size: 56px;
  --wk-avatar-status-size: 14px;
  --wk-avatar-verified-size: 18px;
}

.wk-avatar[data-wk-avatar].wk-avatar--xl {
  --wk-avatar-size: 80px;
  --wk-avatar-status-size: 18px;
  --wk-avatar-verified-size: 22px;
}

.wk-avatar[data-wk-avatar].wk-avatar--bordered {
  padding: 2px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
}

.wk-avatar[data-wk-avatar].wk-avatar--elevated {
  padding: 2px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .10);
}

.wk-avatar[data-wk-avatar].wk-avatar--minimal {
  background: transparent;
}

.wk-avatar[data-wk-avatar] .wk-avatar__image,
.wk-avatar[data-wk-avatar] .wk-avatar__fallback,
.wk-avatar[data-wk-avatar] .wk-avatar__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.wk-avatar[data-wk-avatar] .wk-avatar__image {
  object-fit: cover;
}

.wk-avatar[data-wk-avatar] .wk-avatar__fallback {
  background: linear-gradient(135deg, rgba(37, 99, 235, .13), rgba(37, 99, 235, .06));
  color: var(--wk-primary);
  text-transform: uppercase;
}

.wk-avatar[data-wk-avatar] .wk-avatar__placeholder {
  background: linear-gradient(90deg, #eef2f7 25%, #f8fafc 37%, #eef2f7 63%);
  background-size: 400% 100%;
  animation: wk-avatar-loading 1.3s ease infinite;
}

.wk-avatar[data-wk-avatar] .wk-avatar__status {
  position: absolute;
  inset-inline-end: 1px;
  bottom: 1px;
  width: var(--wk-avatar-status-size);
  height: var(--wk-avatar-status-size);
  border: 2px solid #fff;
  border-radius: 999px;
  background: #94A3B8;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .14);
}

.wk-avatar[data-wk-avatar] .wk-avatar__status--online {
  background: var(--wk-success);
}

.wk-avatar[data-wk-avatar] .wk-avatar__status--offline {
  background: #94A3B8;
}

.wk-avatar[data-wk-avatar] .wk-avatar__status--unavailable {
  background: var(--wk-danger);
}

.wk-avatar[data-wk-avatar].wk-avatar--status-inset .wk-avatar__status {
  inset-inline-end: 4px;
  bottom: 4px;
}

.wk-avatar[data-wk-avatar].wk-avatar--no-status-shadow .wk-avatar__status {
  box-shadow: none;
}

.wk-avatar[data-wk-avatar] .wk-avatar__verified {
  position: absolute;
  inset-inline-start: -2px;
  bottom: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--wk-avatar-verified-size);
  height: var(--wk-avatar-verified-size);
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--wk-primary);
  color: #fff;
  font-size: calc(var(--wk-avatar-verified-size) * .55);
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(37, 99, 235, .24);
}

@keyframes wk-avatar-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

/* ================================
   Wakkeli Rating Primitive
================================ */

.wk-rating[data-wk-rating] {
  --wk-rating-star-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wk-text);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  vertical-align: middle;
}

.wk-rating[data-wk-rating].wk-rating--sm {
  --wk-rating-star-size: 14px;
  font-size: 13px;
  gap: 5px;
}

.wk-rating[data-wk-rating].wk-rating--md {
  --wk-rating-star-size: 16px;
  font-size: 14px;
}

.wk-rating[data-wk-rating].wk-rating--lg,
.wk-rating[data-wk-rating].wk-rating--large {
  --wk-rating-star-size: 18px;
  font-size: 16px;
  gap: 8px;
}

.wk-rating[data-wk-rating].wk-rating--compact {
  gap: 5px;
}

.wk-rating[data-wk-rating] .wk-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.wk-rating[data-wk-rating] .wk-rating__star,
.wk-rating[data-wk-rating] .wk-rating__compact-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wk-warning);
  font-size: var(--wk-rating-star-size);
  line-height: 1;
}

.wk-rating[data-wk-rating] .wk-rating__star--empty {
  color: #CBD5E1;
}

.wk-rating[data-wk-rating] .wk-rating__star--half {
  color: transparent;
  background: linear-gradient(90deg, var(--wk-warning) 50%, #CBD5E1 50%);
  -webkit-background-clip: text;
  background-clip: text;
}

.wk-rating[data-wk-rating] .wk-rating__number {
  color: var(--wk-text);
  font-weight: 800;
}

.wk-rating[data-wk-rating] .wk-rating__count,
.wk-rating[data-wk-rating] .wk-rating__empty {
  color: var(--wk-muted);
  font-weight: 600;
}

.wk-rating[data-wk-rating] .wk-rating__loading {
  display: inline-flex;
  width: 96px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef2f7 25%, #f8fafc 37%, #eef2f7 63%);
  background-size: 400% 100%;
  animation: wk-rating-loading 1.3s ease infinite;
}

@keyframes wk-rating-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.wk-rating[data-wk-rating].wk-rating--tone-yellow .wk-rating__star,
.wk-rating[data-wk-rating].wk-rating--tone-yellow .wk-rating__compact-star {
  color: #FACC15;
}

.wk-rating[data-wk-rating].wk-rating--tone-yellow .wk-rating__star--half {
  color: transparent;
  background: linear-gradient(90deg, #FACC15 50%, #CBD5E1 50%);
  -webkit-background-clip: text;
  background-clip: text;
}

.wk-rating[data-wk-rating].wk-rating--weight-normal {
  font-weight: 400;
}

.wk-rating[data-wk-rating].wk-rating--weight-normal .wk-rating__number {
  font-weight: 600;
}

.wk-rating[data-wk-rating].wk-rating--weight-normal .wk-rating__count,
.wk-rating[data-wk-rating].wk-rating--weight-normal .wk-rating__empty {
  font-weight: 400;
}

@media (max-width: 768px) {
  .wk-h1 { font-size: 36px; }
  .wk-h2 { font-size: 30px; }
  .wk-h3 { font-size: 26px; }
  .wk-h4 { font-size: 22px; }
}

/* ================================
   Wakkeli Hero
================================ */

.wk-hero {
  overflow: hidden;
}

.wk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(320px, 45fr);
  align-items: center;
  gap: 48px;
}

.wk-hero-content {
  max-width: 680px;
  align-self: center;
}

.wk-hero .wk-section-kicker {
  margin-bottom: 18px;
}

.wk-hero-title {
  margin: 0;
  color: var(--wk-text);
  max-width: 570px;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.wk-hero-subtitle {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--wk-muted);
  font-size: 18px;
  line-height: 1.9;
}

.wk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.wk-btn.wk-hero-button {
  min-height: 54px;
  padding: 0 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.wk-btn.wk-hero-button.wk-btn-primary {
  background: var(--wk-primary);
  border-color: var(--wk-primary);
  box-shadow: 0 12px 24px rgba(37, 99, 235, .18);
}

.wk-btn.wk-hero-button.wk-btn-primary:hover {
  background: var(--wk-primary-hover);
  border-color: var(--wk-primary-hover);
  box-shadow: 0 16px 28px rgba(37, 99, 235, .22);
}

.wk-btn.wk-hero-button.wk-btn-secondary {
  background: var(--wk-surface);
  border-color: rgba(148, 163, 184, .36);
  color: var(--wk-text);
}

.wk-btn.wk-hero-button.wk-btn-secondary:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, .28);
  color: var(--wk-primary);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .06);
}

.wk-search-box {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 560px;
  min-height: 56px;
  margin-top: 28px;
  padding: 3px;
  border: 1px solid rgba(148, 163, 184, .36);
  border-radius: 16px;
  background: var(--wk-surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .055);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.wk-search-box:focus-within {
  border-color: rgba(37, 99, 235, .52);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .09), 0 14px 30px rgba(15, 23, 42, .075);
}

.wk-search-box-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-height: 50px;
  color: var(--wk-muted);
  opacity: .82;
  pointer-events: none;
}

.wk-search-box-icon-svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wk-search-box-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  min-height: 50px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  color: var(--wk-text);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  text-align: right;
}

.wk-search-box-input::placeholder {
  color: var(--wk-muted);
  opacity: .74;
  font-weight: 500;
}

.wk-search-box-input:focus {
  outline: none;
}

.wk-search-box .wk-btn.wk-search-box-button {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 30px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: var(--wk-primary);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.wk-search-box .wk-btn.wk-search-box-button:hover {
  background: var(--wk-primary-hover);
  transform: translateY(-1px);
}

.wk-hero-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  align-self: center;
  justify-self: end;
}

.wk-hero-image-wrap,
.wk-hero-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  min-height: 340px;
  max-height: 500px;
  border: 1px solid var(--wk-border);
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #eff6ff);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.wk-hero-image {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: calc(100% - 32px);
  object-fit: contain;
}

.wk-hero-placeholder {
  align-content: center;
  gap: 18px;
  padding: 42px;
}

.wk-hero-placeholder-bar,
.wk-hero-placeholder-line,
.wk-hero-placeholder-card {
  display: block;
  border-radius: 999px;
  background: rgba(37, 99, 235, .12);
}

.wk-hero-placeholder-bar {
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background: rgba(37, 99, 235, .16);
}

.wk-hero-placeholder-line {
  width: 78%;
  height: 18px;
}

.wk-hero-placeholder-line-short {
  width: 56%;
}

.wk-hero-placeholder-card {
  width: 74%;
  height: 76px;
  margin-top: 12px;
  border-radius: 22px;
  background: var(--wk-surface);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
}

.wk-hero-placeholder-card-alt {
  width: 58%;
  margin-inline-start: auto;
}

@media (max-width: 1200px) {
  .wk-hero-grid {
    gap: 40px;
  }

  .wk-hero-title {
    font-size: 56px;
    max-width: 520px;
  }

  .wk-hero-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .wk-hero-grid {
    grid-template-columns: minmax(0, 55fr) minmax(300px, 45fr);
    gap: 32px;
  }

  .wk-hero-title {
    font-size: 44px;
  }

  .wk-hero-subtitle {
    max-width: 560px;
  }

  .wk-hero-actions {
    margin-top: 32px;
  }

  .wk-btn.wk-hero-button {
    min-height: 52px;
    padding-inline: 32px;
  }

  .wk-search-box {
    margin-top: 24px;
  }

  .wk-hero-image-wrap,
  .wk-hero-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .wk-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wk-hero-content {
    max-width: none;
  }

  .wk-hero-visual {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .wk-hero-title {
    font-size: 36px;
    line-height: 1.18;
  }

  .wk-hero-subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.85;
  }

  .wk-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wk-search-box {
    margin-top: 22px;
    padding: 3px;
    border-radius: 16px;
  }

  .wk-search-box-icon {
    width: 44px;
    min-height: 50px;
  }

  .wk-search-box .wk-btn.wk-search-box-button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .wk-hero-image-wrap,
  .wk-hero-placeholder {
    min-height: 300px;
    max-height: none;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .wk-search-box {
    max-width: none;
  }

  .wk-search-box-input {
    font-size: 14px;
    padding-inline: 2px;
  }

  .wk-search-box .wk-btn.wk-search-box-button {
    padding-inline: 16px;
  }
}
/* ================================
   Wakkeli Section Header
================================ */

.wk-section {
  padding: 96px 0;
}

.wk-section-soft {
  background: var(--wk-bg);
}

.wk-section-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.wk-container {
  width: min(var(--wk-container), calc(100% - 32px));
  margin-inline: auto;
}

.wk-section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.wk-section-header-start {
  text-align: start;
}

.wk-section-header-center {
  margin-inline: auto;
  text-align: center;
}

.wk-section-header-sm {
  max-width: 560px;
}

.wk-section-header-lg {
  max-width: 860px;
}

.wk-section-header-xl {
  max-width: 1040px;
}

.wk-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  color: var(--wk-primary);
  font-size: 14px;
  font-weight: 800;
}

.wk-legacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  color: var(--wk-primary);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.wk-badge[data-wk-badge] {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 8px;
  border-radius: 999px;
  line-height: 1.4;
  font-weight: 800;
  white-space: nowrap;
}

.wk-badge[data-wk-badge].wk-badge--sm {
  padding: 5px 10px;
  font-size: 13px;
}

.wk-badge[data-wk-badge].wk-badge--md {
  padding: 8px 14px;
  font-size: 14px;
}

.wk-badge[data-wk-badge].wk-badge--primary {
  background: rgba(37, 99, 235, .08);
  color: var(--wk-primary);
}

.wk-badge[data-wk-badge].wk-badge--accent {
  background: rgba(245, 158, 11, .12);
  color: #B45309;
}

.wk-badge[data-wk-badge].wk-badge--success {
  background: rgba(34, 197, 94, .10);
  color: #15803D;
}

.wk-badge[data-wk-badge].wk-badge--danger {
  background: rgba(239, 68, 68, .10);
  color: #B91C1C;
}

.wk-badge[data-wk-badge].wk-badge--muted,
.wk-badge[data-wk-badge].wk-badge--neutral {
  background: #F8FAFC;
  color: var(--wk-muted);
  border: 1px solid rgba(226, 232, 240, .86);
}

.wk-badge[data-wk-badge] .wk-badge__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wk-badge[data-wk-badge] .wk-badge__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.wk-price[data-wk-price] {
  --wk-price-label-color: var(--wk-muted);
  --wk-price-value-color: var(--wk-text);
  --wk-price-label-size: 12px;
  --wk-price-value-size: 16px;
  --wk-price-label-weight: 500;
  --wk-price-value-weight: 800;
  --wk-price-gap: 2px;
  display: inline-flex;
  flex-direction: column;
  gap: var(--wk-price-gap);
  line-height: 1.4;
  vertical-align: middle;
}

.wk-price[data-wk-price].wk-price--sm {
  --wk-price-label-size: 12px;
  --wk-price-value-size: 14px;
}

.wk-price[data-wk-price].wk-price--md {
  --wk-price-label-size: 13px;
  --wk-price-value-size: 16px;
}

.wk-price[data-wk-price].wk-price--lg {
  --wk-price-label-size: 14px;
  --wk-price-value-size: 20px;
  --wk-price-gap: 3px;
}

.wk-price[data-wk-price].wk-price--align-start {
  text-align: start;
  align-items: flex-start;
}

.wk-price[data-wk-price].wk-price--align-end {
  text-align: end;
  align-items: flex-end;
}

.wk-price[data-wk-price].wk-price--align-center {
  text-align: center;
  align-items: center;
}

.wk-price[data-wk-price] .wk-price__label {
  color: var(--wk-price-label-color);
  font-size: var(--wk-price-label-size);
  line-height: 1.4;
  font-weight: var(--wk-price-label-weight);
}

.wk-price[data-wk-price] .wk-price__value {
  color: var(--wk-price-value-color);
  font-size: var(--wk-price-value-size);
  line-height: 1.35;
  font-weight: var(--wk-price-value-weight);
}

.wk-button[data-wk-button]:not(.wk-button--unstyled) {
  --wk-button-bg: var(--wk-primary);
  --wk-button-color: #fff;
  --wk-button-border-color: var(--wk-primary);
  --wk-button-bg-hover: var(--wk-primary-hover);
  --wk-button-color-hover: #fff;
  --wk-button-border-color-hover: var(--wk-primary-hover);
  --wk-button-height: 48px;
  --wk-button-padding-inline: 24px;
  --wk-button-radius: 999px;
  --wk-button-font-size: 15px;
  --wk-button-font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--wk-button-height);
  padding-inline: var(--wk-button-padding-inline);
  border: 1px solid var(--wk-button-border-color);
  border-radius: var(--wk-button-radius);
  background: var(--wk-button-bg);
  color: var(--wk-button-color);
  font: inherit;
  font-size: var(--wk-button-font-size);
  line-height: 1;
  font-weight: var(--wk-button-font-weight);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled):hover {
  background: var(--wk-button-bg-hover);
  border-color: var(--wk-button-border-color-hover);
  color: var(--wk-button-color-hover);
  transform: translateY(-1px);
  text-decoration: none;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled):focus-visible {
  outline: 2px solid var(--wk-primary);
  outline-offset: 3px;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--sm {
  --wk-button-height: 40px;
  --wk-button-padding-inline: 18px;
  --wk-button-font-size: 14px;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--md {
  --wk-button-height: 48px;
  --wk-button-padding-inline: 24px;
  --wk-button-font-size: 15px;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--lg {
  --wk-button-height: 56px;
  --wk-button-padding-inline: 32px;
  --wk-button-font-size: 16px;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--secondary {
  --wk-button-bg: #fff;
  --wk-button-color: var(--wk-text);
  --wk-button-border-color: var(--wk-border);
  --wk-button-bg-hover: #fff;
  --wk-button-color-hover: var(--wk-primary);
  --wk-button-border-color-hover: rgba(37, 99, 235, .35);
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--outline {
  --wk-button-bg: transparent;
  --wk-button-color: var(--wk-primary);
  --wk-button-border-color: var(--wk-primary);
  --wk-button-bg-hover: var(--wk-primary);
  --wk-button-color-hover: #fff;
  --wk-button-border-color-hover: var(--wk-primary);
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--ghost {
  --wk-button-bg: transparent;
  --wk-button-color: var(--wk-text);
  --wk-button-border-color: transparent;
  --wk-button-bg-hover: rgba(37, 99, 235, .06);
  --wk-button-color-hover: var(--wk-primary);
  --wk-button-border-color-hover: transparent;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--success {
  --wk-button-bg: var(--wk-success);
  --wk-button-color: #fff;
  --wk-button-border-color: var(--wk-success);
  --wk-button-bg-hover: var(--wk-success);
  --wk-button-color-hover: #fff;
  --wk-button-border-color-hover: var(--wk-success);
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--danger {
  --wk-button-bg: var(--wk-danger);
  --wk-button-color: #fff;
  --wk-button-border-color: var(--wk-danger);
  --wk-button-bg-hover: var(--wk-danger);
  --wk-button-color-hover: #fff;
  --wk-button-border-color-hover: var(--wk-danger);
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--disabled,
.wk-button[data-wk-button]:not(.wk-button--unstyled):disabled {
  opacity: .58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled).wk-button--disabled:hover,
.wk-button[data-wk-button]:not(.wk-button--unstyled):disabled:hover {
  background: var(--wk-button-bg);
  border-color: var(--wk-button-border-color);
  color: var(--wk-button-color);
  transform: none;
}

.wk-button[data-wk-button]:not(.wk-button--unstyled) .wk-button__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wk-section-title {
  margin: 0;
  color: var(--wk-text);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wk-section-description {
  margin: 14px 0 0;
  color: var(--wk-muted);
  font-size: 18px;
  line-height: 1.9;
}

.wk-section-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  color: var(--wk-primary);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.wk-section-header-action:hover {
  color: var(--wk-primary-hover);
  transform: translateX(-2px);
}

/* ================================
   Wakkeli CTA
================================ */

.wk-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: 28px;
  background: var(--wk-surface);
  box-shadow: 0 20px 56px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.wk-cta-banner::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 6px;
  background: var(--wk-primary);
}

.wk-cta-content {
  position: relative;
  max-width: 760px;
}

.wk-cta-title {
  margin: 0;
  color: var(--wk-text);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 850;
}

.wk-cta-description {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--wk-muted);
  font-size: 18px;
  line-height: 1.9;
}

.wk-cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.wk-btn.wk-cta-button {
  min-height: 52px;
  padding-inline: 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
}

/* ================================
   Wakkeli Icon Card
================================ */

.wk-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wk-icon-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--wk-border);
  border-radius: 24px;
  background: var(--wk-surface);
  box-shadow: 0 10px 32px rgba(15, 23, 42, .06);
  transition: all .22s ease;
  overflow: hidden;
}

.wk-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .10);
  border-color: rgba(37, 99, 235, .25);
}

.wk-icon-card-number {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(15, 23, 42, .055);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
}

.wk-icon-card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(37, 99, 235, .10);
  color: var(--wk-primary);
  font-size: 24px;
}

.wk-icon-card-icon.success {
  background: rgba(34, 197, 94, .10);
  color: var(--wk-success);
}

.wk-icon-card-title {
  margin: 0 0 12px;
  color: var(--wk-text);
  font-size: 21px;
  line-height: 1.4;
  font-weight: 800;
}

.wk-icon-card-text {
  margin: 0;
  color: var(--wk-muted);
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 992px) {
  .wk-icon-grid {
    grid-template-columns: 1fr;
  }

  .wk-section {
    padding: 72px 0;
  }

  .wk-cta-banner {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .wk-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .wk-cta-banner {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .wk-cta-actions,
  .wk-btn.wk-cta-button {
    width: 100%;
  }
}
