/*
 * Hark Universal Pro - V2 LiveCanvas sales baseline.
 * Scoped to body.theme-hark-universal-pro so existing sites are untouched.
 */
@import url("/assets/site-themes/_shared/lte-theme-canonical.css?v=20260425-12");

body.theme-hark-universal-pro {
  --hu-bg: var(--theme-body-bg, #f6f8fc);
  --hu-body-bg: var(--theme-body-bg, #f6f8fc);
  --hu-surface: var(--theme-section-bg, #ffffff);
  --hu-surface-soft: color-mix(in srgb, var(--hu-surface) 78%, var(--hu-bg));
  --hu-text: var(--theme-text, #111827);
  --hu-muted: var(--theme-muted, #667085);
  --hu-primary: var(--theme-primary, #2457f5);
  --hu-secondary: var(--theme-secondary, #111827);
  --hu-accent: var(--theme-accent, #7c3aed);
  --hu-border: color-mix(in srgb, var(--hu-muted) 22%, transparent);
  --hu-border-strong: color-mix(in srgb, var(--hu-muted) 34%, transparent);
  --hu-radius: var(--theme-radius, 14px);
  --hu-radius-lg: calc(var(--hu-radius) + 10px);
  --hu-shadow-sm: 0 10px 28px rgba(16, 24, 40, 0.08);
  --hu-shadow-md: 0 24px 70px rgba(16, 24, 40, 0.13);
  --hu-container: min(var(--theme-container-width, 1180px), calc(100vw - 40px));
  background: var(--hu-bg);
  color: var(--hu-text);
  font-family: var(--theme-font-body, "Inter", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.theme-hark-universal-pro.lte-ts-public {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.theme-hark-universal-pro.lte-ts-public > main,
body.theme-hark-universal-pro.lte-ts-public > #page.site {
  flex: 1 0 auto;
}

body.theme-hark-universal-pro *,
body.theme-hark-universal-pro *::before,
body.theme-hark-universal-pro *::after {
  box-sizing: border-box;
}

body.theme-hark-universal-pro :is(.container, .theme-container, .lte-container, .lte-preview-shell) {
  max-width: var(--hu-container);
}

body.theme-hark-universal-pro :is(h1, h2, h3, h4, h5, h6) {
  color: var(--hu-text);
  font-family: var(--theme-font-heading, "Inter", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

body.theme-hark-universal-pro h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

body.theme-hark-universal-pro h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
}

body.theme-hark-universal-pro p {
  color: color-mix(in srgb, var(--hu-text) 74%, var(--hu-muted));
}

body.theme-hark-universal-pro a {
  color: var(--hu-primary);
}

body.theme-hark-universal-pro img,
body.theme-hark-universal-pro svg,
body.theme-hark-universal-pro video,
body.theme-hark-universal-pro iframe {
  max-width: 100%;
}

body.theme-hark-universal-pro :is(.btn, .theme-button, .theme-header-cta, a.btn, button.btn) {
  border-radius: var(--theme-button-radius, 12px);
  font-weight: 800;
  letter-spacing: 0;
}

body.theme-hark-universal-pro :is(.btn-primary, .theme-button-primary, .theme-header-cta) {
  border: 1px solid var(--hu-primary);
  background: var(--hu-primary);
  color: #ffffff;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--hu-primary) 24%, transparent);
}

body.theme-hark-universal-pro :is(.btn-primary, .theme-button-primary, .theme-header-cta):hover {
  border-color: color-mix(in srgb, var(--hu-primary) 86%, #000000);
  background: color-mix(in srgb, var(--hu-primary) 88%, #000000);
  color: #ffffff;
  transform: translateY(-1px);
}

body.theme-hark-universal-pro :is(.btn-outline, .theme-button-secondary, .btn-secondary, .btn-outline-primary) {
  border: 1px solid var(--hu-border-strong);
  background: color-mix(in srgb, var(--hu-surface) 92%, transparent);
  color: var(--hu-text);
}

body.theme-hark-universal-pro :is(.btn-outline, .theme-button-secondary, .btn-secondary, .btn-outline-primary):hover {
  border-color: var(--hu-primary);
  color: var(--hu-primary);
  background: #ffffff;
}

body.theme-hark-universal-pro .hc-ts-announcement-bar,
body.theme-hark-universal-pro .lte-announcement {
  background: var(--hu-secondary);
  color: #ffffff;
  border: 0;
}

body.theme-hark-universal-pro .lte-header-public-wrap,
body.theme-hark-universal-pro header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--theme-header-bg, #ffffff) 96%, transparent);
  color: var(--theme-header-text, var(--hu-text));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(16px);
}

body.theme-hark-universal-pro .lte-header-public-wrap--boxed {
  width: 100%;
  max-width: none;
}

body.theme-hark-universal-pro .lte-header-preview,
body.theme-hark-universal-pro .theme-header-inner,
body.theme-hark-universal-pro header[role="banner"] > .container {
  min-height: 82px;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

body.theme-hark-universal-pro :is(.lte-header-brand, .theme-header-brand, .navbar-brand) {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(260px, 30vw);
  color: var(--theme-header-text, var(--hu-text));
  font-size: 1.04rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.theme-hark-universal-pro :is(.lte-header-brand, .theme-header-brand, .navbar-brand) img {
  display: block;
  max-width: min(190px, 24vw);
  max-height: 52px;
  object-fit: contain;
}

body.theme-hark-universal-pro :is(.theme-header-nav, .lte-header-nav, nav[aria-label="Hoofdmenu"]) {
  margin-left: 0;
  margin-right: 0;
  min-width: 0;
  max-width: 100%;
}

body.theme-hark-universal-pro .lte-header-middle {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

body.theme-hark-universal-pro .lte-header-middle.lte-header-menu-left {
  justify-content: flex-start !important;
}

body.theme-hark-universal-pro .lte-header-middle.lte-header-menu-center {
  justify-content: center !important;
}

body.theme-hark-universal-pro .lte-header-middle.lte-header-menu-right {
  justify-content: flex-end !important;
}

body.theme-hark-universal-pro .lte-header-middle:is(.lte-header-menu-left, .lte-header-menu-center, .lte-header-menu-right) :is(.theme-header-nav, .lte-header-nav, nav[aria-label="Hoofdmenu"]) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.theme-hark-universal-pro .hc-menu-root,
body.theme-hark-universal-pro .theme-header-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item {
  position: relative;
}

body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item > a,
body.theme-hark-universal-pro .theme-header-nav a,
body.theme-hark-universal-pro .theme-header-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--theme-header-link, var(--hu-text));
  font-weight: 760;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item > a:hover,
body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item.is-open > a,
body.theme-hark-universal-pro .theme-header-nav a:hover {
  color: var(--hu-primary);
  background: color-mix(in srgb, var(--hu-primary) 9%, transparent);
}

body.theme-hark-universal-pro .hc-menu-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 140;
  display: none;
  min-width: 250px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  box-shadow: var(--hu-shadow-md);
}

body.theme-hark-universal-pro .lte-header-preview,
body.theme-hark-universal-pro .theme-header-inner,
body.theme-hark-universal-pro .lte-header-fullwidth-bg,
body.theme-hark-universal-pro header[role="banner"] {
  overflow: visible;
}

body.theme-hark-universal-pro .hc-menu-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 140;
  display: none;
  width: min(880px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  margin: 0;
  padding: var(--hc-mega-pad, 16px);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  box-shadow: var(--hu-shadow-md);
  transform: translateX(-50%);
}

body.theme-hark-universal-pro .hc-menu-item:hover > .hc-menu-mega,
body.theme-hark-universal-pro .hc-menu-item:focus-within > .hc-menu-mega,
body.theme-hark-universal-pro .hc-menu-item.is-open > .hc-menu-mega {
  display: block;
}

body.theme-hark-universal-pro .hc-menu-mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--hc-mega-gap, 16px);
}

body.theme-hark-universal-pro .hc-menu-mega-grid.has-promo {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
}

body.theme-hark-universal-pro .hc-menu-mega-cols {
  display: grid;
  grid-template-columns: repeat(var(--hc-mega-cols, 3), minmax(0, 1fr));
  gap: var(--hc-mega-gap, 16px);
}

body.theme-hark-universal-pro .hc-menu-mega-col,
body.theme-hark-universal-pro .hc-menu-mega-group {
  display: grid;
  gap: 8px;
  align-content: start;
}

body.theme-hark-universal-pro .hc-menu-mega-link {
  display: flex;
  width: 100%;
  min-height: 0;
  padding: 11px 12px;
  border-radius: 12px;
  color: #1f2937 !important;
  font-weight: 780;
  text-decoration: none;
}

body.theme-hark-universal-pro .hc-menu-mega-link:hover {
  color: var(--hu-primary) !important;
  background: #f3f6ff;
}

body.theme-hark-universal-pro .hc-menu-mega-sublinks {
  display: grid;
  gap: 4px;
  padding: 0 0 0 10px;
  margin: 0;
  list-style: none;
}

body.theme-hark-universal-pro .hc-menu-mega-sublinks a {
  min-height: 0;
  padding: 7px 10px;
  border-radius: 10px;
  color: #475467 !important;
  font-weight: 620;
}

body.theme-hark-universal-pro .hc-menu-mega-promo {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--hu-primary) 7%, #ffffff);
}

body.theme-hark-universal-pro .hc-menu-mega-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

body.theme-hark-universal-pro .hc-menu-item:hover > .hc-menu-submenu,
body.theme-hark-universal-pro .hc-menu-item:focus-within > .hc-menu-submenu,
body.theme-hark-universal-pro .hc-menu-item.is-open > .hc-menu-submenu {
  display: block;
}

body.theme-hark-universal-pro .hc-menu-submenu a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  color: #344054;
}

body.theme-hark-universal-pro .hc-menu-submenu a:hover {
  color: var(--hu-primary);
  background: #f3f6ff;
}

body.theme-hark-universal-pro .theme-header-cta {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 18px;
  white-space: nowrap;
}

body.theme-hark-universal-pro .lte-header-cta-position-end :is(.theme-header-cta, .lte-header-cta--desktop),
body.theme-hark-universal-pro :is(.theme-header-cta.lte-header-cta--end, .lte-header-cta--desktop.lte-header-cta--end) {
  margin-left: auto;
  justify-self: end;
}

body.theme-hark-universal-pro :is(.theme-section, .hark-ts-snip, .lte-preview-block, section[data-hark-block-type]) {
  border-radius: 0;
}

body.theme-hark-universal-pro :is(.theme-section, section[data-hark-block-type], .hark-ts-snip) {
  margin-block: 0;
}

body.theme-hark-universal-pro :is(.theme-block, .theme-block-text, .theme-block-features, .theme-block-pricing, .theme-block-faq, .theme-block-gallery, .theme-block-form, .theme-block-cta) {
  max-width: var(--hu-container);
  margin-inline: auto;
}

body.theme-hark-universal-pro .theme-section-text {
  background: var(--hu-body-bg);
}

body.theme-hark-universal-pro .theme-section-text .theme-block-text {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--hu-primary) 8%, transparent), transparent 26rem);
}

body.theme-hark-universal-pro .theme-section-text .theme-block-text > .lte-preview-shell {
  width: min(var(--hu-container), calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(56px, 7vw, 92px) 0 !important;
}

body.theme-hark-universal-pro .theme-block-text-title {
  max-width: 820px;
  margin-bottom: 14px !important;
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  line-height: 1.02;
}

body.theme-hark-universal-pro .theme-block-text-body {
  color: var(--hu-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}

body.theme-hark-universal-pro .theme-block-text-body p:has(> img) {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.55fr);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
}

body.theme-hark-universal-pro .theme-block-text-body p:has(> img) > img {
  order: 2;
  width: min(100%, 340px);
  height: auto;
  justify-self: end;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  background: #ffffff;
}

body.theme-hark-universal-pro :is(.theme-block-hero, .lte-hero, [data-hark-block-type="hero"]) {
  min-height: clamp(500px, 58vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--hu-surface-soft);
}

body.theme-hark-universal-pro .lte-hero__media,
body.theme-hark-universal-pro .theme-block-hero .lte-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.theme-hark-universal-pro .lte-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.theme-hark-universal-pro .lte-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.34));
}

body.theme-hark-universal-pro .theme-block-hero :is(.lte-hero__content, .theme-hero-content, .container) {
  position: relative;
  z-index: 2;
}

body.theme-hark-universal-pro :is(.theme-card, .card, .pricing-card, .feature-card, .testimonial-card, .team-card, .portfolio-card, .lte-card) {
  border: 1px solid var(--hu-border);
  border-radius: var(--hu-radius-lg);
  background: var(--hu-surface);
  box-shadow: var(--hu-shadow-sm);
}

body.theme-hark-universal-pro :is(.features-grid, .stats-grid, .pricing-grid, .team-grid, .gallery-grid, .portfolio-grid, .logos-grid) {
  gap: 22px;
}

body.theme-hark-universal-pro :is(input, select, textarea, .form-control, .form-select) {
  border: 1px solid var(--hu-border-strong);
  border-radius: 12px;
  background: #ffffff;
  color: var(--hu-text);
  min-height: 46px;
}

body.theme-hark-universal-pro :is(input, select, textarea, .form-control, .form-select):focus {
  border-color: var(--hu-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hu-primary) 14%, transparent);
}

body.theme-hark-universal-pro :is(.accordion, .tabs, .nav-tabs, .faq-list) {
  border-radius: var(--hu-radius-lg);
}

body.theme-hark-universal-pro :is(.accordion-item, .tab-content, .faq-item) {
  border-color: var(--hu-border);
}

body.theme-hark-universal-pro :is(.theme-block-webshop-products, [data-hark-block-type="webshop_products"], .webshop-products, .product-grid),
body.theme-hark-universal-pro :is(.theme-block-gift-registry, [data-hark-block-type="gift_registry"]),
body.theme-hark-universal-pro :is(.theme-block-manegeplan, [data-hark-block-type="manegeplan"], [data-hark-block-type="manegeplan_activiteiten"]),
body.theme-hark-universal-pro :is(.theme-block-domain-services, [data-hark-block-type^="domain_"]),
body.theme-hark-universal-pro :is(.theme-block-saas-chatbot, [data-hark-block-type="saas_chatbot"]) {
  border: 1px solid var(--hu-border);
  border-radius: var(--hu-radius-lg);
  background: var(--hu-surface);
  box-shadow: var(--hu-shadow-sm);
  overflow: hidden;
}

body.theme-hark-universal-pro :is(.theme-block-webshop-products, [data-hark-block-type="webshop_products"]) :is(.card, .product-card) {
  height: 100%;
}

body.theme-hark-universal-pro :is(.theme-block-manegeplan, [data-hark-block-type="manegeplan"], [data-hark-block-type="manegeplan_activiteiten"]) iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--hu-radius);
  background: #ffffff;
}

body.theme-hark-universal-pro .lte-domain-services {
  padding: clamp(48px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--hu-primary) 9%, transparent), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--hu-primary) 4%, #ffffff) 100%);
}

body.theme-hark-universal-pro .lte-domain-services .container,
body.theme-hark-universal-pro .lte-domain-services-inner {
  max-width: min(1120px, calc(100vw - 32px));
  margin-inline: auto;
}

body.theme-hark-universal-pro .lte-domain-services-inner {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

body.theme-hark-universal-pro .lte-domain-services-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

body.theme-hark-universal-pro .lte-domain-services-head h3 {
  margin: 0;
  color: var(--hu-text);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

body.theme-hark-universal-pro .lte-domain-services-sub {
  margin: 12px auto 0;
  max-width: 720px;
  color: var(--hu-muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
}

body.theme-hark-universal-pro .lte-domain-services-whois {
  border: 1px solid var(--hu-border);
  border-radius: var(--hu-radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--hu-shadow);
  padding: clamp(22px, 3vw, 34px);
}

body.theme-hark-universal-pro .lte-domain-services-whois.card {
  border: 1px solid var(--hu-border);
}

body.theme-hark-universal-pro .lte-domain-services-whois .card-body {
  padding: 0;
}

body.theme-hark-universal-pro .lte-domain-services-whois-title,
body.theme-hark-universal-pro .lte-domain-services-popular-prices-title {
  margin: 0 0 14px;
  color: var(--hu-text);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

body.theme-hark-universal-pro .lte-domain-services-whois-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

body.theme-hark-universal-pro .lte-domain-services-whois-input,
body.theme-hark-universal-pro .lte-domain-services-tld-filter {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--hu-border-strong);
  border-radius: 14px;
  background: #ffffff;
  color: var(--hu-text);
  padding: 0 16px;
  font: inherit;
}

body.theme-hark-universal-pro .lte-domain-services-whois-row .lte-theme-btn,
body.theme-hark-universal-pro .lte-domain-services-whois-row .btn {
  flex: 0 0 auto;
  min-height: 52px;
  white-space: nowrap;
  border-radius: 14px;
  padding-inline: 22px;
}

body.theme-hark-universal-pro .lte-domain-services-whois-result {
  min-height: 24px;
  margin-top: 14px;
  color: var(--hu-muted);
  line-height: 1.55;
}

body.theme-hark-universal-pro .lte-domain-services-whois-result--ok,
body.theme-hark-universal-pro .lte-domain-services-whois-result--warn,
body.theme-hark-universal-pro .lte-domain-services-whois-result--bad {
  border-radius: 14px;
  padding: 12px 14px;
}

body.theme-hark-universal-pro .lte-domain-services-whois-result--ok {
  background: #ecfdf5;
  color: #047857;
}

body.theme-hark-universal-pro .lte-domain-services-whois-result--warn {
  background: #fffbeb;
  color: #92400e;
}

body.theme-hark-universal-pro .lte-domain-services-whois-result--bad {
  background: #fef2f2;
  color: #b91c1c;
}

body.theme-hark-universal-pro .lte-domain-services-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  border: 1px solid var(--hu-border);
  border-radius: var(--hu-radius);
  background: #ffffff;
  padding: 14px;
}

body.theme-hark-universal-pro .lte-domain-services-filter-label {
  margin: 0;
  color: var(--hu-text);
  font-weight: 700;
  white-space: nowrap;
}

body.theme-hark-universal-pro .lte-domain-services-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hu-border);
  border-radius: var(--hu-radius-lg);
  background: #ffffff;
  box-shadow: var(--hu-shadow-sm);
}

body.theme-hark-universal-pro .lte-domain-services-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--hu-text);
}

body.theme-hark-universal-pro .lte-domain-services-table :is(th, td) {
  padding: 16px 18px;
  border-bottom: 1px solid var(--hu-border);
  text-align: left;
  vertical-align: middle;
}

body.theme-hark-universal-pro .lte-domain-services-table thead th {
  background: color-mix(in srgb, var(--hu-primary) 7%, #ffffff);
  color: var(--hu-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.theme-hark-universal-pro .lte-domain-services-table tbody tr:last-child :is(th, td) {
  border-bottom: 0;
}

body.theme-hark-universal-pro .lte-domain-services-table tbody tr:hover {
  background: color-mix(in srgb, var(--hu-primary) 4%, #ffffff);
}

body.theme-hark-universal-pro .lte-domain-services-popular {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hu-primary) 11%, #ffffff);
  color: var(--hu-primary);
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

body.theme-hark-universal-pro .lte-domain-services-empty,
body.theme-hark-universal-pro .lte-domain-services-na {
  color: var(--hu-muted);
}

@media (max-width: 640px) {
  body.theme-hark-universal-pro .lte-domain-services-whois-row,
  body.theme-hark-universal-pro .lte-domain-services-filter {
    display: grid;
  }

  body.theme-hark-universal-pro .lte-domain-services-whois-row .lte-theme-btn,
  body.theme-hark-universal-pro .lte-domain-services-whois-row .btn {
    width: 100%;
  }
}

body.theme-hark-universal-pro :is(.empty-state, .plugin-empty-state, .lte-empty-state, [data-empty-state]) {
  border: 1px dashed var(--hu-border-strong);
  border-radius: var(--hu-radius-lg);
  background: color-mix(in srgb, var(--hu-primary) 5%, #ffffff);
  color: var(--hu-muted);
  padding: 28px;
  text-align: center;
}

body.theme-hark-universal-pro :is(.ratio, iframe, video) {
  border-radius: var(--hu-radius);
}

body.theme-hark-universal-pro :is(.site-mini-footer, .lte-footer-public-wrap, footer[role="contentinfo"]) {
  background: var(--theme-footer-bg, #ffffff);
  color: var(--theme-footer-text, var(--hu-text));
  border-top: 1px solid var(--hu-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

body.theme-hark-universal-pro :is(.lte-footer-public-wrap, footer[role="contentinfo"]) a {
  color: color-mix(in srgb, var(--theme-footer-text, var(--hu-text)) 72%, var(--hu-primary));
  text-decoration: none;
}

body.theme-hark-universal-pro :is(.lte-footer-public-wrap, footer[role="contentinfo"]) a:hover {
  color: var(--hu-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.theme-hark-universal-pro :is(.lte-footer-public-wrap, footer[role="contentinfo"]) ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.theme-hark-universal-pro :is(.lte-footer-public-wrap, footer[role="contentinfo"]) :is(.container, .lte-preview-shell) {
  padding-block: clamp(40px, 6vw, 72px);
}

body.theme-hark-universal-pro .site-mini-footer {
  margin-top: auto;
}

/* Production shell baseline for future themes. */
body.theme-hark-universal-pro .lte-header-public-wrap,
body.theme-hark-universal-pro header[role="banner"] {
  background: #ffffff !important;
  color: var(--hu-text) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055) !important;
  backdrop-filter: saturate(150%) blur(14px);
}

body.theme-hark-universal-pro .lte-header-fullwidth-bg,
body.theme-hark-universal-pro .lte-header-preview,
body.theme-hark-universal-pro .theme-header-inner {
  background: #ffffff !important;
  background-image: none !important;
}

body.theme-hark-universal-pro :is(.lte-header-preview, .theme-header-inner, header[role="banner"] > .container) {
  min-height: 86px;
}

body.theme-hark-universal-pro :is(.lte-header-brand, .theme-header-brand, .navbar-brand) {
  color: var(--hu-text) !important;
}

body.theme-hark-universal-pro :is(.lte-header-brand, .theme-header-brand, .navbar-brand) img {
  max-height: 56px;
}

body.theme-hark-universal-pro .hc-menu-root,
body.theme-hark-universal-pro .theme-header-nav-list {
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item > a,
body.theme-hark-universal-pro .theme-header-nav a,
body.theme-hark-universal-pro .theme-header-nav-list a {
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--hu-text) !important;
  font-weight: 780;
}

body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item > a:hover,
body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item.is-open > a,
body.theme-hark-universal-pro .theme-header-nav a:hover {
  color: var(--hu-primary) !important;
  background: color-mix(in srgb, var(--hu-primary) 8%, transparent);
}

body.theme-hark-universal-pro .hc-menu-submenu {
  top: calc(100% + 8px);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

body.theme-hark-universal-pro .theme-header-cta,
body.theme-hark-universal-pro .lte-header-cta--desktop {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--hu-primary) !important;
  border-color: var(--hu-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--hu-primary) 26%, transparent);
}

body.theme-hark-universal-pro :is(.site-mini-footer, .lte-footer-public-wrap, footer[role="contentinfo"]) {
  background: var(--theme-footer-bg, #ffffff) !important;
  background-image:
    radial-gradient(circle at top right, color-mix(in srgb, var(--hu-primary) 7%, transparent), transparent 32rem),
    linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--hu-bg) 72%, #ffffff)) !important;
  color: var(--theme-footer-text, var(--hu-text));
  border-top: 1px solid var(--hu-border);
}

body.theme-hark-universal-pro :is(.lte-footer-public-wrap, footer[role="contentinfo"]) :is(.container, .lte-preview-shell) {
  padding-block: clamp(46px, 6vw, 78px);
}

body.theme-hark-universal-pro .lte-footer-cols {
  gap: clamp(22px, 4vw, 52px) !important;
}

body.theme-hark-universal-pro .lte-footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

body.theme-hark-universal-pro .lte-footer-col strong,
body.theme-hark-universal-pro .theme-footer-copy {
  color: var(--theme-footer-heading, var(--hu-text));
}

body.theme-hark-universal-pro :is(.theme-footer-links, .lte-footer-links, .lte-footer-public-wrap ul, footer[role="contentinfo"] ul) {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.theme-hark-universal-pro .theme-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

body.theme-hark-universal-pro :is(.lte-footer-public-wrap, footer[role="contentinfo"]) a {
  color: color-mix(in srgb, var(--hu-text) 76%, var(--hu-primary));
}

body.theme-hark-universal-pro.theme-footer-dark :is(.site-mini-footer, .lte-footer-public-wrap, footer[role="contentinfo"]) {
  background: #0f172a !important;
  background-image:
    radial-gradient(circle at top left, color-mix(in srgb, var(--hu-primary) 22%, transparent), transparent 34rem),
    linear-gradient(180deg, #111827, #0b1120) !important;
  color: #e5edf8;
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.theme-hark-universal-pro.theme-footer-dark .lte-footer-col strong,
body.theme-hark-universal-pro.theme-footer-dark .theme-footer-copy {
  color: #ffffff;
}

body.theme-hark-universal-pro.theme-footer-dark :is(.lte-footer-public-wrap, footer[role="contentinfo"]) a {
  color: #cbd5e1;
}

body.theme-hark-universal-pro :is(.table, .table-responsive) {
  border-color: var(--hu-border);
}

body.theme-hark-universal-pro .table-responsive {
  border-radius: var(--hu-radius);
  overflow: auto;
}

@media (max-width: 1120px) {
  body.theme-hark-universal-pro {
    --hu-container: min(var(--theme-container-width, 1180px), calc(100vw - 28px));
  }

  body.theme-hark-universal-pro :is(.lte-header-preview, .theme-header-inner, header[role="banner"] > .container) {
    min-height: 72px;
  }

  body.theme-hark-universal-pro .hc-menu-root,
  body.theme-hark-universal-pro .theme-header-nav-list {
    display: block;
    padding: 0;
    background: transparent;
  }

  body.theme-hark-universal-pro .hc-menu-mobile-body {
    display: none !important;
  }

  body.theme-hark-universal-pro.lte-mobile-menu-open .hc-menu-mobile-body,
  body.theme-hark-universal-pro .lte-preview-page.mobile-menu-open .hc-menu-mobile-body {
    display: block !important;
  }

  body.theme-hark-universal-pro .hc-menu-root > .hc-menu-item > a,
  body.theme-hark-universal-pro .theme-header-nav-list a {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }

  body.theme-hark-universal-pro .hc-menu-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 6px 0 8px;
    box-shadow: none;
  }

  body.theme-hark-universal-pro .hc-menu-mega {
    position: static;
    display: none;
    width: 100%;
    max-width: 100%;
    margin: 6px 0 8px;
    padding: 10px;
    border-radius: 14px;
    box-shadow: none;
    transform: none;
  }

  body.theme-hark-universal-pro .hc-menu-item.is-open > .hc-menu-mega,
  body.theme-hark-universal-pro .hc-menu-item:focus-within > .hc-menu-mega {
    display: block;
  }

  body.theme-hark-universal-pro .hc-menu-mega-grid,
  body.theme-hark-universal-pro .hc-menu-mega-grid.has-promo,
  body.theme-hark-universal-pro .hc-menu-mega-cols {
    grid-template-columns: 1fr;
  }

  body.theme-hark-universal-pro :is(.theme-block-hero, .lte-hero, [data-hark-block-type="hero"]) {
    min-height: 520px;
  }

  body.theme-hark-universal-pro .theme-block-text-body p:has(> img) {
    grid-template-columns: 1fr;
  }

  body.theme-hark-universal-pro .theme-block-text-body p:has(> img) > img {
    justify-self: start;
    order: 0;
  }
}

@media (max-width: 991.98px) {
  body.theme-hark-universal-pro {
    --hu-container: min(var(--theme-container-width, 1180px), calc(100vw - 28px));
  }
}

@media (max-width: 575.98px) {
  body.theme-hark-universal-pro {
    font-size: 15px;
  }

  body.theme-hark-universal-pro h1 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  body.theme-hark-universal-pro h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

body.theme-hark-universal-pro :is(.btn, .theme-button, .theme-header-cta) {
    width: auto;
    max-width: 100%;
  }
}

/* Public footer/content hardening for the real SSR footer contract. */
body.theme-hark-universal-pro .theme-block-footer.site-footer,
body.theme-hark-universal-pro footer.theme-block-footer,
body.theme-hark-universal-pro footer.site-footer {
  background: var(--theme-footer-bg, #ffffff) !important;
  background-image:
    radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--hu-primary) 8%, transparent), transparent 34rem),
    linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--hu-bg) 74%, #ffffff)) !important;
  color: var(--theme-footer-text, var(--hu-text)) !important;
  border-top: 1px solid var(--hu-border) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

body.theme-hark-universal-pro .theme-block-footer.site-footer .theme-footer-inner,
body.theme-hark-universal-pro footer.theme-block-footer .theme-footer-inner {
  width: min(var(--hu-container), calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(46px, 6vw, 76px) 0 clamp(28px, 4vw, 46px) !important;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer .lte-footer-cols,
body.theme-hark-universal-pro footer.theme-block-footer .lte-footer-cols {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: start;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer .lte-footer-col {
  display: grid;
  gap: 12px;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer .lte-footer-col strong,
body.theme-hark-universal-pro footer.theme-block-footer .lte-footer-col strong {
  color: var(--theme-footer-heading, var(--hu-text)) !important;
  font-size: 0.98rem;
  letter-spacing: 0;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer ul,
body.theme-hark-universal-pro footer.theme-block-footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  gap: 9px;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer li,
body.theme-hark-universal-pro footer.theme-block-footer li {
  margin: 0 !important;
  padding: 0 !important;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer a,
body.theme-hark-universal-pro footer.theme-block-footer a {
  color: color-mix(in srgb, var(--hu-text) 76%, var(--hu-primary)) !important;
  text-decoration: none;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer a:hover,
body.theme-hark-universal-pro footer.theme-block-footer a:hover {
  color: var(--hu-primary) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.theme-hark-universal-pro .theme-block-footer.site-footer .theme-footer-copy,
body.theme-hark-universal-pro footer.theme-block-footer .theme-footer-copy {
  display: block;
  margin-top: clamp(30px, 5vw, 56px);
  padding-top: 20px;
  border-top: 1px solid var(--hu-border);
  color: var(--hu-muted) !important;
  text-align: center;
}

body.theme-hark-universal-pro.theme-footer-dark .theme-block-footer.site-footer,
body.theme-hark-universal-pro.theme-footer-dark footer.theme-block-footer,
body.theme-hark-universal-pro.theme-footer-dark footer.site-footer {
  background: #0f172a !important;
  background-image:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--hu-primary) 22%, transparent), transparent 34rem),
    linear-gradient(180deg, #111827, #070b15) !important;
  color: #dbe7f5 !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

body.theme-hark-universal-pro.theme-footer-dark .theme-block-footer.site-footer .lte-footer-col strong,
body.theme-hark-universal-pro.theme-footer-dark footer.theme-block-footer .lte-footer-col strong {
  color: #ffffff !important;
}

body.theme-hark-universal-pro.theme-footer-dark .theme-block-footer.site-footer a,
body.theme-hark-universal-pro.theme-footer-dark footer.theme-block-footer a {
  color: #bfccdc !important;
}

body.theme-hark-universal-pro.theme-footer-dark .theme-block-footer.site-footer a:hover,
body.theme-hark-universal-pro.theme-footer-dark footer.theme-block-footer a:hover {
  color: #ffffff !important;
}

body.theme-hark-universal-pro.theme-footer-dark .theme-block-footer.site-footer .theme-footer-copy,
body.theme-hark-universal-pro.theme-footer-dark footer.theme-block-footer .theme-footer-copy {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8 !important;
}

body.theme-hark-universal-pro img[src="#"],
body.theme-hark-universal-pro img:not([src]),
body.theme-hark-universal-pro img[src=""] {
  display: none !important;
}
