:root {
  --ukd-navy: #0b1320;
  --ukd-navy-2: #121c2e;
  --ukd-navy-3: #1a2740;
  --ukd-accent: #e24b2d;
  --ukd-accent-2: #c43e24;
  --ukd-white: #ffffff;
  --ukd-bg: #f4f5f7;
  --ukd-text: #161b22;
  --ukd-muted: #5b6573;
  --ukd-border: #e4e7ec;
  --ukd-on-dark: #e8ecf2;
  --ukd-font: Inter, system-ui, -apple-system, sans-serif;
  --ukd-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --ukd-shadow: 0 18px 50px rgba(11, 19, 32, 0.12);
  --ukd-radius: 6px;
  --ukd-header: 88px;
  --ukd-wrap: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--ukd-font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ukd-text);
  background: var(--ukd-white);
  overflow-x: hidden;
}

body.ukd-nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--ukd-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em;
  color: var(--ukd-navy);
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 750; font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1em; }
.lead { font-size: 1.08rem; color: var(--ukd-muted); max-width: 42rem; }

.ukd-skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.ukd-skip:focus {
  left: 16px;
  top: 16px;
  z-index: 10000;
  background: #fff;
  padding: 8px 12px;
}

.ukd-crumbs {
  background: var(--ukd-bg);
  border-bottom: 1px solid var(--ukd-border);
  padding: 10px 0;
}
.ukd-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ukd-muted);
}
.ukd-crumbs li {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.ukd-crumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #b4bbc6;
}
.ukd-crumbs a {
  color: var(--ukd-muted);
  text-decoration: none;
}
.ukd-crumbs a:hover {
  color: var(--ukd-accent);
}
.ukd-crumbs [aria-current="page"] {
  color: var(--ukd-navy);
  font-weight: 600;
}

.ukd-wrap {
  width: min(calc(100% - 40px), var(--ukd-wrap));
  margin-inline: auto;
}

.ukd-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--ukd-header);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: height .2s ease, box-shadow .2s ease;
}
.ukd-header.is-compact {
  height: 72px;
  box-shadow: 0 8px 24px rgba(11,19,32,.06);
  border-bottom-color: var(--ukd-border);
}
.ukd-header__bar {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
}

.ukd-logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  line-height: 0;
}
.ukd-logo img {
  display: block;
  height: 56px;
  width: auto;
}
.ukd-header.is-compact .ukd-logo img { height: 46px; }
.ukd-footer .ukd-logo img { height: 112px; }

.ukd-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 42px;
}
.ukd-nav > li {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.ukd-nav, .ukd-nav ul { margin: 0; padding: 0; }
.ukd-nav > li > a {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ukd-navy);
}
.ukd-nav > li > a:hover,
.ukd-nav > li.is-current > a { color: var(--ukd-accent); }
.ukd-nav .sub {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--ukd-border);
  box-shadow: var(--ukd-shadow);
  padding: 8px;
}
.ukd-nav > li:hover > .sub,
.ukd-nav > li:focus-within > .sub { display: block; }
.ukd-nav .sub a {
  display: block;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--ukd-navy);
}
.ukd-nav .sub a:hover { background: var(--ukd-bg); color: var(--ukd-accent); }

.ukd-header__end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 42px;
}
.ukd-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ukd-header__cta .ukd-btn {
  height: 42px;
  min-height: 42px;
}
.ukd-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}
.ukd-burger span,
.ukd-burger span::before,
.ukd-burger span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ukd-navy);
  position: relative;
}
.ukd-burger span::before,
.ukd-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.ukd-burger span::before { top: -7px; }
.ukd-burger span::after { top: 7px; }

.ukd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  cursor: pointer;
}
.ukd-btn:hover { transform: translateY(-1px); }
.ukd-btn--primary { background: var(--ukd-accent); color: #fff; }
.ukd-btn--primary:hover { background: var(--ukd-accent-2); }
.ukd-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.ukd-btn--ghost:hover { background: #fff; color: var(--ukd-navy); }
.ukd-btn--dark { background: var(--ukd-navy); color: #fff; }
.ukd-btn--dark:hover { background: var(--ukd-navy-2); }
.ukd-btn--line { background: transparent; color: var(--ukd-navy); border-color: var(--ukd-navy); }
.ukd-btn--line:hover { background: var(--ukd-navy); color: #fff; }
.ukd-btn--sm { min-height: 42px; padding: 0 16px; }

.ukd-hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--ukd-navy);
  overflow: hidden;
}
.ukd-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ukd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,19,32,.28) 0%, rgba(11,19,32,.72) 55%, rgba(11,19,32,.92) 100%),
    linear-gradient(90deg, rgba(11,19,32,.55), transparent 55%);
}
.ukd-hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
  max-width: 760px;
}
.ukd-hero__content h1 { color: #fff; }
.ukd-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ukd-accent);
  margin-bottom: 14px;
}
.ukd-hero__content p { color: var(--ukd-on-dark); font-size: 1.12rem; max-width: 38rem; }
.ukd-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.ukd-trust {
  background: var(--ukd-navy);
  color: #fff;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ukd-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ukd-trust__item strong { display: block; font-family: var(--ukd-display); margin-bottom: 6px; }
.ukd-trust__item span { color: #b7c0cd; font-size: 0.92rem; }

.ukd-section { padding: 88px 0; }
.ukd-section--alt { background: var(--ukd-bg); }
.ukd-section--dark { background: var(--ukd-navy); color: #fff; }
.ukd-section--dark h2, .ukd-section--dark h3 { color: #fff; }
.ukd-section__head { max-width: 640px; margin-bottom: 40px; }

.ukd-grid-4, .ukd-grid-3, .ukd-grid-2 {
  display: grid;
  gap: 22px;
}
.ukd-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ukd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ukd-grid-2 { grid-template-columns: repeat(2, 1fr); }

.ukd-card {
  background: #fff;
  border: 1px solid var(--ukd-border);
  border-radius: var(--ukd-radius);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.ukd-card:hover { transform: translateY(-4px); box-shadow: var(--ukd-shadow); }
.ukd-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--ukd-navy-2); }
.ukd-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ukd-card__body { padding: 22px; }
.ukd-card__body p { color: var(--ukd-muted); margin-bottom: 16px; }

.ukd-ig { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ukd-ig__link { display: block; color: inherit; height: 100%; }
.ukd-ig__link:hover { color: inherit; }
.ukd-ig .ukd-card__media { aspect-ratio: 1; position: relative; }
.ukd-ig .ukd-card__body p { margin-bottom: 12px; }
.ukd-ig__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--ukd-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 8px;
}
.ukd-ig__more { margin-top: 28px; }

.ukd-ig-section #sb_instagram,
.ukd-ig-section .sbi {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.ukd-ig-section #sbi_images {
  padding: 0 !important;
  gap: 12px;
}
.ukd-ig-section .sbi_item {
  border-radius: 6px;
  overflow: hidden;
}
.ukd-link {
  color: var(--ukd-accent);
  font-weight: 700;
  font-size: 0.92rem;
}
.ukd-link:hover { text-decoration: underline; }

.ukd-value {
  padding: 28px;
  background: #fff;
  border-top: 3px solid var(--ukd-accent);
}
.ukd-value span {
  font-family: var(--ukd-display);
  font-size: 0.78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ukd-accent);
  font-weight: 700;
}

.ukd-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.ukd-split__media { position: relative; }
.ukd-split__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.ukd-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ukd-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ukd-muted);
}
.ukd-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--ukd-accent);
  position: absolute;
  left: 0;
  top: 8px;
}

.ukd-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ukd-step {
  padding: 28px 22px;
  background: var(--ukd-navy-2);
  border: 1px solid rgba(255,255,255,.06);
}
.ukd-step em {
  font-style: normal;
  font-family: var(--ukd-display);
  color: var(--ukd-accent);
  font-weight: 800;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 12px;
}
.ukd-step p { color: #b7c0cd; margin: 0; }

.ukd-field {
  position: relative;
  min-height: 220px;
  color: #fff;
  overflow: hidden;
}
.ukd-field img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ukd-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,19,32,.15), rgba(11,19,32,.82));
}
.ukd-field__body { position: relative; z-index: 1; padding: 28px 22px; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; }
.ukd-field h3 { color: #fff; margin: 0 0 8px; }

.ukd-why { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ukd-why article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--ukd-border);
}
.ukd-badge {
  display: inline-block;
  background: var(--ukd-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 8px;
  margin-bottom: 10px;
}

.ukd-cta-band {
  background: linear-gradient(120deg, var(--ukd-navy) 0%, #1b2b48 60%, #3a1f1a 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.ukd-cta-band h2 { color: #fff; }
.ukd-cta-band p { color: var(--ukd-on-dark); margin-inline: auto; }
.ukd-cta-band .ukd-hero__actions { justify-content: center; }

.ukd-page-hero {
  background: var(--ukd-navy);
  color: #fff;
  padding: 92px 0 64px;
  position: relative;
  overflow: hidden;
}
.ukd-page-hero h1 { color: #fff; max-width: 28ch; }
.ukd-page-hero p { color: var(--ukd-on-dark); max-width: 40rem; }
.ukd-page-hero .ukd-hero__actions { margin-top: 24px; }
.ukd-page-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,19,32,.88) 0%, rgba(11,19,32,.55) 48%, rgba(11,19,32,.25) 100%);
}
.ukd-page-hero--media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ukd-page-hero .ukd-wrap { position: relative; z-index: 1; }

.ukd-prose { max-width: 760px; }
.ukd-prose h2 { margin-top: 1.6em; }
.ukd-prose h3 { margin-top: 1.3em; }
.ukd-prose p, .ukd-prose li { color: var(--ukd-muted); }

.ukd-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ukd-border);
  padding: 28px;
}
.ukd-form label { display: grid; gap: 6px; font-size: 0.86rem; font-weight: 600; color: var(--ukd-navy); }
.ukd-form .full { grid-column: 1 / -1; }
.ukd-form input,
.ukd-form select,
.ukd-form textarea {
  width: 100%;
  border: 1px solid var(--ukd-border);
  padding: 12px 12px;
  background: #fff;
  color: var(--ukd-text);
}
.ukd-form textarea { min-height: 140px; resize: vertical; }
.ukd-form input:focus,
.ukd-form select:focus,
.ukd-form textarea:focus {
  outline: 2px solid var(--ukd-navy);
  outline-offset: 1px;
}
.ukd-alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-left: 3px solid var(--ukd-accent);
  background: #fff4f1;
}
.ukd-alert--ok { border-color: #1f7a4d; background: #edf8f2; }

.ukd-placeholder {
  display: inline-block;
  background: #efe7e4;
  color: #8a4b3c;
  padding: 1px 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86em;
}

.ukd-footer {
  background: var(--ukd-navy);
  color: #c5ccd6;
  padding: 72px 0 28px;
}
.ukd-footer h3 { color: #fff; font-size: 0.82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.ukd-footer a:hover { color: #fff; }
.ukd-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ukd-footer__brand p { color: #9aa5b4; }
.ukd-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ukd-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 0.86rem;
}

.ukd-drawer {
  position: fixed;
  inset: 0;
  background: rgba(11,19,32,.55);
  z-index: 80;
}
.ukd-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: #fff;
  padding: 24px;
  overflow: auto;
}
.ukd-drawer nav a { display: block; padding: 12px 0; font-weight: 650; border-bottom: 1px solid var(--ukd-border); }
.ukd-drawer .sub { display: none; padding-left: 12px; }
.ukd-drawer .is-open .sub { display: block; }
.ukd-subtoggle {
  float: right;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
}

@media (max-width: 1100px) {
  .ukd-header__cta .ukd-btn--line { display: none; }
}

@media (max-width: 1024px) {
  .ukd-grid-4, .ukd-steps, .ukd-ig { grid-template-columns: repeat(2, 1fr); }
  .ukd-split, .ukd-footer__grid { grid-template-columns: 1fr 1fr; }
  .ukd-trust__grid { grid-template-columns: 1fr 1fr; }
  .ukd-reviews__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .ukd-nav, .ukd-header__cta { display: none; }
  .ukd-burger { display: inline-flex; align-items: center; justify-content: center; }
  .ukd-grid-3, .ukd-grid-2, .ukd-why, .ukd-form, .ukd-split, .ukd-footer__grid, .ukd-reviews__grid {
    grid-template-columns: 1fr;
  }
  .ukd-ig { grid-template-columns: repeat(2, 1fr); }
  .ukd-section { padding: 64px 0; }
  .ukd-hero { min-height: 78vh; }
  .ukd-page-hero h1 { max-width: none; }
  .ukd-crumbs { font-size: 0.85rem; }
}

@media (max-width: 640px) {
  .ukd-wrap { width: min(calc(100% - 28px), var(--ukd-wrap)); }
  .ukd-grid-4, .ukd-steps, .ukd-trust__grid, .ukd-ig { grid-template-columns: 1fr; }
  .ukd-hero__actions, .ukd-cta-band .ukd-hero__actions { flex-direction: column; align-items: stretch; }
  .ukd-btn { width: 100%; }
  .ukd-header__bar .ukd-btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.wp-block-html,
.wp-block-shortcode {
  max-width: none;
}

.ukd-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.ukd-review {
  margin: 0;
  background: #fff;
  border: 1px solid var(--ukd-border);
  padding: 24px 24px 20px;
}
.ukd-review p {
  color: var(--ukd-navy);
  font-size: 1.05rem;
  line-height: 1.55;
}
.ukd-review footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ukd-muted);
  font-size: 0.9rem;
}
.ukd-faq {
  max-width: 800px;
}
.ukd-faq__item {
  border-bottom: 1px solid var(--ukd-border);
}
.ukd-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 0;
  list-style: none;
}
.ukd-faq__item summary::-webkit-details-marker {
  display: none;
}
.ukd-faq__item[open] summary {
  color: var(--ukd-accent);
}
.ukd-faq__item p {
  padding-bottom: 16px;
  color: var(--ukd-muted);
}
.ukd-faq__cta {
  margin-top: 32px;
}
