/* ═══════════════════════════════════════════════════════════
   AVOLUTION UI KIT — Design System Reference Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Layout ── */
.uikit-page { background: #f8f8fa; min-height: 100vh; }
.uk-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.uk-section { padding: 56px 0; }
.uk-section + .uk-section { border-top: 1px solid #e6e8ee; }
.uk-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #b3b5bd; margin-bottom: 32px;
}
.uk-section-title span { color: #bf2026; }
.uk-grid { display: grid; gap: 24px; }
.uk-grid-2 { grid-template-columns: repeat(2, 1fr); }
.uk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.uk-grid-4 { grid-template-columns: repeat(4, 1fr); }
.uk-grid-5 { grid-template-columns: repeat(5, 1fr); }
.uk-grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 768px) {
  .uk-grid-2, .uk-grid-3, .uk-grid-4, .uk-grid-5, .uk-grid-6 {
    grid-template-columns: 1fr;
  }
}
.uk-flex { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.uk-flex-col { flex-direction: column; align-items: flex-start; }

/* ── Page Hero ── */
.uk-hero {
  background: #0d1321; color: #fff; padding: 120px 0 64px; text-align: center;
  position: relative; overflow: hidden;
}
.uk-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(191,32,38,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(26,26,46,0.3) 0%, transparent 60%);
}
.uk-hero * { position: relative; z-index: 1; }
.uk-hero h1 {
  font-size: 48px; font-weight: 900; letter-spacing: -1px;
  line-height: 1.1; margin-bottom: 16px;
}
.uk-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; }

/* ── Color Swatches ── */
.uk-swatch {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform .25s, box-shadow .25s;
}
.uk-swatch:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.uk-swatch-color { height: 100px; }
.uk-swatch-info { background: #fff; padding: 14px 16px; }
.uk-swatch-name { font-size: 13px; font-weight: 700; color: #111827; }
.uk-swatch-hex { font-size: 12px; color: #6b7280; font-family: 'Roboto Mono', monospace; }

/* ── Typography ── */
.uk-type-row {
  display: flex; align-items: baseline; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid #eef0f4;
}
.uk-type-row:last-child { border-bottom: none; }
.uk-type-label {
  flex: 0 0 120px; font-size: 11px; font-weight: 600;
  color: #b3b5bd; text-transform: uppercase; letter-spacing: 1px;
}
.uk-type-sample { color: #111827; }

/* ── Buttons ── */
.uk-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: 'Inter', sans-serif; font-weight: 700;
  border: none; cursor: pointer; transition: all .25s cubic-bezier(.22,.9,.37,1);
  position: relative; overflow: hidden; text-decoration: none;
}
.uk-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .5s;
}
.uk-btn:hover::after { transform: translateX(100%); }

/* Sizes */
.uk-btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.uk-btn-md { padding: 12px 24px; font-size: 14px; border-radius: 10px; }
.uk-btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.uk-btn-xs { padding: 6px 12px; font-size: 11px; border-radius: 6px; }

/* Variants */
.uk-btn-primary { background: #bf2026; color: #fff; }
.uk-btn-primary:hover { background: #a51b20; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(191,32,38,0.35); }

.uk-btn-dark { background: #111827; color: #fff; }
.uk-btn-dark:hover { background: #1e2738; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(17,24,39,0.3); }

.uk-btn-outline {
  background: transparent; color: #111827;
  box-shadow: inset 0 0 0 1.2px #111827;
}
.uk-btn-outline:hover { background: #111827; color: #fff; transform: translateY(-2px); }

.uk-btn-outline-red {
  background: transparent; color: #bf2026;
  box-shadow: inset 0 0 0 1.2px #bf2026;
}
.uk-btn-outline-red:hover { background: #bf2026; color: #fff; transform: translateY(-2px); }

.uk-btn-ghost { background: transparent; color: #111827; }
.uk-btn-ghost:hover { background: rgba(17,24,39,0.06); }

.uk-btn-white { background: #fff; color: #111827; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.uk-btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

.uk-btn-disabled { background: #e5e7eb; color: #9ca3af; cursor: not-allowed; pointer-events: none; }

.uk-btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }
.uk-btn-icon.sm { width: 36px; height: 36px; }
.uk-btn-icon svg { width: 20px; height: 20px; }

/* ── Pills / Tags ── */
.uk-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  transition: all .25s; cursor: pointer; border: 1px solid transparent;
}
.uk-pill-solid { background: #bf2026; color: #fff; }
.uk-pill-solid:hover { background: #a51b20; transform: scale(1.04); }
.uk-pill-light { background: #f3f4f8; color: #111827; }
.uk-pill-light:hover { background: #e6e8ee; }
.uk-pill-outline { background: transparent; border-color: #e5e7eb; color: #5b5d6b; }
.uk-pill-outline:hover { border-color: #101223; color: #101223; }
.uk-pill-dark { background: rgba(255,255,255,0.18); color: #fff; backdrop-filter: blur(16px); border-color: rgba(255,255,255,0.22); }
.uk-pill-dark:hover { background: rgba(255,255,255,0.3); }
.uk-pill-dark.active { background: rgba(255,255,255,0.92); color: #1a1a2e; }
.uk-pill-new { background: #bf2026; color: #fff; font-size: 11px; padding: 4px 10px; font-weight: 700; }
.uk-pill-status { font-size: 11px; padding: 4px 12px; }
.uk-pill-status.green { background: #ecfdf5; color: #059669; }
.uk-pill-status.amber { background: #fffbeb; color: #d97706; }
.uk-pill-status.red { background: #fef2f2; color: #dc2626; }
.uk-pill-status.gray { background: #f3f4f6; color: #6b7280; }

/* ── Cards ── */
.uk-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
}
.uk-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.uk-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.uk-card-body { padding: 24px; }
.uk-card-title { font-size: 18px; font-weight: 900; color: #111827; margin-bottom: 8px; }
.uk-card-text { font-size: 14px; color: #5b5d6b; line-height: 1.6; }

.uk-card-dark { background: #111827; color: #fff; }
.uk-card-dark .uk-card-title { color: #fff; }
.uk-card-dark .uk-card-text { color: rgba(255,255,255,0.6); }

.uk-card-glass {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); color: #fff;
}

.uk-card-bordered { box-shadow: none; border: 1px solid #e6e8ee; }
.uk-card-bordered:hover { border-color: #bf2026; }

.uk-card-overlay { position: relative; }
.uk-card-overlay .uk-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 32px 24px;
}
.uk-card-overlay .uk-card-title { color: #fff; }
.uk-card-overlay .uk-card-text { color: rgba(255,255,255,0.75); }

/* ── Spotlight Card (Premium 3-Column Variation) ── */
.uk-card-spotlight {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: none; border: 1px solid #eef0f4;
  text-align: center; height: 100%; display: flex; flex-direction: column;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
}
.uk-card-spotlight:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transform: translateY(-8px);
  border-color: transparent;
}
.uk-card-spotlight .uk-card-img-wrap {
  position: relative; overflow: hidden; height: 320px; background: #f8f9fb;
}
.uk-card-spotlight .uk-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.165, .84, .44, 1);
}
.uk-card-spotlight:hover .uk-card-img {
  transform: scale(1.1);
}
.uk-card-spotlight .uk-card-body {
  padding: 40px 32px; flex: 1; display: flex; flex-direction: column; align-items: center;
}
.uk-card-spotlight .uk-card-category {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #b3b5bd; margin-bottom: 12px;
}
.uk-card-spotlight .uk-card-title {
  font-size: 24px; font-weight: 900; color: #111827; margin-bottom: 16px;
}
.uk-card-spotlight .uk-card-text {
  font-size: 15px; color: #5b5d6b; line-height: 1.6; margin-bottom: 24px;
}
.uk-card-spotlight .uk-card-link {
  margin-top: auto; font-size: 13px; font-weight: 700; color: #111827;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.uk-card-spotlight .uk-card-link:hover { color: #bf2026; }
.uk-card-spotlight .uk-card-link::after {
  content: '↗'; font-size: 16px; transition: transform .3s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
}
.uk-card-spotlight:hover .uk-card-link::after {
  transform: translate(3px, -3px);
}

/* ── Inputs ── */
.uk-input-group { display: flex; flex-direction: column; gap: 6px; }
.uk-label { font-size: 12px; font-weight: 700; color: #111827; letter-spacing: 0.5px; }
.uk-input, .uk-select, .uk-textarea {
  width: 100%; padding: 12px 16px; border: 1.2px solid #e5e7eb;
  border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: #111827; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.uk-input:focus, .uk-select:focus, .uk-textarea:focus {
  outline: none; border-color: #bf2026;
  box-shadow: 0 0 0 3px rgba(191,32,38,0.12);
}
.uk-input::placeholder { color: #b3b5bd; }
.uk-textarea { min-height: 100px; resize: vertical; }
.uk-input-search {
  padding-left: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23b3b5bd' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 14px center;
  border-radius: 999px;
}

/* ── Dropdown ── */
.uk-dropdown-wrap { position: relative; display: inline-block; }
.uk-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid #e5e7eb; border-radius: 10px;
  background: #fff; font-size: 14px; font-weight: 600; color: #111827;
  cursor: pointer; transition: all .2s;
}
.uk-dropdown-trigger:hover { border-color: #111827; }
.uk-dropdown-trigger svg { width: 16px; height: 16px; transition: transform .2s; }
.uk-dropdown-wrap.open .uk-dropdown-trigger svg { transform: rotate(180deg); }
.uk-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 200px;
  background: #fff; border: 1px solid #e6e8ee; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .25s; z-index: 100;
}
.uk-dropdown-wrap.open .uk-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.uk-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px; font-size: 14px; color: #111827;
  cursor: pointer; transition: background .15s; text-decoration: none;
}
.uk-dropdown-item:hover { background: #f3f4f8; }
.uk-dropdown-item.active { background: #fef2f2; color: #bf2026; font-weight: 600; }
.uk-dropdown-divider { height: 1px; background: #eef0f4; margin: 4px 8px; }

/* ── Toggles & Checkboxes ── */
.uk-toggle {
  width: 48px; height: 26px; border-radius: 999px;
  background: #d1d5db; position: relative; cursor: pointer;
  transition: background .3s;
}
.uk-toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15); transition: transform .3s;
}
.uk-toggle.on { background: #bf2026; }
.uk-toggle.on::after { transform: translateX(22px); }

.uk-checkbox {
  width: 20px; height: 20px; border: 2px solid #d1d5db; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.uk-checkbox.checked { background: #bf2026; border-color: #bf2026; }
.uk-checkbox.checked svg { display: block; }
.uk-checkbox svg { display: none; width: 14px; height: 14px; color: #fff; }

/* ── Badges ── */
.uk-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 7px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
.uk-badge-red { background: #bf2026; color: #fff; }
.uk-badge-dark { background: #111827; color: #fff; }
.uk-badge-light { background: #f3f4f8; color: #5b5d6b; }

/* ── Avatars ── */
.uk-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #bf2026; color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.uk-avatar.sm { width: 32px; height: 32px; font-size: 12px; }
.uk-avatar.lg { width: 56px; height: 56px; font-size: 20px; }

/* ── Icons ── */
.uk-icon-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 16px;
}
.uk-icon-cell {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 12px; border-radius: 14px; background: #fff;
  border: 1px solid #eef0f4; transition: all .25s; cursor: default;
}
.uk-icon-cell:hover { border-color: #bf2026; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(191,32,38,0.08); }
.uk-icon-cell svg { width: 24px; height: 24px; color: #111827; }
.uk-icon-cell span { font-size: 10px; color: #6b7280; text-align: center; }

/* ── Spacing Ruler ── */
.uk-spacing-row { display: flex; align-items: center; gap: 16px; padding: 8px 0; }
.uk-spacing-bar { height: 24px; background: #bf2026; border-radius: 6px; opacity: 0.15; }
.uk-spacing-label { font-size: 12px; font-weight: 600; color: #5b5d6b; min-width: 50px; }
.uk-spacing-val { font-size: 12px; color: #b3b5bd; font-family: 'Roboto Mono', monospace; }

/* ── Tooltip Preview ── */
.uk-tooltip-demo {
  position: relative; display: inline-block;
}
.uk-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  padding: 8px 14px; border-radius: 8px; background: #111827; color: #fff;
  font-size: 12px; font-weight: 500; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.uk-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #111827;
}
.uk-tooltip-demo:hover .uk-tooltip { opacity: 1; }

/* ── Dividers ── */
.uk-divider { height: 1px; background: #e6e8ee; margin: 24px 0; }
.uk-divider-thick { height: 3px; background: #111827; width: 48px; border-radius: 2px; margin: 24px 0; }
.uk-divider-red { height: 3px; background: #bf2026; width: 48px; border-radius: 2px; margin: 24px 0; }

/* ── Skeleton Loading ── */
@keyframes uk-shimmer { to { background-position: -200% 0; } }
.uk-skeleton {
  background: linear-gradient(90deg, #eef0f4 25%, #f8f9fb 50%, #eef0f4 75%);
  background-size: 200% 100%; animation: uk-shimmer 1.5s infinite;
  border-radius: 8px;
}
.uk-skeleton-text { height: 14px; margin-bottom: 8px; }
.uk-skeleton-title { height: 22px; width: 60%; margin-bottom: 12px; }
.uk-skeleton-img { height: 200px; border-radius: 16px; }

/* ── Progress Bar ── */
.uk-progress { height: 6px; background: #eef0f4; border-radius: 999px; overflow: hidden; }
.uk-progress-bar {
  height: 100%; background: #bf2026; border-radius: 999px;
  transition: width .6s cubic-bezier(.22,.9,.37,1);
}

/* ── Progress Variations ── */
.uk-progress-indeterminate {
  height: 6px;
  background: #eef0f4;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.uk-progress-indeterminate::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  background: #bf2026;
  border-radius: 999px;
  animation: uk-progress-indeterminate-anim 1.5s infinite ease-in-out;
}
@keyframes uk-progress-indeterminate-anim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

.uk-progress-circle {
  position: relative;
  width: 64px;
  height: 64px;
}
.uk-progress-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.uk-progress-circle-bg {
  fill: none;
  stroke: #eef0f4;
  stroke-width: 6;
}
.uk-progress-circle-bar {
  fill: none;
  stroke: #bf2026;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.22, 0.9, 0.37, 1);
}
.uk-progress-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.uk-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #eef0f4;
  border-top-color: #bf2026;
  border-radius: 50%;
  animation: uk-spinner-anim 0.8s linear infinite;
}
@keyframes uk-spinner-anim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Secondary Button ── */
.uk-btn-secondary { background: #f3a720; color: #0d1321; }
.uk-btn-secondary:hover { background: #e09510; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,167,32,0.35); }
.uk-btn-outline-secondary { background: transparent; color: #f3a720; box-shadow: inset 0 0 0 1.2px #f3a720; }
.uk-btn-outline-secondary:hover { background: #f3a720; color: #0d1321; transform: translateY(-2px); }

/* ── Semantic Badges ── */
.uk-badge-success { background: #059669; color: #fff; }
.uk-badge-warning { background: #f3a720; color: #0d1321; }
.uk-badge-error { background: #dc2626; color: #fff; }
.uk-badge-info { background: #2563eb; color: #fff; }
.uk-badge-secondary { background: #f3a720; color: #0d1321; }
.uk-badge-outline { background: transparent; border: 1.5px solid #d1d5db; color: #5b5d6b; }

/* ── Semantic Alerts ── */
.uk-alert { padding: 16px 20px; border-radius: 12px; font-size: 14px; display: flex; align-items: flex-start; gap: 12px; }
.uk-alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.uk-alert-success { background: #ecfdf5; color: #065f46; border-left: 4px solid #059669; }
.uk-alert-warning { background: #fffbeb; color: #92400e; border-left: 4px solid #f3a720; }
.uk-alert-error { background: #fef2f2; color: #991b1b; border-left: 4px solid #dc2626; }
.uk-alert-info { background: #eff6ff; color: #1e40af; border-left: 4px solid #2563eb; }

/* ── Hyperlinks ── */
.uk-link { color: #bf2026; text-decoration: none; font-weight: 600; transition: all .2s; border-bottom: 1.5px solid transparent; }
.uk-link:hover { border-bottom-color: #bf2026; }
.uk-link-secondary { color: #f3a720; }
.uk-link-secondary:hover { border-bottom-color: #f3a720; }
.uk-link-dark { color: #111827; }
.uk-link-dark:hover { color: #bf2026; border-bottom-color: #bf2026; }
.uk-link-subtle { color: #6b7280; font-weight: 400; }
.uk-link-subtle:hover { color: #111827; border-bottom-color: #111827; }
.uk-link-underline { border-bottom-color: currentColor; }
.uk-link-arrow::after { content: ' →'; transition: transform .2s; display: inline-block; }
.uk-link-arrow:hover::after { transform: translateX(4px); }

/* ── Accordion ── */
.uk-accordion { border: 1px solid #e6e8ee; border-radius: 16px; overflow: hidden; background: #fff; }
.uk-accordion-item { border-bottom: 1px solid #eef0f4; }
.uk-accordion-item:last-child { border-bottom: none; }
.uk-accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; font-size: 15px; font-weight: 700;
  color: #111827; background: #fff; transition: background .2s; user-select: none;
}
.uk-accordion-header:hover { background: #f8f9fb; }
.uk-accordion-icon {
  width: 28px; height: 28px; border-radius: 50%; background: #f3f4f8;
  display: flex; align-items: center; justify-content: center; transition: all .3s; flex-shrink: 0;
}
.uk-accordion-icon svg { width: 14px; height: 14px; color: #5b5d6b; transition: transform .3s; }
.uk-accordion-item.open .uk-accordion-icon { background: #bf2026; }
.uk-accordion-item.open .uk-accordion-icon svg { transform: rotate(180deg); color: #fff; }
.uk-accordion-body {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px; font-size: 14px; color: #5b5d6b; line-height: 1.7;
}
.uk-accordion-item.open .uk-accordion-body { max-height: 300px; padding: 0 24px 20px; }

/* ── Banner ── */
.uk-banner {
  position: relative; border-radius: 20px; overflow: hidden;
  padding: 48px 40px; color: #fff; min-height: 200px;
  display: flex; flex-direction: column; justify-content: center;
}
.uk-banner-primary { background: linear-gradient(135deg, #bf2026 0%, #8b1519 100%); }
.uk-banner-secondary { background: linear-gradient(135deg, #f3a720 0%, #d48c0a 100%); color: #0d1321; }
.uk-banner-dark { background: linear-gradient(135deg, #111827 0%, #0d1321 100%); }
.uk-banner-split { background: #111827; display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.uk-banner-split > div { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.uk-banner-split > img { width: 100%; height: 100%; object-fit: cover; }
.uk-banner h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; line-height: 1.2; }
.uk-banner p { font-size: 15px; opacity: 0.85; line-height: 1.6; margin-bottom: 20px; }
.uk-banner-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; opacity: 0.7; }

@media (max-width: 640px) {
  .uk-banner {
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 40px 32px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .uk-banner h2 { font-size: 24px; }
}

/* Photo Banner */
.uk-banner-photo {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  padding: 0; min-height: 320px; isolation: isolate;
}
.uk-banner-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,19,33,0.85) 0%, rgba(13,19,33,0.5) 40%, rgba(13,19,33,0.3) 100%);
  transition: background .4s;
}
.uk-banner-photo:hover .uk-banner-photo-overlay {
  background: linear-gradient(135deg, rgba(13,19,33,0.9) 0%, rgba(13,19,33,0.55) 40%, rgba(13,19,33,0.35) 100%);
}
.uk-banner-photo-content {
  position: relative; z-index: 2;
  padding: 48px 40px; max-width: 600px;
}
.uk-banner-photo-content h2 { color: #fff; }
.uk-banner-photo-content p { color: rgba(255,255,255,0.8); }

@media (max-width: 640px) {
  .uk-banner-photo {
    min-height: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .uk-banner-photo-content {
    padding: 32px 24px;
    max-width: 100%;
    text-align: center;
  }
  .uk-banner-photo-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .uk-banner-photo-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* ── Slider / Range ── */
.uk-slider-wrap { display: flex; flex-direction: column; gap: 8px; }
.uk-slider-track { position: relative; height: 6px; background: #e5e7eb; border-radius: 999px; }
.uk-slider-fill { position: absolute; left: 0; top: 0; height: 100%; background: #bf2026; border-radius: 999px; }
.uk-slider-fill.secondary { background: #f3a720; }
.uk-slider-thumb {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  border: 3px solid #bf2026; box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  cursor: grab; transition: box-shadow .2s;
}
.uk-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(191,32,38,0.15); }
.uk-slider-thumb.secondary { border-color: #f3a720; }
.uk-slider-thumb.secondary:hover { box-shadow: 0 0 0 6px rgba(243,167,32,0.15); }
.uk-slider-labels { display: flex; justify-content: space-between; font-size: 12px; color: #6b7280; }

/* ── Horizontal Scroll (Apple-style full bleed) ── */
.uk-hscroll-section {
  width: 100%; position: relative; border-top: 1px solid #e6e8ee;
}
.uk-hscroll-section .uk-section-title {
  max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 24px;
}
.uk-hscroll-wrap { position: relative; }
.uk-hscroll {
  display: flex; gap: 16px; overflow-x: auto;
  padding: 4px 24px 24px;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
  scroll-padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.uk-hscroll::-webkit-scrollbar { display: none; }
.uk-hscroll > .uk-hscroll-card {
  flex: 0 0 calc((min(1200px, 100vw - 48px) - 48px) / 4);
  scroll-snap-align: start;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
}
.uk-hscroll > .uk-hscroll-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.uk-hscroll-card .uk-card-img { height: 240px; width: 100%; object-fit: cover; display: block; }
.uk-hscroll-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.95);
  color: #111827; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(0,0,0,0.08); z-index: 10; transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.uk-hscroll-nav:hover { background: #fff; transform: translateY(-50%) scale(1.1); box-shadow: 0 4px 20px rgba(0,0,0,0.18); }
.uk-hscroll-nav.prev { left: 12px; }
.uk-hscroll-nav.next { right: 12px; }
.uk-hscroll-nav svg { width: 18px; height: 18px; }
@media (max-width: 1024px) {
  .uk-hscroll > .uk-hscroll-card { flex: 0 0 calc((100vw - 80px) / 3); }
}
@media (max-width: 640px) {
  .uk-hscroll > .uk-hscroll-card { flex: 0 0 calc(100vw - 80px); }
}

/* ── Pill secondary variant ── */
.uk-pill-secondary { background: #f3a720; color: #0d1321; }
.uk-pill-secondary:hover { background: #e09510; transform: scale(1.04); }
.uk-pill-outline-secondary { background: transparent; border-color: #f3a720; color: #f3a720; }

/* ── Semantic pill status ── */
.uk-pill-status.blue { background: #eff6ff; color: #2563eb; }

/* ── Pagination ── */
.uk-pagination {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.uk-page-item {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 4px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  color: #5b5d6b; text-decoration: none; transition: all .25s;
  background: #fff; border: 1px solid #e6e8ee;
}
.uk-page-item:hover {
  color: #bf2026; border-color: #bf2026;
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(191,32,38,0.12);
}
.uk-page-item.active {
  background: #bf2026; color: #fff; border-color: #bf2026;
  box-shadow: 0 4px 16px rgba(191,32,38,0.3);
}
.uk-page-item.prev,
.uk-page-item.next { border: 1px solid #e6e8ee; }
.uk-page-item svg { width: 16px; height: 16px; }
.uk-page-ellipsis {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; font-size: 14px; color: #b3b5bd;
  letter-spacing: 2px;
}
.uk-page-info {
  font-size: 14px; color: #5b5d6b; padding: 0 12px;
}

/* Pagination — Rounded */
.uk-pagination-rounded .uk-page-item { border-radius: 50%; }

/* Pagination — Minimal */
.uk-pagination-minimal .uk-page-item {
  background: transparent; border: none;
}
.uk-pagination-minimal .uk-page-item:hover {
  background: #f3f4f8; box-shadow: none; transform: none;
}

/* Pagination — Dark */
.uk-pagination-dark .uk-page-item {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}
.uk-pagination-dark .uk-page-item:hover {
  background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); transform: translateY(-2px);
}
.uk-pagination-dark .uk-page-item.active {
  background: #bf2026; color: #fff; border-color: #bf2026;
}
.uk-pagination-dark .uk-page-ellipsis { color: rgba(255,255,255,0.3); }

/* ── Sidebar Layout ── */
.uk-sidebar-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 0;
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #e6e8ee; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  min-height: 520px;
}
.uk-sidebar {
  background: #fafbfc; border-right: 1px solid #eef0f4;
  padding: 24px 0; display: flex; flex-direction: column; gap: 8px;
}
.uk-sidebar-section { padding: 0 16px; margin-bottom: 8px; }
.uk-sidebar-heading {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #b3b5bd; padding: 8px 12px;
  margin-bottom: 4px;
}
.uk-sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px; font-size: 14px;
  font-weight: 500; color: #5b5d6b; text-decoration: none;
  transition: all .2s; position: relative;
}
.uk-sidebar-link svg {
  width: 20px; height: 20px; flex-shrink: 0; stroke-width: 1.8;
}
.uk-sidebar-link:hover { background: #eef0f4; color: #111827; }
.uk-sidebar-link.active {
  background: #fef2f2; color: #bf2026; font-weight: 700;
}
.uk-sidebar-link.active svg { color: #bf2026; }

.uk-sidebar-main { padding: 28px 32px; display: flex; flex-direction: column; }
.uk-sidebar-main-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}

/* Stats row */
.uk-sidebar-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 24px;
}
.uk-stat-card {
  background: #f8f9fb; border-radius: 14px; padding: 18px 20px;
  border: 1px solid #eef0f4; transition: all .25s;
}
.uk-stat-card:hover {
  border-color: #bf2026; transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(191,32,38,0.08);
}
.uk-stat-value { font-size: 28px; font-weight: 900; color: #111827; line-height: 1; margin-bottom: 4px; }
.uk-stat-label { font-size: 12px; color: #6b7280; font-weight: 500; }

/* Table */
.uk-sidebar-table-wrap {
  border: 1px solid #eef0f4; border-radius: 14px; overflow: hidden;
}
.uk-sidebar-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.uk-sidebar-table th {
  text-align: left; padding: 12px 16px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #6b7280; background: #f8f9fb; border-bottom: 1px solid #eef0f4;
}
.uk-sidebar-table td {
  padding: 14px 16px; border-bottom: 1px solid #f3f4f6;
  color: #5b5d6b;
}
.uk-sidebar-table tr:last-child td { border-bottom: none; }
.uk-sidebar-table tr { transition: background .15s; }
.uk-sidebar-table tbody tr:hover { background: #fafbfc; }

/* ── Data Visualizations ── */
.uk-chart-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.uk-chart-card {
  background: #fff; border-radius: 20px; padding: 28px;
  border: 1px solid #e6e8ee; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
}
.uk-chart-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.uk-chart-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.uk-chart-title {
  font-size: 16px; font-weight: 900; color: #111827; margin: 0 0 4px;
}
.uk-chart-subtitle {
  font-size: 12px; color: #6b7280; font-weight: 500;
}
.uk-chart-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
}
.uk-chart-badge.up { background: #ecfdf5; color: #059669; }
.uk-chart-badge.down { background: #fef2f2; color: #dc2626; }

/* ── Pie Chart ── */
.uk-pie-wrap {
  display: flex; align-items: center; justify-content: center; gap: 64px; padding: 12px 0;
}
.uk-pie {
  width: 180px; height: 180px; border-radius: 50%;
  position: relative; flex-shrink: 0;
  animation: uk-pie-spin .8s cubic-bezier(.22,.9,.37,1);
}
@keyframes uk-pie-spin {
  from { transform: rotate(-90deg); opacity: 0; }
  to { transform: rotate(0deg); opacity: 1; }
}
.uk-pie-hole {
  position: absolute; inset: 28px; border-radius: 50%;
  background: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.uk-pie-total {
  font-size: 28px; font-weight: 900; color: #111827; line-height: 1;
}
.uk-pie-total-label {
  font-size: 10px; color: #6b7280; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; margin-top: 2px;
}
.uk-pie-legend {
  display: flex; flex-direction: column; gap: 10px; min-width: 240px;
}
.uk-pie-legend-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #5b5d6b; transition: all .2s; cursor: default;
  padding: 6px 10px; border-radius: 8px;
}
.uk-pie-legend-item:hover {
  background: #f8f9fb; transform: translateX(4px);
}
.uk-pie-legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.uk-pie-legend-value {
  margin-left: auto; font-weight: 700; color: #111827; font-size: 13px;
}
.uk-pie-legend-pct {
  font-size: 11px; color: #b3b5bd; font-weight: 600; min-width: 32px; text-align: right;
}

/* ── Bar Chart ── */
.uk-bar-chart {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-bottom: 28px;
}
.uk-bar-chart-area {
  display: flex; align-items: flex-end; gap: 12px;
  height: 200px; padding: 0 4px;
  border-bottom: 2px solid #eef0f4;
  position: relative;
}
.uk-bar-chart-area::before {
  content: ''; position: absolute; inset: 0; bottom: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent calc(25% - 1px),
    #f3f4f8 calc(25% - 1px),
    #f3f4f8 25%
  );
  pointer-events: none;
}
.uk-bar-col {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; position: relative; z-index: 1;
  height: 100%; justify-content: flex-end;
}
.uk-bar {
  width: 100%; max-width: 64px; border-radius: 8px 8px 0 0;
  position: relative; cursor: pointer;
  transition: all .35s cubic-bezier(.22,.9,.37,1);
  animation: uk-bar-rise .6s cubic-bezier(.22,.9,.37,1) backwards;
}
.uk-bar:nth-child(1) { animation-delay: 0s; }
.uk-bar-col:nth-child(1) .uk-bar { animation-delay: 0s; }
.uk-bar-col:nth-child(2) .uk-bar { animation-delay: .07s; }
.uk-bar-col:nth-child(3) .uk-bar { animation-delay: .14s; }
.uk-bar-col:nth-child(4) .uk-bar { animation-delay: .21s; }
.uk-bar-col:nth-child(5) .uk-bar { animation-delay: .28s; }
.uk-bar-col:nth-child(6) .uk-bar { animation-delay: .35s; }
@keyframes uk-bar-rise {
  from { height: 0 !important; opacity: 0; }
}
.uk-bar:hover {
  filter: brightness(1.1); transform: scaleY(1.03);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}
.uk-bar-tooltip {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  background: #111827; color: #fff; padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.uk-bar-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 4px solid transparent; border-top-color: #111827;
}
.uk-bar:hover .uk-bar-tooltip { opacity: 1; }
.uk-bar-labels {
  display: flex; gap: 12px; padding: 10px 4px 0;
}
.uk-bar-label {
  flex: 1; text-align: center; font-size: 11px;
  color: #6b7280; font-weight: 600;
}
.uk-bar-y-axis {
  position: absolute; left: -36px; top: 0; bottom: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.uk-bar-y-label {
  font-size: 10px; color: #b3b5bd; font-family: 'Roboto Mono', monospace;
  text-align: right;
}

/* ── Line Chart ── */
.uk-line-chart {
  position: relative; height: 220px;
}
.uk-line-chart svg {
  width: 100%; height: 100%; overflow: visible;
}
.uk-line-path {
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 3000; stroke-dashoffset: 3000;
  animation: uk-line-draw 1.5s cubic-bezier(.22,.9,.37,1) forwards;
}
@keyframes uk-line-draw {
  to { stroke-dashoffset: 0; }
}
.uk-line-area {
  opacity: 0; animation: uk-area-fade .8s .6s cubic-bezier(.22,.9,.37,1) forwards;
}
@keyframes uk-area-fade {
  to { opacity: 1; }
}
.uk-line-dot {
  position: absolute; width: 10px; height: 10px; background: #fff;
  border: 2.5px solid; border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all .2s; cursor: pointer;
  opacity: 0; animation: uk-dot-pop .3s cubic-bezier(.22,.9,.37,1) forwards;
}
@keyframes uk-dot-pop {
  from { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.uk-line-dot:hover {
  transform: translate(-50%, -50%) scale(1.4); box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.uk-line-grid-line {
  stroke: #eef0f4; stroke-width: 1; stroke-dasharray: 4 4;
}
.uk-line-x-labels {
  display: flex; justify-content: space-between;
  padding: 10px 8px 0; font-size: 11px; color: #6b7280; font-weight: 600;
}
.uk-line-legend {
  display: flex; gap: 20px; margin-bottom: 16px;
}
.uk-line-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #5b5d6b; font-weight: 600;
}
.uk-line-legend-line {
  width: 20px; height: 3px; border-radius: 2px;
}

/* ── Lists ── */
.uk-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.uk-list li {
  position: relative; padding-left: 20px; font-size: 14px; color: #5b5d6b; line-height: 1.6;
}
.uk-list li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px;
  background: #bf2026; border-radius: 50%;
}

.uk-list-ordered {
  counter-reset: uk-counter;
}
.uk-list-ordered li {
  padding-left: 28px;
}
.uk-list-ordered li::before {
  counter-increment: uk-counter;
  content: counter(uk-counter) ".";
  background: none; width: auto; height: auto; border-radius: 0;
  top: 0; left: 0; font-weight: 700; color: #bf2026; font-size: 14px;
}

.uk-list-check li {
  padding-left: 28px;
}
.uk-list-check li::before {
  content: '✓'; background: none; color: #059669;
  font-weight: 900; font-size: 14px; top: 0; left: 0;
}

.uk-list-interactive { gap: 8px; }
.uk-list-interactive li {
  display: flex; align-items: center; gap: 16px; padding: 12px 16px;
  background: #fff; border: 1px solid #e6e8ee; border-radius: 12px;
  transition: all .2s; cursor: default;
}
.uk-list-interactive li::before { display: none; }
.uk-list-interactive li:hover {
  border-color: #bf2026; box-shadow: 0 4px 12px rgba(191,32,38,0.06); transform: translateX(4px);
}
.uk-list-icon {
  width: 40px; height: 40px; border-radius: 10px; background: #fef2f2;
  color: #bf2026; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s;
}
.uk-list-icon svg { width: 20px; height: 20px; }
.uk-list-interactive li:hover .uk-list-icon {
  background: #bf2026; color: #fff;
}
.uk-list-title { font-weight: 700; color: #111827; font-size: 14px; margin-bottom: 2px; }
.uk-list-desc { font-size: 12px; color: #6b7280; }

.uk-list-cms { gap: 8px; }
.uk-list-cms li {
  display: flex; align-items: center; gap: 16px; padding: 12px 16px;
  background: #fff; border: 1px solid #e6e8ee; border-radius: 12px;
  transition: all .2s;
}
.uk-list-cms li::before { display: none; }
.uk-list-cms li:hover {
  border-color: #b3b5bd; box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.uk-cms-drag {
  color: #b3b5bd; cursor: grab; display: flex; align-items: center;
}
.uk-cms-drag svg { width: 20px; height: 20px; }
.uk-cms-drag:hover { color: #111827; }
.uk-cms-thumb {
  width: 48px; height: 48px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  background: #f3f4f8;
}
.uk-cms-thumb img { width: 100%; height: 100%; object-fit: cover; }
.uk-cms-content { flex: 1; min-width: 0; }
.uk-cms-title { font-weight: 700; color: #111827; font-size: 14px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uk-cms-meta { font-size: 12px; color: #6b7280; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uk-cms-status { flex-shrink: 0; min-width: 100px; }
.uk-cms-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}

/* ── Logo Carousel Marquee ── */
.uk-logo-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 40px 0;
  border-radius: 20px;
  border: 1px solid #e6e8ee;
  display: flex;
}
.uk-logo-carousel::before, .uk-logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.uk-logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.uk-logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.uk-logo-track {
  display: flex;
  gap: 60px;
  padding-right: 60px;
  align-items: center;
  flex-shrink: 0;
  animation: uk-marquee 20s linear infinite;
}
.uk-logo-item {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.6);
  transition: filter .3s, transform .3s;
}
.uk-logo-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}
.uk-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@keyframes uk-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ── Breadcrumbs ── */
.uk-breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.uk-breadcrumb-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: #6b7280; text-decoration: none;
  transition: color .2s;
}
.uk-breadcrumb-item svg { width: 16px; height: 16px; }
.uk-breadcrumb-item:hover { color: #111827; }
.uk-breadcrumb-item.active { color: #111827; font-weight: 700; pointer-events: none; }
.uk-breadcrumb-separator {
  display: flex; align-items: center; color: #b3b5bd;
}
.uk-breadcrumb-separator svg { width: 14px; height: 14px; }

/* ── Segmented Control ── */
.uk-segmented {
  display: inline-flex; align-items: center; background: #f3f4f8;
  padding: 4px; border-radius: 12px; gap: 4px;
}
.uk-segmented-item {
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: #5b5d6b;
  background: transparent; border: none; border-radius: 8px;
  cursor: pointer; transition: all .2s; flex: 1; text-align: center;
}
.uk-segmented-item:hover { color: #111827; }
.uk-segmented-item.active {
  background: #fff; color: #111827; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.uk-segmented-dark { background: #111827; }
.uk-segmented-dark .uk-segmented-item { color: rgba(255,255,255,0.6); }
.uk-segmented-dark .uk-segmented-item:hover { color: #fff; }
.uk-segmented-dark .uk-segmented-item.active {
  background: rgba(255,255,255,0.15); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ── Hero Carousel ── */
.uk-hero-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  background: #2a2624;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.uk-hero-carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}
.uk-hero-carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.uk-hero-carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.uk-hero-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.6) 40%, transparent 100%);
  z-index: 1;
}
.uk-hero-carousel-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  color: #fff;
}
.uk-hero-carousel-subtitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.uk-hero-carousel-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.uk-hero-carousel-desc {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}
.uk-hero-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.uk-hero-carousel-nav:hover {
  background: rgba(0,0,0,0.8);
  border-color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.uk-hero-carousel-nav svg { width: 20px; height: 20px; }
.uk-hero-carousel-nav.prev { left: 24px; }
.uk-hero-carousel-nav.next { right: 24px; }

.uk-hero-carousel-pagination {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
}
.uk-hero-carousel-progress {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.uk-hero-carousel-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #fff;
  width: 0%;
  border-radius: 2px;
}
.uk-hero-carousel-progress.active .uk-hero-carousel-progress-bar {
  /* width and transition handled by JS */
}
.uk-hero-carousel-playpause {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.uk-hero-carousel-playpause:hover {
  opacity: 1;
}
.uk-hero-carousel-playpause svg { width: 10px; height: 10px; }

/* ── Bento Grid ── */
.uk-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.uk-bento-item {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #e6e8ee;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.uk-bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.uk-bento-item.col-span-2 { grid-column: span 2; }
.uk-bento-item.col-span-3 { grid-column: span 3; }
.uk-bento-item.col-span-4 { grid-column: span 4; }
.uk-bento-item.row-span-2 { grid-row: span 2; }

.uk-bento-dark { background: #111827; color: #fff; border: none; }
.uk-bento-primary { background: linear-gradient(135deg, #bf2026 0%, #8b1519 100%); color: #fff; border: none; }
.uk-bento-secondary { background: linear-gradient(135deg, #f3a720 0%, #d48c0a 100%); color: #0d1321; border: none; }

.uk-bento-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 60%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 0 0 24px 0;
}
.uk-bento-img-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.uk-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,24,39,0.8) 0%, rgba(17,24,39,0.4) 40%, transparent 100%);
  z-index: 1;
}
.uk-bento-content {
  position: relative;
  z-index: 2;
}
.uk-bento-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
}
.uk-bento-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}
.uk-bento-dark .uk-bento-subtitle,
.uk-bento-primary .uk-bento-subtitle { color: rgba(255,255,255,0.7); }
.uk-bento-secondary .uk-bento-subtitle { color: rgba(13,19,33,0.7); }

/* ── Responsive helpers ── */
@media (max-width: 768px) {
  .uk-hero h1 { font-size: 32px; }
  .uk-hero { padding: 100px 0 48px; }
  .uk-section { padding: 40px 0; }
  .uk-banner-split { grid-template-columns: 1fr; }
  .uk-banner-split > img { height: 200px; }
  .uk-banner h2 { font-size: 22px; }
  .uk-sidebar-layout { grid-template-columns: 1fr; }
  .uk-sidebar { border-right: none; border-bottom: 1px solid #eef0f4; }
  .uk-sidebar-stats { grid-template-columns: repeat(2, 1fr); }
  .uk-sidebar-table-wrap { overflow-x: auto; }
  .uk-bento { grid-template-columns: repeat(2, 1fr); }
  .uk-bento-item.col-span-3, .uk-bento-item.col-span-4 { grid-column: span 2; }
}
@media (max-width: 640px) {
  .uk-bento { grid-template-columns: 1fr; }
  .uk-bento-item.col-span-2 { grid-column: span 1; }
  .uk-bento-item.row-span-2 { grid-row: span 1; }
}

/* ── Calendar ── */
.uk-calendar {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #e6e8ee; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  max-width: 350px;
}
.uk-calendar-header {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
}
.uk-calendar-month { font-size: 16px; font-weight: 900; color: #111827; }
.uk-calendar-nav { display: flex; gap: 8px; }
.uk-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 12px; }
.uk-calendar-weekday {
  font-size: 11px; font-weight: 700; color: #b3b5bd; text-align: center;
  padding: 8px 0; text-transform: uppercase;
}
.uk-calendar-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #5b5d6b; cursor: pointer;
  border-radius: 10px; transition: all .2s; position: relative;
}
.uk-calendar-day:hover { background: #f3f4f8; color: #111827; }
.uk-calendar-day.active { background: #bf2026; color: #fff; box-shadow: 0 4px 12px rgba(191,32,38,0.3); }
.uk-calendar-day.muted { color: #d1d5db; cursor: default; }
.uk-calendar-event {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: #f3a720;
}
.uk-calendar-day.active .uk-calendar-event { background: #fff; }

/* ── Countdown ── */
.uk-countdown { display: flex; gap: 16px; align-items: center; }
.uk-countdown-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 64px;
}
.uk-countdown-number {
  font-size: 32px; font-weight: 900; color: #111827; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.uk-countdown-label {
  font-size: 10px; font-weight: 700; color: #b3b5bd; text-transform: uppercase;
  letter-spacing: 1px;
}

/* Countdown Variants */
.uk-countdown-primary .uk-countdown-number { color: #bf2026; }
.uk-countdown-dark { background: #111827; padding: 24px; border-radius: 20px; display: inline-flex; }
.uk-countdown-dark .uk-countdown-number { color: #fff; }
.uk-countdown-dark .uk-countdown-label { color: rgba(255,255,255,0.4); }

.uk-countdown-glass {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); padding: 24px; border-radius: 20px;
  display: inline-flex;
}
.uk-countdown-glass .uk-countdown-number { color: #fff; }
.uk-countdown-glass .uk-countdown-label { color: rgba(255,255,255,0.5); }

/* ── Video Player ── */
.uk-video-player {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 9;
}
.uk-video-player:hover .uk-video-controls {
  opacity: 1;
  transform: translateY(0);
}
.uk-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.uk-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(0,0,0,0.2);
  transition: opacity 0.3s;
}
.uk-video-player.playing .uk-video-overlay {
  opacity: 0;
}
.uk-video-play-center {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.2s, background 0.2s;
  pointer-events: auto;
  cursor: pointer;
}
.uk-video-play-center:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.3);
}
.uk-video-play-center svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}
.uk-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  color: #fff;
}
.uk-video-controls button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}
.uk-video-controls button:hover {
  opacity: 1;
  transform: scale(1.1);
}
.uk-video-controls button svg {
  width: 20px;
  height: 20px;
}
.uk-video-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: height 0.2s;
}
.uk-video-progress:hover {
  height: 6px;
}
.uk-video-progress-filled {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #bf2026;
  border-radius: 4px;
  width: 0%;
  pointer-events: none;
}
.uk-video-progress-filled::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.uk-video-progress:hover .uk-video-progress-filled::after {
  transform: translateY(-50%) scale(1);
}
.uk-video-time {
  font-size: 13px;
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* ── Lightbox ── */
.uk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.uk-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.uk-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
}
.uk-lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  padding: 24px;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.37, 1);
}
.uk-lightbox.open .uk-lightbox-content {
  transform: scale(1);
}
.uk-lightbox-photo {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.uk-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.uk-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}
.uk-lightbox-close svg {
  width: 24px;
  height: 24px;
}
.uk-lightbox .uk-video-player {
  max-width: 100%;
  background: transparent;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

/* Lightbox Trigger */
.uk-video-trigger {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
}
.uk-video-trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.uk-video-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.uk-video-trigger .uk-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #bf2026;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.uk-video-trigger:hover .uk-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.uk-video-trigger .uk-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

/* ── Minimal Player ── */
.uk-video-minimal .uk-video-controls-minimal {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.22, 0.9, 0.37, 1);
}

.uk-video-controls-minimal button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
.uk-video-controls-minimal button:hover {
  opacity: 1;
  transform: scale(1.1);
}
.uk-video-controls-minimal button svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}
.uk-video-controls-minimal button .uk-icon-pause {
  margin-left: 0;
}

/* ── Search Bars ── */
.uk-search-wrapper { max-width: 600px; width: 100%; position: relative; }
.uk-search-bar {
  display: flex; align-items: center; background: #fff;
  border: 1.5px solid #e6e8ee; border-radius: 12px;
  padding: 4px 6px; transition: all .3s cubic-bezier(.22,.9,.37,1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.uk-search-bar:focus-within {
  border-color: #bf2026; box-shadow: 0 8px 24px rgba(191,32,38,0.12);
  transform: translateY(-2px);
}
.uk-search-input {
  flex: 1; border: none !important; background: transparent !important; padding: 12px 14px !important;
  font-size: 15px !important; color: #111827 !important; outline: none !important;
  box-shadow: none !important;
}
.uk-search-icon { color: #b3b5bd; margin-left: 10px; flex-shrink: 0; }
.uk-search-icon svg { width: 20px; height: 20px; }
.uk-search-btn {
  background: #bf2026; color: #fff; border: none;
  padding: 10px 20px; border-radius: 8px; font-weight: 700;
  font-size: 14px; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; gap: 8px;
}
.uk-search-btn:hover { background: #a51b20; }

/* Glass Variant */
.uk-search-glass {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* Results Dropdown */
.uk-search-results {
  position: absolute; top: calc(100% + 12px); left: 0; right: 0;
  background: #fff; border: 1px solid #e6e8ee; border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12); padding: 8px;
  z-index: 100; opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all .3s cubic-bezier(.22,.9,.37,1);
}
.uk-search-wrapper.active .uk-search-results {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.uk-search-result-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 10px; cursor: pointer; transition: background .2s;
  text-decoration: none; color: inherit;
}
.uk-search-result-item:hover { background: #f3f4f8; }
.uk-search-result-thumb {
  width: 44px; height: 44px; border-radius: 8px; object-fit: cover;
  background: #f3f4f8; flex-shrink: 0;
}
.uk-search-result-content { flex: 1; }
.uk-search-result-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 2px; }
.uk-search-result-meta { font-size: 12px; color: #6b7280; }

/* Minimal / Icon-only expansion */
.uk-search-minimal-wrap { position: relative; display: inline-block; }
.uk-search-minimal {
  width: 44px; height: 44px; border-radius: 22px; overflow: hidden;
  background: #fff; border: 1.5px solid #e6e8ee; display: flex;
  align-items: center; transition: width .4s cubic-bezier(.22,.9,.37,1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.uk-search-minimal:focus-within { width: 300px; border-color: #bf2026; box-shadow: 0 8px 24px rgba(191,32,38,0.12); }
.uk-search-minimal .uk-search-icon { margin: 0 12px; }
.uk-search-minimal .uk-search-input { padding-left: 0 !important; }

/* Shortcut Hint */
.uk-search-shortcut {
  font-size: 10px; font-weight: 700; color: #b3b5bd;
  background: #f3f4f8; padding: 2px 6px; border-radius: 4px;
  margin-right: 8px; border: 1px solid #e6e8ee;
}

/* ── Header Row & Table ── */
.uk-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #e6e8ee;
  padding-top: 24px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .uk-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.uk-header-row-content {
  max-width: 600px;
}
.uk-header-row-title {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
}
.uk-header-row-text {
  font-size: 14px;
  color: #5b5d6b;
  line-height: 1.5;
  margin: 0;
}

/* Header Row Variations */
.uk-header-row.uk-header-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.uk-header-row.uk-header-center .uk-header-row-content {
  margin: 0 auto;
}

.uk-header-row.uk-header-right {
  flex-direction: row-reverse;
  text-align: right;
}
@media (max-width: 640px) {
  .uk-header-row.uk-header-right {
    flex-direction: column;
    align-items: flex-end;
  }
}

/* Data Table */
.uk-table-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e6e8ee;
  overflow-x: auto;
}
.uk-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.uk-table th {
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  background: #f3f4f8;
  border-bottom: 1px solid #e6e8ee;
  white-space: nowrap;
}
.uk-table td {
  padding: 16px;
  font-size: 14px;
  color: #5b5d6b;
  border-bottom: 1px solid #e6e8ee;
}
.uk-table tr:last-child td {
  border-bottom: none;
}
.uk-table td strong {
  color: #111827;
  font-weight: 500;
}


/* ── Feature Split Cards (Premium Apple-inspired) ── */
.uk-card-feature-split {
  display: flex;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 10px 40px rgba(0,0,0,0.03);
  margin-bottom: 32px;
  min-height: 400px;
  transition: transform .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s;
}
.uk-card-feature-split:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
}
.uk-card-feature-content {
  flex: 1;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
.uk-card-feature-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.uk-card-feature-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 32px;
  max-width: 400px;
}
.uk-card-feature-graphic {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uk-card-feature-graphic.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.uk-feature-split-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.165, .84, .44, 1);
}
.uk-card-feature-split:hover .uk-feature-split-img {
  transform: scale(1.05);
}

/* Repair Variation */
.uk-card-feature-split.repair {
  flex-direction: row;
}
.uk-card-feature-split.repair .uk-card-feature-graphic {
  background: #2563eb;
}
.uk-card-repair-assets {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.uk-card-repair-assets.overlay {
  background: rgba(37, 99, 235, 0.4);
}
.uk-repair-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  animation: float-slow 6s ease-in-out infinite;
}
.uk-repair-bubble.lg {
  width: 160px;
  height: 160px;
}

/* Support Variation */
.uk-card-feature-split.support {
  flex-direction: row-reverse;
}
.uk-card-feature-split.support .uk-card-feature-graphic {
  background: #eef2ff;
}
.uk-support-app-icon {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
  animation: float-slow 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.uk-support-app-icon.overlay {
  transform: scale(0.9);
}
.uk-support-app-icon svg {
  width: 70px;
  height: 70px;
  color: #fff;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 992px) {
  .uk-card-feature-split,
  .uk-card-feature-split.support {
    flex-direction: column;
  }
  .uk-card-feature-graphic {
    min-height: 300px;
  }
  .uk-card-feature-content {
    padding: 40px;
    text-align: center;
    align-items: center;
  }
}

/* ── Modal & Article Window (Apple-style) ── */
.uk-modal-container {
  position: fixed !important; inset: 0 !important; z-index: 20000 !important;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
  overflow-y: auto;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.uk-modal-container.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.uk-modal-backdrop {
  display: none;
}
.uk-modal-content {
  position: relative; width: 100%; max-width: 1000px; height: auto;
  background: #fff; border-radius: 32px; overflow: hidden;
  transform: scale(0.9) translateY(40px);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  display: block;
  flex-shrink: 0;
  margin: 80px auto;
}
.uk-modal-container.open .uk-modal-content {
  transform: scale(1) translateY(0);
}
.uk-modal-close {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.05); color: #000;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: all 0.2s;
  border: none; outline: none;
}
.uk-modal-close:hover {
  background: rgba(0,0,0,0.1); transform: scale(1.1);
}
.uk-modal-close svg { width: 20px; height: 20px; stroke-width: 2.5; }

.uk-modal-body {
  padding: 0;
}
.uk-modal-article {
  padding: 80px 60px; max-width: 800px; margin: 0 auto;
}
.uk-modal-article-header { margin-bottom: 48px; }
.uk-modal-article-tag {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #b3b5bd; margin-bottom: 12px; display: block;
}
.uk-modal-article-title {
  font-size: 48px; font-weight: 900; color: #111827; line-height: 1.1; margin-bottom: 24px;
}
.uk-modal-article-lead {
  font-size: 20px; color: #5b5d6b; line-height: 1.6; margin-bottom: 32px;
}
.uk-modal-article-content {
  font-size: 17px; color: #111827; line-height: 1.8;
}
.uk-modal-article-img {
  width: 100%; border-radius: 24px; margin: 40px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .uk-modal-content { max-width: calc(100% - 48px); height: auto; border-radius: 24px; margin: 40px auto; }
  .uk-modal-article { padding: 60px 40px; }
  .uk-modal-article-title { font-size: 36px; }
}
@media (max-width: 640px) {
  .uk-modal-article { padding: 48px 24px; }
  .uk-modal-article-title { font-size: 28px; }
  .uk-modal-article-lead { font-size: 18px; }
}

