/* UK Wholesale — UKW Modern v6: brand display face (Sora, self-hosted) */
@font-face {
  font-family: 'Sora';
  src: url('/css/fonts/sora-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root { --display: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }

/* UK Wholesale — "UKW Modern" design system v1 (2026-08)
   Tokens: ink #101014 · purple #5F259E · white · grey-50 #F7F7F9
   Mobile-first. Replaces style.css. Legacy content classes render as neutral blocks. */

:root {
  --ink: #101014;
  --purple: #5F259E;
  --purple-dark: #4A1C7C;
  --purple-tint: #F3EEFA;
  --purple-lt: #C9A6F0;
  --grey-50: #F7F7F9;
  --grey-border: #ECECF1;
  --grey-mid: #5A5A66;
  --radius: 12px;
  --shadow-card: 0 12px 32px rgba(16,16,20,.08);
  --shadow-pop: 0 18px 44px rgba(16,16,20,.14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: #fff; font-size: 16.5px; line-height: 1.65; }
img { max-width: 100%; height: auto; border: 0; }
table { border-collapse: collapse; max-width: 100%; }
ul { list-style: none; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }

/* ---------- animations ---------- */
@keyframes ukwFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes ukwProp {
  0% { opacity: 0; transform: translateY(20px); }
  4% { opacity: 1; transform: none; }
  23% { opacity: 1; transform: none; }
  27% { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 0; }
}
@keyframes ukwPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(95,37,158,.35); } 50% { box-shadow: 0 0 0 10px rgba(95,37,158,0); } }
.ukw-fu1 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .05s both; }
.ukw-fu2 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .2s both; }
.ukw-fu3 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .35s both; }
.ukw-fu4 { animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) .5s both; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.ukw-btn, .ukw-btn-ghost, .ukw-btn-light {
  display: inline-block; font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: 14px 26px; border-radius: 10px; cursor: pointer; text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
}
.ukw-btn { background: var(--purple); color: #fff !important; box-shadow: 0 4px 14px rgba(95,37,158,.28); }
.ukw-btn:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 10px 26px rgba(95,37,158,.4); color: #fff; }
.ukw-btn-ghost { background: rgba(255,255,255,.06); color: #fff !important; border: 1.5px solid rgba(255,255,255,.45); }
.ukw-btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); color: #fff; }
.ukw-btn-light { background: #fff; color: var(--purple) !important; }
.ukw-btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.2); }

/* ---------- header ---------- */
.ukw-head {
  position: sticky; top: 0; z-index: 900; background: #fff;
  border-bottom: 1px solid var(--grey-border);
  box-shadow: 0 2px 14px rgba(16,16,20,.06);
}
.ukw-head-in {
  max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ukw-logo img { height: 34px; width: auto; display: block; }
.ukw-nav { display: none; }
.ukw-head-right { display: flex; align-items: center; gap: 12px; }
.ukw-head-tel { display: none; font-weight: 700; color: var(--ink); white-space: nowrap; }
.ukw-head-tel:hover { color: var(--purple); }
.ukw-head-cta { padding: 10px 18px; font-size: .92rem; }
.ukw-burger { display: flex; flex-direction: column; gap: 5px; padding: 10px; cursor: pointer; }
.ukw-burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
#ukw-navtoggle { display: none; }
#ukw-navtoggle:checked ~ .ukw-head-in .ukw-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#ukw-navtoggle:checked ~ .ukw-head-in .ukw-burger span:nth-child(2) { opacity: 0; }
#ukw-navtoggle:checked ~ .ukw-head-in .ukw-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.ukw-sheet { display: none; background: #fff; border-bottom: 1px solid var(--grey-border); }
#ukw-navtoggle:checked ~ .ukw-sheet { display: block; }
.ukw-sheet ul { padding: 8px 20px 16px; }
.ukw-sheet a { display: block; padding: 13px 4px; font-size: 1.06rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--grey-50); }
.ukw-sheet a.ukw-on, .ukw-sheet a:hover { color: var(--purple); }
.ukw-sheet .ukw-sheet-tel { color: var(--purple); font-weight: 800; border-bottom: 0; }
@media (min-width: 992px) {
  .ukw-head-in { height: 76px; padding: 0 32px; }
  .ukw-logo img { height: 40px; }
  .ukw-burger, .ukw-sheet, #ukw-navtoggle:checked ~ .ukw-sheet { display: none; }
  .ukw-nav { display: flex; gap: 30px; align-items: center; }
  .ukw-nav a { font-size: .97rem; font-weight: 600; color: var(--ink); padding: 6px 0; position: relative; }
  .ukw-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--purple); transition: width .22s ease; }
  .ukw-nav a:hover::after, .ukw-nav a.ukw-on::after { width: 100%; }
  .ukw-nav a.ukw-on { color: var(--purple); }
  .ukw-head-tel { display: inline-block; }
}

/* ---------- heroes ---------- */
.ukw-hero { position: relative; overflow: hidden; background: var(--ink); }
.ukw-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.ukw-hero-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,12,18,.9) 0%, rgba(13,12,18,.6) 46%, rgba(43,20,80,.2) 100%); }
.ukw-hero-in { position: relative; max-width: 1200px; margin: 0 auto; padding: 56px 20px; display: flex; flex-direction: column; gap: 18px; }
.ukw-hero-badge {
  display: inline-flex; align-self: flex-start; background: rgba(95,37,158,.32);
  border: 1px solid rgba(255,255,255,.3); color: #E9DDF8; font-size: .82rem;
  font-weight: 700; padding: 7px 14px; border-radius: 999px;
}
.ukw-hero-rot { position: relative; height: 150px; }
.ukw-hero-rot > span {
  position: absolute; top: 0; left: 0; right: 0; opacity: 0;
  animation: ukwProp 16s infinite;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem); line-height: 1.1; font-weight: 800;
  letter-spacing: -.045em; color: #fff; display: block;
}
.ukw-hero-rot > span:nth-child(2) { animation-delay: 4s; }
.ukw-hero-rot > span:nth-child(3) { animation-delay: 8s; }
.ukw-hero-rot > span:nth-child(4) { animation-delay: 12s; }
.ukw-hero-rot em { font-style: normal; color: var(--purple-lt); }
.ukw-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.84); max-width: 640px; }
.ukw-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.ukw-hero--page .ukw-hero-in { padding: 44px 20px; }
.ukw-hero-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; color: var(--purple-lt); }
.ukw-hero-note { font-size: .84rem; color: rgba(255,255,255,.65); }
@media (min-width: 768px) { .ukw-hero-rot { height: 190px; } .ukw-hero-in { padding: 80px 32px; } }
@media (min-width: 992px) { .ukw-hero-rot { height: 200px; max-width: 820px; } }

/* ---------- trust band ---------- */
.ukw-trust { background: var(--grey-50); border-bottom: 1px solid var(--grey-border); }
.ukw-trust-in {
  max-width: 1200px; margin: 0 auto; padding: 18px 20px;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 18px;
}
.ukw-trust-it { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 700; }
.ukw-trust-it svg { flex-shrink: 0; }
.ukw-trust-it small { display: block; font-weight: 400; color: var(--grey-mid); font-size: .8rem; }
@media (min-width: 992px) { .ukw-trust-in { grid-template-columns: repeat(4, minmax(0,1fr)); padding: 22px 32px; } }

/* ---------- layout: content + sidebar ---------- */
.main { background: #fff; }
.main-width { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content { display: flex; flex-direction: column; gap: 28px; padding: 34px 0 30px; }
.column-center { order: 1; min-width: 0; }
.column-left { order: 2; }
@media (min-width: 992px) {
  .content { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 44px; padding: 44px 0 40px; }
  .column-left { order: 0; }
  .column-center { order: 0; }
}

/* sidebar widgets -> "Explore" cards */
.column-left .widget { margin-bottom: 18px; }
.column-left .widget-bg { background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 20px; transition: box-shadow .25s ease, border-color .25s ease; }
.column-left .widget-bg:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.column-left .title h2 { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.column-left ul li { border-bottom: 1px solid #E6E6EC; }
.column-left ul li:last-child { border-bottom: 0; }
.column-left ul li a { display: block; padding: 9px 2px; font-size: .92rem; font-weight: 600; color: var(--ink); transition: color .18s, padding-left .18s; }
.column-left ul li a:hover { color: var(--purple); padding-left: 8px; }

/* ---------- content column ---------- */
.column-center .title h1, .column-center .title h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.15; font-weight: 800;
  letter-spacing: -.03em; color: var(--ink); margin: 0 0 8px;
}
.column-center .title h1 a, .column-center .title h2 a { color: inherit; }
.column-center .date { font-size: 1.02rem; color: var(--grey-mid); margin-bottom: 22px; }
.column-center h2, .column-center h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; margin: 26px 0 10px; }
.column-center p { margin: 0 0 16px; color: #2E2E36; }
.column-center li { color: #2E2E36; }
.column-center img { border-radius: var(--radius); }
.column-center table td { padding: 8px 12px; border: 1px solid var(--grey-border); font-size: .95rem; vertical-align: top; }
.column-center strong a, .column-center a strong { color: var(--purple); }

/* legacy structural classes -> neutral */
.bgr-left, .bgr-right, .bgr-top, .bgr-bot,
.corner-left-top, .corner-right-top, .corner-left-bot, .corner-right-bot,
.text-box, .box-img, .box-top, .indent-box, .post, .hentry, .indent { display: block; }
.text-box { font-size: 1rem; }
.line-height { line-height: 1.7; }
.fleft { float: none; }
.tail-right { display: none; }

/* legacy inline color classes: keep identity, fix AA contrast */
.column-center .style3, .column-center .style6 { color: #517422; }

/* old "comments" link -> CTA button */
.column-center .comments { margin: 26px 0 8px; }
.column-center .comments a {
  display: inline-block; background: var(--purple); color: #fff; font-weight: 700;
  padding: 13px 24px; border-radius: 10px; box-shadow: 0 4px 14px rgba(95,37,158,.28);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.column-center .comments a:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 10px 26px rgba(95,37,158,.4); }

/* prev/next navigation row */
.navigation { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin: 8px 0 26px; padding-top: 18px; border-top: 1px solid var(--grey-border); }
.navigation a { font-weight: 700; font-size: .95rem; }
.navigation .alignleft a::before { content: "← "; }
.navigation .alignright a::after { content: " →"; }

/* ---------- footer ---------- */
.ukw-foot { background: var(--ink); color: #DBDBE2; margin-top: 30px; }
.ukw-foot-in { max-width: 1200px; margin: 0 auto; padding: 44px 20px 30px; }
.ukw-foot-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.ukw-foot img { height: 44px; width: auto; }
.ukw-foot-blurb { font-size: .9rem; line-height: 1.6; color: #B9B9C2; max-width: 340px; }
.ukw-foot-tel { font-size: 1.15rem; font-weight: 800; color: #fff; display: inline-block; margin-top: 6px; }
.ukw-foot h3 { font-size: .78rem; font-weight: 800; letter-spacing: .12em; color: #7C7C88; margin-bottom: 10px; }
.ukw-foot ul li { margin-bottom: 8px; }
.ukw-foot ul a { color: #DBDBE2; font-size: .9rem; }
.ukw-foot ul a:hover { color: var(--purple-lt); }
.ukw-foot-legal { border-top: 1px solid #2A2A32; margin-top: 34px; padding-top: 18px; font-size: .8rem; color: #8B8B96; line-height: 1.8; }
.ukw-foot-legal a { color: #A9A9B4; }
.ukw-foot-legal a:hover { color: var(--purple-lt); }
@media (min-width: 768px) { .ukw-foot-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

/* ---------- misc ---------- */
::selection { background: var(--purple); color: #fff; }
.ukw-skip { position: absolute; left: -9999px; }
.ukw-skip:focus { left: 12px; top: 12px; background: #fff; padding: 10px 16px; z-index: 1000; border-radius: 8px; box-shadow: var(--shadow-pop); }

/* ============ v2: sidebar retired, section system for rewritten bodies ============ */
.column-left { display: none; }
.content { display: block; padding: 0 0 30px; }
.column-center { max-width: 900px; margin: 0 auto; padding-top: 34px; }

/* full-bleed escape inside the content column */
.ukw-bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* generic section rhythm */
.ukw-sec { padding: 44px 0 10px; }
.ukw-sec-kicker { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.ukw-sec h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 8px; }
.ukw-sec-sub { color: var(--grey-mid); font-size: 1.05rem; margin-bottom: 26px; max-width: 640px; }

/* service cards */
.ukw-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .ukw-cards { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .ukw-cards { grid-template-columns: repeat(4, minmax(0,1fr)); } .ukw-cards--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ukw-card { display: flex; flex-direction: column; border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.ukw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); border-color: #D9C8F0; }
.ukw-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 0; }
.ukw-card-b { display: flex; flex-direction: column; gap: 8px; padding: 18px 18px 20px; flex: 1; }
.ukw-card-b strong { font-size: 1.08rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.ukw-card-b p { font-size: .92rem; color: var(--grey-mid); margin: 0; flex: 1; }
.ukw-card-b a { font-size: .92rem; font-weight: 700; }

/* full-bleed feature strip (photo + veil) */
.ukw-feature { position: relative; overflow: hidden; background: var(--ink); margin-top: 44px; margin-bottom: 10px; }
.ukw-feature-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ukw-feature-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(63,22,110,.95) 0%, rgba(63,22,110,.75) 52%, rgba(63,22,110,.3) 100%); }
.ukw-feature-in { position: relative; max-width: 1200px; margin: 0 auto; padding: 56px 20px; display: flex; flex-direction: column; gap: 16px; }
.ukw-feature-in > * { max-width: 660px; }
.ukw-feature-badge { display: inline-flex; align-self: flex-start; background: #fff; color: var(--purple); font-size: .8rem; font-weight: 800; padding: 7px 14px; border-radius: 999px; animation: ukwPulse 2.6s ease infinite; }
.ukw-feature h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; color: #fff; margin: 0; }
.ukw-feature p { color: rgba(255,255,255,.88); margin: 0; }
.ukw-feature-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

/* stats band */
.ukw-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; text-align: center; padding: 40px 0 14px; }
@media (min-width: 768px) { .ukw-stats { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ukw-stats b { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; color: var(--purple); }
.ukw-stats span { font-size: .88rem; color: var(--grey-mid); }

/* three-up benefits */
.ukw-3col { display: grid; grid-template-columns: 1fr; gap: 18px; padding-top: 8px; }
@media (min-width: 768px) { .ukw-3col { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.ukw-3col > div { background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 22px; transition: box-shadow .25s ease, border-color .25s ease; }
.ukw-3col > div:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.ukw-3col strong { display: block; font-size: 1.02rem; font-weight: 800; margin: 10px 0 6px; }
.ukw-3col p { font-size: .92rem; color: var(--grey-mid); margin: 0; }

/* checklist */
.ukw-checks { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 8px; }
.ukw-checks li { display: flex; gap: 11px; align-items: flex-start; color: #2E2E36; }
.ukw-checks svg { flex-shrink: 0; margin-top: 4px; }

/* explore strip (link graph home, replaces sidebar) */
.ukw-explore { background: #17171D; border-bottom: 1px solid #26262E; }
.ukw-explore-in { max-width: 1200px; margin: 0 auto; padding: 36px 20px 10px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 26px; }
@media (min-width: 900px) { .ukw-explore-in { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ukw-explore h3 { font-size: .76rem; font-weight: 800; letter-spacing: .12em; color: #6F6F7C; margin: 14px 0 8px; }
.ukw-explore ul li { margin-bottom: 7px; }
.ukw-explore ul a { color: #C9C9D2; font-size: .87rem; }
.ukw-explore ul a:hover { color: var(--purple-lt); }
.ukw-foot { margin-top: 0; }

/* ============ v3: merged footer, comparison bars, close panels ============ */
.ukw-explore { display: none; } /* merged into footer */
.ukw-foot-top { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid #26262E; margin-bottom: 26px; }
.ukw-foot-brand { max-width: 380px; display: flex; flex-direction: column; gap: 12px; }
.ukw-foot-blurb { color: #C2C2CC; }
.ukw-foot-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 26px; }
@media (min-width: 900px) { .ukw-foot-links { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.ukw-foot-links h3 { margin-top: 12px; }
@media (min-width: 900px) { .ukw-foot-links h3 { margin-top: 0; } }

/* speed comparison bars (animate on scroll where supported) */
.ukw-compare { display: flex; flex-direction: column; gap: 16px; margin: 22px 0 6px; }
.ukw-compare-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: center; }
@media (min-width: 640px) { .ukw-compare-row { grid-template-columns: 170px 1fr; } }
.ukw-compare-row .lbl { font-weight: 800; font-size: .95rem; line-height: 1.25; }
.ukw-compare-row .lbl small { display: block; font-weight: 400; color: var(--grey-mid); font-size: .78rem; }
.ukw-bar { background: var(--grey-50); border: 1px solid var(--grey-border); border-radius: 999px; height: 36px; overflow: hidden; }
.ukw-bar-fill { height: 100%; border-radius: 999px; width: var(--w, 50%); min-width: 86px;
  background: linear-gradient(90deg, #8D5BC8, var(--purple));
  display: flex; align-items: center; justify-content: flex-end; padding: 0 12px;
  color: #fff; font-weight: 800; font-size: .85rem; white-space: nowrap;
  animation: ukwGrow 1.2s cubic-bezier(.2,.7,.2,1) both; }
.ukw-bar-fill--max { background: linear-gradient(90deg, var(--purple), #31135E); }
@keyframes ukwGrow { from { width: 0; min-width: 0; } }
@supports (animation-timeline: view()) {
  .ukw-bar-fill { animation: ukwGrow 1s cubic-bezier(.2,.7,.2,1) both; animation-timeline: view(); animation-range: entry 5% entry 45%; }
}
.ukw-compare-note { font-size: .8rem; color: var(--grey-mid); }

/* killer close panel */
.ukw-close { position: relative; overflow: hidden; border-radius: 16px; margin: 46px 0 12px;
  background: linear-gradient(120deg, #31135E, var(--purple)); color: #fff; padding: 42px 34px; box-shadow: var(--shadow-pop); }
.ukw-close::after { content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.08); }
.ukw-close::before { content: ""; position: absolute; right: 60px; bottom: -90px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.05); }
.ukw-close h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 8px; }
.ukw-close p { color: rgba(255,255,255,.87); margin: 0 0 20px; max-width: 580px; }
.ukw-close-ctas { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }

/* theme pills */
.ukw-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 6px; }
.ukw-pills span { background: var(--purple-tint); color: var(--purple); font-weight: 700; font-size: .85rem; padding: 8px 15px; border-radius: 999px; }

/* ============ v4: footer legibility hard-fix, big page heroes, Trustpilot strip ============ */
.ukw-foot, .ukw-foot p, .ukw-foot .ukw-foot-blurb { color: #C6C6D0 !important; }
.ukw-foot-tel { color: #FFFFFF !important; }
.ukw-foot h3 { color: #8A8A96 !important; }
.ukw-foot ul a { color: #D6D6DE !important; }
.ukw-foot ul a:hover { color: #C9A6F0 !important; }
.ukw-foot-legal, .ukw-foot-legal a { color: #9A9AA6 !important; }
.ukw-foot-brand { gap: 14px; }
.ukw-foot-top { align-items: center; }

/* big per-page sales heroes */
.ukw-hero--page .ukw-hero-in { padding: 64px 20px; gap: 16px; }
@media (min-width: 768px) { .ukw-hero--page .ukw-hero-in { padding: 84px 32px; } }
.ukw-hero-title { font-size: clamp(1.8rem, 4.6vw, 3rem); line-height: 1.1; font-weight: 800; letter-spacing: -.04em; color: #fff; max-width: 780px; }
.ukw-hero--page .ukw-hero-sub { max-width: 620px; }

/* Trustpilot strip */
.ukw-tp { background: var(--grey-50); border-top: 1px solid var(--grey-border); }
.ukw-tp-in { max-width: 1200px; margin: 0 auto; padding: 26px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; text-align: center; }
.ukw-tp-stars { display: inline-flex; gap: 3px; }
.ukw-tp-stars span { width: 26px; height: 26px; background: #00B67A; display: inline-flex; align-items: center; justify-content: center; }
.ukw-tp-stars svg { display: block; }
.ukw-tp-txt { font-size: 1rem; color: var(--ink); }
.ukw-tp-txt strong { font-weight: 800; }
.ukw-tp-in a { font-weight: 700; }

/* ============ v5: real Trustpilot review cards ============ */
.ukw-reviews { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .ukw-reviews { grid-template-columns: repeat(3, minmax(0,1fr)); } .ukw-reviews--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.ukw-review { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .25s ease, border-color .25s ease; }
.ukw-review:hover { border-color: #D9C8F0; box-shadow: var(--shadow-card); }
.ukw-review-stars { display: inline-flex; gap: 2px; }
.ukw-review-stars i { width: 18px; height: 18px; background: #00B67A; display: inline-flex; align-items: center; justify-content: center; }
.ukw-review p { font-size: .95rem; line-height: 1.6; color: #2E2E36; margin: 0; flex: 1; }
.ukw-review footer { font-size: .82rem; color: var(--grey-mid); font-weight: 600; }
.ukw-reviews-more { margin-top: 14px; font-weight: 700; display: inline-block; }


/* ============ v6: typographic cohesion ============ */
h1, h2, h3,
.column-center .title h1, .column-center .title h2, .column-center h2, .column-center h3,
.ukw-hero-title, .ukw-hero-rot > span,
.ukw-sec h2, .ukw-feature h2, .ukw-close h2,
.ukw-stats b, .ukw-card-b strong, .ukw-3col strong,
.ukw-logo, .ukw-nav a, .ukw-btn, .ukw-btn-ghost, .ukw-btn-light {
  font-family: var(--display);
}
.column-center .title h1, .column-center .title h2, .ukw-sec h2, .ukw-feature h2, .ukw-close h2 { font-weight: 700; letter-spacing: -.025em; }
.ukw-hero-title, .ukw-hero-rot > span { font-weight: 700; letter-spacing: -.03em; }
.ukw-stats b { font-weight: 800; }
.ukw-nav a { font-weight: 600; font-size: .94rem; }
.ukw-btn, .ukw-btn-ghost, .ukw-btn-light { font-weight: 600; }
/* sub-text: darker, tighter, clearly subordinate */
.ukw-sec-sub, .column-center .date { color: #47474F; font-size: 1rem; line-height: 1.6; }
.ukw-hero-sub { font-size: 1.05rem; }
.ukw-sec-kicker { font-family: var(--display); letter-spacing: .14em; font-size: .74rem; }

/* ============ v7/v8: quote form popup (fast, composited animations only) ============ */
html { scrollbar-gutter: stable; }
.ukw-modal-x { display: none; }
body.ukw-modal-open { overflow: hidden; }
@keyframes ukwModalIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ukwCardIn { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }
body.ukw-modal-open #get-quote {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1200;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 4vh 16px; overflow-y: auto;
  background: rgba(16,16,20,.66);
  margin: 0; max-width: none;
  animation: ukwModalIn .16s ease both;
}
body.ukw-modal-open #get-quote .ukwcta-card {
  position: relative; width: 100%; max-width: 720px; margin: auto 0;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  animation: ukwCardIn .24s cubic-bezier(.2,.7,.2,1) both;
  will-change: transform, opacity;
}
body.ukw-modal-open .ukw-modal-x {
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 10px; right: 12px; width: 38px; height: 38px;
  border: 0; border-radius: 50%; background: #EFE7F8; color: #5F259E;
  font-size: 24px; line-height: 1; cursor: pointer; font-family: inherit;
  transition: background .2s ease, transform .2s ease;
}
body.ukw-modal-open .ukw-modal-x:hover { background: #5F259E; color: #fff; transform: rotate(90deg); }

/* ============ v9: ambient motion + CTA pulse ============ */
/* slow Ken Burns drift on hero & feature imagery — runs by itself */
@keyframes ukwDrift { from { transform: scale(1) translateX(0); } to { transform: scale(1.07) translateX(-1.5%); } }
.ukw-hero-img, .ukw-feature-img { animation: ukwDrift 26s ease-in-out infinite alternate; will-change: transform; }

/* decorative circles in close panels slowly breathe */
@keyframes ukwOrb { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-14px, 10px) scale(1.12); } }
.ukw-close::after { animation: ukwOrb 9s ease-in-out infinite; }
.ukw-close::before { animation: ukwOrb 12s ease-in-out infinite reverse; }

/* scroll-driven section reveals (self-running; older browsers simply show content) */
@supports (animation-timeline: view()) {
  .ukw-sec, .ukw-stats, .ukw-reviews .ukw-review, .ukw-cards .ukw-card, .ukw-3col > div, .ukw-close {
    animation: ukwFadeUp .7s cubic-bezier(.2,.7,.2,1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 34%;
  }
  .ukw-cards .ukw-card:nth-child(2), .ukw-3col > div:nth-child(2), .ukw-reviews .ukw-review:nth-child(2) { animation-range: entry 6% entry 40%; }
  .ukw-cards .ukw-card:nth-child(3), .ukw-3col > div:nth-child(3), .ukw-reviews .ukw-review:nth-child(3) { animation-range: entry 12% entry 46%; }
  .ukw-cards .ukw-card:nth-child(4) { animation-range: entry 18% entry 52%; }
}

/* gentle pulse on primary CTAs — draws the eye without shouting */
@keyframes ukwBtnBreathe {
  0%, 100% { box-shadow: 0 4px 14px rgba(95,37,158,.28); transform: scale(1); }
  50% { box-shadow: 0 6px 26px rgba(95,37,158,.5); transform: scale(1.015); }
}
.ukw-btn, .ukwcta .ukwcta-btn, .column-center .comments a, .ukw-btn-light {
  animation: ukwBtnBreathe 2.6s ease-in-out infinite;
}
.ukw-btn:hover, .ukwcta .ukwcta-btn:hover, .column-center .comments a:hover, .ukw-btn-light:hover {
  animation-play-state: paused;
}
.ukw-btn-light { --btn-glow: rgba(255,255,255,.25); }
@keyframes ukwBtnBreatheLight {
  0%, 100% { box-shadow: 0 4px 14px rgba(0,0,0,.18); transform: scale(1); }
  50% { box-shadow: 0 6px 26px rgba(255,255,255,.35); transform: scale(1.015); }
}
.ukw-btn-light { animation-name: ukwBtnBreatheLight; }
