/* base.css -- shared styles used across multiple pages.
   Generated by tools/split-css.js from the original style.css. */

:root {
  --bg: #020819;
  --panel: rgba(5, 21, 55, .72);
  --panel-strong: rgba(7, 25, 62, .9);
  --line: rgba(46, 151, 255, .58);
  --line-soft: rgba(135, 167, 255, .22);
  --cyan: #05c9ff;
  --blue: #0a86ff;
  --violet: #9b25ff;
  --text: #ffffff;
  --muted: #b8c8e8;
  --soft: #7f92bd;
  --container-max: 1160px;
  --container-padding: 24px;
  /* Many page-specific "boxed panel" sections (testimonials, info
     panels, bottom grids, etc. across the service pages) are
     deliberately narrower than the main container. This tracks
     --container-max at a fixed offset so those panels keep growing
     on large screens instead of staying frozen at their old
     pre-large-screen-system pixel value. */
  --container-narrow-max: calc(var(--container-max) - 80px);
}

/* Large-screen container system: use available width on big monitors
   without going edge-to-edge -- content stays capped at a comfortable
   reading/scanning max instead of the mobile-tuned 1160px cap. Only
   .container, .site-header and .site-footer read --container-max
   directly, but many page-specific sections read --container-max or
   --container-narrow-max too, so this affects every page's outer
   width uniformly. */
@media (min-width: 1440px) {
  :root { --container-max: 1360px; }
}

@media (min-width: 1600px) {
  :root { --container-max: 1520px; }
}

@media (min-width: 1920px) {
  :root { --container-max: 1680px; }
}

@media (min-width: 2560px) {
  :root { --container-max: 1900px; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 35%, rgba(0, 128, 255, .32), transparent 22rem),
    radial-gradient(circle at 100% 77%, rgba(129, 0, 255, .5), transparent 21rem),
    linear-gradient(180deg, #010719 0%, #030a21 58%, #020815 100%);
}

a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.site-header,
.site-footer {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container > * {
  width: 100%;
  max-width: 100%;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 7%, rgba(17, 97, 255, .28), transparent 27rem),
    linear-gradient(105deg, rgba(0, 12, 38, .2), rgba(0, 0, 0, 0) 45%);
}

.page-shell::after {
  right: -12rem;
  bottom: 7rem;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 199, 255, .1);
  box-shadow: 0 0 0 5rem rgba(15, 87, 255, .07), 0 0 0 9rem rgba(145, 0, 255, .08);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 100;
  width: min(100% - 96px, 1080px);
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header .brand-logo {
  margin-top: 4px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  color: var(--cyan);
  font-weight: 800;
}

.brand-logo {
  align-items: center;
}

.brand-logo img {
  display: block;
  width: clamp(165px, 17vw, 236px);
  height: clamp(56px, 9vw, 70px);
  object-fit: cover;
  object-position: left 37%;
}

.main-nav {
  margin-left: auto;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 13px;
  font-weight: 600;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .92);
  transition: color .22s ease, text-shadow .22s ease, transform .22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 10px rgba(5, 201, 255, .65);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

button.nav-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-link:hover,
.has-dropdown:focus-within > .nav-link,
.has-dropdown:hover > .nav-link {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 203, 255, .32);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.has-dropdown:hover > .nav-link::after,
.has-dropdown:focus-within > .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.active::after {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(5, 201, 255, .65);
  opacity: 1;
  transform: scaleX(1);
}

.chev {
  display: inline-flex;
  align-items: center;
  color: #d8e4ff;
  font-size: 11px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .2s ease, color .2s ease;
}
.chev-1 {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #d8e4ff;
  font-size: 11px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 3s ease, color .2s ease;
}

.has-dropdown:hover > .nav-link .chev,
.has-dropdown:focus-within > .nav-link .chev,
.has-dropdown.open > .nav-link .chev {
  color: var(--cyan);
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 236px;
  padding: 9px;
  border: 1px solid rgba(68, 178, 255, .42);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(4, 21, 55, .98), rgba(5, 9, 31, .94)),
    rgba(4, 13, 35, .96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .42), 0 0 26px rgba(0, 180, 255, .14), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  transform: translate(-50%, 12px) scale(.95);
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s cubic-bezier(0.16, 1, 0.3, 1), transform .25s cubic-bezier(0.16, 1, 0.3, 1), visibility .25s;
  z-index: 100;
}

.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 24px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(68, 178, 255, .42);
  border-top: 1px solid rgba(68, 178, 255, .42);
  background: rgba(4, 21, 55, .98);
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.dropdown-menu a,
.dropdown-menu .dropdown-trigger {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu .has-dropdown:hover > .dropdown-trigger,
.dropdown-menu .has-dropdown:focus-within > .dropdown-trigger,
.dropdown-menu .has-dropdown.open > .dropdown-trigger {
  background: linear-gradient(90deg, rgba(0, 199, 255, .14), rgba(130, 43, 255, .08));
  color: var(--cyan);
  transform: translateX(2px);
}

.dropdown-menu a.current {
  background: linear-gradient(90deg, rgba(0, 199, 255, .18), rgba(87, 69, 255, .1));
  color: var(--cyan);
}

.dropdown-menu strong {
  display: block;
  font-size: 13px;
  line-height: 1.15;
}

.dropdown-trigger strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dropdown-menu small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.dropdown-menu .has-dropdown {
  position: relative;
}

.dropdown-menu .has-dropdown > .dropdown-menu {
  top: 0;
  left: calc(100% + 12px);
  transform: translate(12px, 0) scale(.95);
  transform-origin: top left;
}

.dropdown-menu .has-dropdown > .dropdown-menu::after {
  top: 0;
  left: -14px;
  width: 14px;
  height: 100%;
}

.dropdown-menu .has-dropdown:hover > .dropdown-menu,
.dropdown-menu .has-dropdown:focus-within > .dropdown-menu,
.dropdown-menu .has-dropdown.open > .dropdown-menu {
  transform: translate(0, 0) scale(1);
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  --shine-opacity: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, filter .25s ease;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.24) 44%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform .55s ease, opacity .24s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0) scale(.985);
}
.btn svg { font-size: 20px; }

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #13c7ff 0%, #0576ff 100%);
  box-shadow: 0 12px 28px rgba(0, 128, 255, .28), inset 0 1px 0 rgba(255,255,255,.38);
}

.btn-primary:hover {
  filter: saturate(1.08);
  box-shadow: 0 16px 36px rgba(0, 157, 255, .42), 0 0 22px rgba(0, 202, 255, .18), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-ghost,
.btn-outline {
  color: #fff;
  background: rgba(2, 10, 30, .38);
  border-color: rgba(164, 190, 255, .45);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: rgba(0, 211, 255, .85);
  box-shadow: 0 0 24px rgba(0, 194, 255, .2), inset 0 1px 0 rgba(255,255,255,.08);
}

.btn-login { min-height: 38px; padding: 0 17px; font-weight: 500; }
.btn-large { min-height: 48px; padding-inline: 24px; font-size: 15px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 7px;
  background: rgba(8, 20, 50, .65);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-subtitle {
  width: min(100%, 470px);
  margin: 13px 0 20px;
  color: #f1f6ff;
  font-size: 17px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.wave-one { border-top-color: #08bfff; }
.wave-two {
  bottom: -1px;
  right: -111px;
  border-top-color: #8633ff;
  box-shadow: inset 0 12px 18px rgba(112, 22, 255, .28), 0 -4px 24px rgba(150, 39, 255, .6);
}

.section-kicker {
  text-align: center;
  margin-bottom: 5px;
  font-size: 21px;
}

.service-grid,
.pricing-grid,
.testimonial-grid,
.feature-strip {
  display: grid;
  gap: 15px;
}

.service-grid { grid-template-columns: repeat(3, 1fr); }

.glass-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(5, 31, 78, .82), rgba(5, 13, 42, .72)),
    rgba(4, 17, 49, .7);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 55px rgba(0, 0, 0, .22);
}

.service-card {
  min-height: 196px;
  padding: 28px 26px 18px;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 5% 0%, rgba(0, 198, 255, .24), transparent 40%);
  pointer-events: none;
  opacity: .9;
  transition: opacity .28s ease, transform .28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.09), transparent 34%, rgba(0, 204, 255, .1));
  transition: opacity .28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 210, 255, .88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 22px 62px rgba(0, 0, 0, .32), 0 0 34px rgba(0, 190, 255, .18);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.service-card:hover::after {
  opacity: 1;
}

.card-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.card-heading h3,
.price-card h3,
.feature-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.round-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), filter .28s ease, box-shadow .28s ease;
}
.round-icon.cyan {
  background: radial-gradient(circle at 35% 30%, #4decff, #0075ff 72%);
  box-shadow: 0 0 28px rgba(0, 194, 255, .55);
}
.round-icon.violet {
  background: radial-gradient(circle at 35% 30%, #cc7bff, #7025ff 72%);
  box-shadow: 0 0 28px rgba(141, 58, 255, .6);
}
.round-icon.deep-blue {
  background: radial-gradient(circle at 35% 30%, #1679ff, #082eaf 74%);
  box-shadow: 0 0 28px rgba(0, 113, 255, .42);
}

.round-icon img {
  width: 64%;
  height: 64%;
  object-fit: contain;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #d8e4ff;
  font-size: 17px;
  line-height: 1.95;
}

.check-list li {
  position: relative;
  padding-left: 23px;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.service-card:hover .round-icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.07);
  filter: saturate(1.18);
}

.process {
  position: relative;
  width: min(100% - 108px, 980px);
  margin: 21px auto 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  position: relative;
  z-index: 2;
}

.process-line {
  position: absolute;
  left: 122px;
  right: 122px;
  top: 52px;
  border-top: 2px dotted rgba(0, 206, 255, .62);
  z-index: 1;
}

.process-step {
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 33px;
  background: rgba(14, 21, 62, .92);
  border: 1px solid rgba(147, 116, 255, .75);
  box-shadow: 0 0 26px rgba(83, 49, 255, .28);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), filter .28s ease, border-color .28s ease;
}

.process-step:hover .process-icon {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(0, 211, 255, .72);
  filter: drop-shadow(0 0 16px rgba(116, 91, 255, .5));
}

.step-number {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #11c9ff, #0872ff);
  font-size: 16px;
  font-weight: 800;
}

.process-step h3 {
  margin: 8px 0 4px;
  font-size: 18px;
  font-weight: 800;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.stats-band {
  width: min(100% - 96px, 1080px);
  min-height: 66px;
  margin: 0 auto 22px;
  padding: 12px 31px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(54, 213, 255, .8);
  border-radius: 8px;
  background:radial-gradient(circle at 15% 50%, rgba(74, 215, 255, .6), transparent 8rem),
    linear-gradient(100deg, #0acaff 0%, #054bed 52%, #18037a 100%);
  box-shadow: 0 0 32px rgba(25, 121, 255, .3), inset 0 1px 0 rgba(255,255,255,.32);
}

.stat {
  display: flex;
  align-items: center;
  gap: 23px;
  min-width: 0;
}
.stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.45); }
.stat svg {
  font-size: 46px;
  flex: 0 0 auto;
  transition: transform .25s ease, filter .25s ease;
}
.stat:hover svg {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255,255,255,.32));
}
.stat strong { display: block; font-size: 29px; line-height: 1; }
.stat span { display: block; margin-top: 4px; font-size: 12px; color: #e8f2ff; }
.price {
  min-width: 122px;
  margin: 1px 0 15px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  justify-content: start;
  column-gap: 2px;
  font-size: 33px;
  font-weight: 900;
  line-height: .92;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(0, 190, 255, .14);
}
.price .currency {
  margin-top: 2px;
  font-size: .63em;
  font-weight: 900;
  line-height: 1;
  color: #f9fcff;
}
.price .amount {
  font-size: 1em;
  line-height: .92;
}
.price small {
  grid-column: 1 / -1;
  display: block;
  margin-top: 10px;
  padding-left: 2px;
  font-size: 12px;
  color: #e6efff;
  font-weight: 600;
  letter-spacing: .01em;
}
.full {
  width: 100%;
  min-height: 38px;
  margin-top: 7px;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 125px;
  padding: 8px 16px;
  border-radius: 6px;
  text-align: center;
  background: linear-gradient(180deg, #11c8ff, #0679fb);
  box-shadow: 0 8px 18px rgba(0, 142, 255, .35);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}
.quote-card {
  padding: 14px 17px;
  min-height: 118px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 198, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 36px rgba(0,0,0,.25), 0 0 22px rgba(0, 160, 255, .12);
}
.stars {
  color: #ffc928;
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 1;
}
.quote-card p {
  margin: 6px 0 11px;
  color: #e6efff;
  font-size: 13px;
  line-height: 1.42;
}
.person {
  display: flex;
  align-items: center;
  gap: 10px;
}
.person strong {
  display: block;
  font-size: 13px;
}
.person small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 12px rgba(0, 173, 255, .18);
}
.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transform: scale(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettle {
  from {
    opacity: .94;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes ukHeroFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero-copy,
  .hero-visual,
  .uk-hero h1,
  .uk-hero .hero-subtitle,
  .uk-hero .hero-buttons,
  .uk-process-grid article,
  .reveal,
  .btn,
  .glass-card,
  .service-card,
  .price-card,
  .feature-card,
  .quote-card,
  .process-icon,
  .round-icon,
  .line-icon,
  .cta-band,
  .cta-icon,
  .nav-link,
  .nav-link::after,
  .dropdown-menu {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

.cta-band {
  width: min(100% - 112px, 1050px);
  margin: 12px auto 0;
  min-height: 75px;
  padding: 13px 27px 13px 196px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(54, 202, 255, .65);
  background:
    radial-gradient(circle at 15% 50%, rgba(74, 215, 255, .6), transparent 8rem),
    linear-gradient(100deg, #0acaff 0%, #054bed 52%, #18037a 100%);
  box-shadow: 0 0 35px rgba(19, 123, 255, .32);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.cta-band:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 224, 255, .9);
  box-shadow: 0 18px 46px rgba(19, 123, 255, .36), 0 0 30px rgba(132, 54, 255, .18);
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  left: -18px;
  top: 4px;
  width: 180px;
  height: 80px;
  border-top: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  transform: rotate(-13deg);
}
.cta-band::after { top: 20px; left: -36px; opacity: .6; }
.cta-icon {
  position: absolute;
  left: 132px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 33px;
  background: radial-gradient(circle at 35% 25%, #9ff4ff, #0e8cff);
  box-shadow: 0 0 25px rgba(255,255,255,.3);
  transition: transform .28s ease, box-shadow .28s ease;
}
.cta-band:hover .cta-icon {
  transform: translate(-50%, -50%) rotate(-4deg) scale(1.05);
}
.cta-icon svg {
  transform: rotate(-12deg);
  transform-origin: 50% 50%;
}
.cta-band h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1;
}
.cta-band p {
  margin: 7px 0 0;
  color: #eaf5ff;
  font-size: 14px;
}
.cta-actions {
  display: flex;
  gap: 14px;
}
.service-page-shell::before {
  background:
    radial-gradient(ellipse at 78% 9%, rgba(15, 93, 255, .33), transparent 28rem),
    radial-gradient(circle at 6% 54%, rgba(0, 156, 255, .14), transparent 24rem),
    linear-gradient(105deg, rgba(0, 12, 38, .18), rgba(0, 0, 0, 0) 45%);
}

.service-main {
}

.accounting-hero-copy {
  padding-top: 8px;
  position: relative;
  z-index: 3;
}

.mini-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 27px 0 29px;
  color: #f6fbff;
  font-size: 13px;
  font-weight: 600;
}

.mini-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-proof i {
  width: 13px;
  height: 13px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  font-style: normal;
}

.mini-proof i::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  transform: rotate(45deg) translate(-1px, -1px);
}

.accounting-wave {
  position: absolute;
  right: -120px;
  bottom: 14px;
  width: 610px;
  height: 136px;
  border-radius: 50%;
  border-top: 2px solid rgba(0, 143, 255, .8);
  transform: rotate(-11deg);
  box-shadow: inset 0 12px 22px rgba(5, 120, 255, .25), 0 -4px 28px rgba(0, 113, 255, .4);
}

.accounting-wave.wave-two {
  right: -90px;
  bottom: -20px;
  border-top-color: rgba(101, 64, 255, .66);
  opacity: .8;
}

.accounting-section {
  margin: 0 0 25px;
}

.accounting-section h2,
.accounting-process h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
}

.choose-panel {
  min-height: 174px;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.choose-panel article {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 25px;
}

.choose-panel article:not(:last-child) {
  border-right: 1px solid rgba(143, 172, 255, .28);
}

.choose-panel h3 {
  margin: 13px 0 7px;
  font-size: 15px;
  font-weight: 800;
}

.choose-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.accounting-process {
  width: 100%;
  margin: 0 0 27px;
}

.accounting-process .process-line {
  top: 72px;
  left: 118px;
  right: 118px;
}

.accounting-stats {
  width: 100%;
  margin-bottom: 28px;
  background: linear-gradient(100deg, #0759d8, #1025a8 48%, #2c176f 100%);
}

.acct-testimonials {
  margin-bottom: 22px;
}

.acct-avatar {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.uk-flag {
  background:
    linear-gradient(33deg, transparent 44%, #fff 45% 54%, transparent 55%),
    linear-gradient(-33deg, transparent 44%, #fff 45% 54%, transparent 55%),
    linear-gradient(33deg, transparent 47%, #d91f37 48% 52%, transparent 53%),
    linear-gradient(-33deg, transparent 47%, #d91f37 48% 52%, transparent 53%),
    linear-gradient(90deg, transparent 38%, #fff 39% 61%, transparent 62%),
    linear-gradient(180deg, transparent 38%, #fff 39% 61%, transparent 62%),
    linear-gradient(90deg, transparent 43%, #d91f37 44% 56%, transparent 57%),
    linear-gradient(180deg, transparent 43%, #d91f37 44% 56%, transparent 57%),
    #15479a;
}

.purple-btn {
  background: linear-gradient(180deg, #13c7ff 0%, #0576ff 100%);
  box-shadow: 0 12px 28px rgba(109, 36, 255, .3), inset 0 1px 0 rgba(255,255,255,.35);
}

.uk-service-card:hover .round-icon,
.uk-why article:hover .round-icon {
  transform: scale(1.1);
}

.uk-why {
  min-height: 137px;
  margin-bottom: 24px;
  padding: 27px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.uk-why article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 15px;
  padding: 0 18px;
}

.uk-why article:not(:last-child) {
  border-right: 1px solid rgba(143, 172, 255, .28);
}

.uk-why h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
}

.uk-why p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.accounting-hero-copy {
  padding-top: 50px;
  position: relative;
  z-index: 3;
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.flag-mark {
  width: 18px;
  height: 12px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 1px;
  vertical-align: -1px;
  background:
    linear-gradient(90deg, #2f5fff 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #ff5d68 0 2px, #fff 2px 4px);
  box-shadow: 0 0 10px rgba(255,255,255,.18);
}

.boi-status {
  position: absolute;
  right: 10px;
  width: 185px;
  min-height: 74px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(107, 169, 255, .38);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(8, 25, 62, .96), rgba(4, 13, 36, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 24px rgba(0, 0, 0, .22);
  backdrop-filter: blur(6px);
}

.boi-status svg {
  width: 30px;
  height: 30px;
  color: #78b8ff;
}

.boi-status b {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.boi-status small {
  display: block;
  margin-top: 5px;
  color: #d5e2ff;
  font-size: 10px;
  line-height: 1.3;
}

.boi-status i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #20dc6f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}

.boi-status i::before {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  margin: 5px auto;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.status-one { top: 78px; }
.status-two { top: 174px; right: -2px; grid-template-columns: 34px 1fr; }
.status-three { top: 270px; right: 8px; }

.boi-overview h2,
.boi-documents h2,
.boi-section h2,
.boi-process h2,
.boi-benefits h2,
.boi-package h2,
.boi-why h2,
.boi-faq h2,
.boi-testimonials h2 {
  margin: 0 0 13px;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
}

.boi-overview p,
.boi-documents p,
.boi-mini-card p,
.boi-process p,
.boi-benefits p,
.boi-why p,
.boi-faq p,
.boi-testimonials p {
  color: #dfeaff;
  font-size: 13px;
  line-height: 1.65;
}

.boi-faq,
.boi-testimonials {
  padding: 22px 21px;
}

.boi-faq h2,
.boi-testimonials h2 {
  font-size: 21px;
}

.boi-faq details {
  border: 1px solid rgba(96, 137, 207, .32);
  border-radius: 6px;
  background: rgba(5, 16, 45, .6);
  overflow: hidden;
}

.boi-faq details + details {
  margin-top: 8px;
}

.boi-faq summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #f4f8ff;
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}

.boi-faq summary::-webkit-details-marker {
  display: none;
}

.boi-faq summary::after {
  content: "\203A";
  transform: rotate(90deg);
  color: #c9d8ff;
  transition: transform .2s ease;
}

.boi-faq details[open] summary::after {
  transform: rotate(-90deg);
}

.boi-faq p {
  margin: 0;
  padding: 0 14px 12px;
  color: var(--muted);
  font-size: 12px;
}

.ein-person {
  position: absolute;
  left: 62px;
  bottom: 30px;
  width: 178px;
  height: 250px;
  border-radius: 86px 86px 18px 18px;
  background:
    radial-gradient(circle at 50% 22%, #ffd2b2 0 35px, transparent 36px),
    linear-gradient(90deg, transparent 0 43%, #10224a 44% 56%, transparent 57%),
    linear-gradient(135deg, #122b63, #050d24 72%);
  box-shadow: 0 18px 40px rgba(0,0,0,.26);
}

.ein-person::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 28px;
  width: 68px;
  height: 32px;
  border-radius: 40px 40px 10px 10px;
  background: #432916;
}

.ein-person::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 76px;
  width: 38px;
  height: 12px;
  border-radius: 12px;
  border: 2px solid rgba(4, 18, 50, .85);
  box-shadow: 0 0 0 2px rgba(255,255,255,.16);
}

.ein-laptop {
  position: absolute;
  left: 5px;
  bottom: 23px;
  width: 245px;
  height: 118px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(145deg, #4d5260, #171a25);
  box-shadow: 0 24px 44px rgba(0,0,0,.36);
  transform: perspective(500px) rotateX(3deg);
}

.ein-laptop::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: -15px;
  height: 16px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, #6c7280, #2e3340);
}

.ein-cert,
.ein-ready-visual {
  position: absolute;
  right: 110px;
  top: 55px;
  width: 220px;
  height: 276px;
  padding: 58px 25px 22px;
  border: 4px solid rgba(72, 140, 255, .72);
  border-radius: 18px;
  color: #143577;
  text-align: center;
  background:
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(34, 84, 155, .15) 27px 31px),
    linear-gradient(145deg, #ecf5ff, #bfd8ff);
  box-shadow: 0 20px 50px rgba(0, 89, 255, .3), 0 0 34px rgba(0, 179, 255, .22);
}

.ein-cert::before,
.ein-ready-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 72px;
  height: 42px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #5b9bff, #1e49c9);
  transform: translateX(-50%);
}

.ein-cert::after,
.ein-ready-visual::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 40px;
  width: 72px;
  height: 84px;
  background: linear-gradient(180deg, #0bd7ff, #0657d6);
  clip-path: polygon(50% 0, 91% 18%, 84% 66%, 50% 100%, 16% 66%, 9% 18%);
  box-shadow: 0 12px 24px rgba(0, 109, 255, .34);
}

.ein-cert strong {
  display: block;
  font-size: 21px;
  line-height: 1.08;
  color: #143577;
}

.ein-cert span {
  display: block;
  margin: 10px 0 18px;
  color: #4867a2;
  font-size: 11px;
  font-weight: 800;
}

.ein-cert b {
  display: block;
  color: #0e2d6a;
  font-size: 27px;
  letter-spacing: .03em;
}

.ein-cert small {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: #1750b4;
  font-size: 19px;
  font-weight: 900;
}

.ein-status {
  position: absolute;
  right: 0;
  width: 175px;
  min-height: 72px;
  padding: 13px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(80, 151, 255, .36);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(7, 23, 58, .94), rgba(4, 13, 38, .92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 25px rgba(0,0,0,.24);
}

.ein-status svg {
  width: 30px;
  height: 30px;
  color: var(--cyan);
}

.ein-status b {
  display: block;
  font-size: 12px;
}

.ein-status small {
  display: block;
  margin-top: 5px;
  color: #d8e5ff;
  font-size: 10px;
  line-height: 1.3;
}

.ein-status-one { top: 94px; }
.ein-status-two { top: 188px; right: 15px; }
.ein-status-three { top: 282px; }
.uk-close-page-shell::before,
.uk-address-page-shell::before {
  background:
    radial-gradient(ellipse at 76% 8%, rgba(0, 140, 255, .3), transparent 32rem),
    radial-gradient(circle at 8% 34%, rgba(0, 208, 255, .13), transparent 25rem),
    linear-gradient(105deg, rgba(0, 12, 38, .18), rgba(0, 0, 0, 0) 45%);
}

.uk-service-main {
}

.uk-service-hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.uk-service-hero::before {
  content: "";
  position: absolute;
  inset: -18px -40px -18px;
  z-index: -2;
 
  background-size: cover;
  background-position: center top;
}

.uk-service-copy {
  position: relative;
  z-index: 4;
}

.uk-service-copy h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(46px, 4.4vw, 61px);
  line-height: 1.08;
  font-weight: 900;
}

.uk-service-copy h1 span,
.uk-info-panel h2 span,
.uk-section-title span,
.address-included h2 span,
.address-steps h2 span {
  color: var(--cyan);
}

.uk-flag-mark {
  width: 20px;
  height: 14px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 2px;
  vertical-align: -2px;
  background:
    linear-gradient(35deg, transparent 42%, #fff 43% 48%, #f23a5b 49% 54%, #fff 55% 60%, transparent 61%),
    linear-gradient(-35deg, transparent 42%, #fff 43% 48%, #f23a5b 49% 54%, #fff 55% 60%, transparent 61%),
    linear-gradient(90deg, transparent 43%, #fff 44% 56%, transparent 57%),
    linear-gradient(0deg, transparent 38%, #fff 39% 61%, transparent 62%),
    #143d8f;
}

.uk-check-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 54px;
  margin: 25px 0 28px;
  font-size: 13px;
  font-weight: 800;
}

.uk-check-grid span {
  position: relative;
  padding-left: 24px;
}

.uk-check-grid span::before,
.uk-risk-card span::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-size: 10px;
  transform: translateY(-50%);
}

.uk-info-panel,
.address-included,
.address-steps {
  min-height: 245px;
  margin-bottom: 18px;
  padding: 30px 38px;
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

.uk-info-panel h2,
.address-included h2,
.address-steps h2,
.uk-section-title h2,
.uk-list-card h2,
.uk-process-card h2,
.uk-why-small h2,
.uk-price-card h2,
.uk-risk-card h2,
.uk-testimonial-section h2,
.uk-final-cta h2 {
  margin: 0 0 15px;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 900;
}

.uk-info-panel p,
.uk-compact-grid p,
.uk-list-card p,
.uk-process-card p,
.uk-why-small p,
.uk-final-cta p {
  color: #dce8ff;
  font-size: 13px;
  line-height: 1.6;
}

.uk-info-image {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uk-info-image img {
  width: 320px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 89, 255, .16));
}

.mini-line-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(0, 147, 255, .12);
  box-shadow: 0 0 18px rgba(0, 181, 255, .14);
}

.uk-reason-grid h3,
.uk-why-small h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.uk-reason-grid p,
.uk-why-small p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.uk-section-title h2,
.uk-testimonial-section h2 {
  text-align: center;
}

.uk-compact-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.uk-compact-grid.six {
  grid-template-columns: repeat(6, 1fr);
}

.uk-compact-grid article {
  min-height: 202px;
  padding: 24px 16px;
  text-align: center;
}

.uk-compact-grid .round-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
}

.uk-compact-grid h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
}

.uk-compact-grid p {
  margin: 0;
  font-size: 11px;
}

.uk-two-col,
.uk-three-col,
.uk-bottom-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.uk-list-card,
.uk-process-card,
.uk-why-small,
.uk-price-card,
.uk-risk-card,
.uk-final-cta {
  padding: 24px 26px;
  overflow: hidden;
}

.uk-process-mini,
.address-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.uk-process-mini::before,
.address-step-grid::before {
  content: "";
  position: absolute;
  left: 58px;
  right: 58px;
  top: 20px;
  border-top: 2px dotted rgba(149, 194, 255, .6);
}

.uk-process-mini article,
.address-step-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.uk-process-mini b,
.address-step-grid b {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #25c9ff, #0b6bff);
  box-shadow: 0 0 18px rgba(0, 128, 255, .4);
}

.uk-process-mini svg,
.address-step-grid svg {
  width: 38px;
  height: 38px;
  margin: 14px 0 8px;
  color: #62a7ff;
}

.uk-process-mini h3,
.address-step-grid h3 {
  margin: 0 0 6px;
  font-size: 13px;
}

.uk-process-mini p,
.address-step-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
}

.uk-three-col {
  grid-template-columns: 1fr .7fr .9fr;
}

.uk-why-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.uk-why-small h2 {
  grid-column: 1 / -1;
}

.uk-why-small > div {
  padding: 15px;
  border: 1px solid rgba(96, 137, 207, .26);
  border-radius: 9px;
  background: rgba(5, 17, 45, .42);
}

.uk-price-card .uk-price {
  margin: 4px 0 2px;
  font-size: 51px;
  line-height: 1;
  font-weight: 900;
}

.uk-price-card p,
.uk-price-card small {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.uk-price-card .check-list {
  margin: 18px 0 14px;
  font-size: 12px;
}

.uk-price-card .uk-price span {
  font-size: 17px;
  font-weight: 700;
}

.uk-bottom-grid {
  grid-template-columns: .84fr 1.36fr;
}

.uk-final-cta {
  min-height: 225px;
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at 80% 50%, rgba(0, 154, 255, .22), transparent 15rem),
    linear-gradient(135deg, rgba(7, 26, 64, .84), rgba(5, 13, 42, .76));
}

.site-footer {
  width: min(100% - 96px, 1080px);
  margin: 0 auto;
  padding: 19px 0 8px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1.75fr;
  gap: 30px;
  border-top: 1px solid rgba(76, 164, 255, .3);
}
.footer-brand .brand { font-size: 20px; }
.footer-brand p {
  width: 210px;
  margin: 8px 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  color: white;
  transition: border-color .2s ease, color .2s ease;
}
.socials a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.socials svg {
  width: 13px;
  height: 13px;
}
.footer-col h3 {
  margin: 0 0 8px;
  font-size: 14px;
}
.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}
.footer-col a:hover { color: var(--cyan); }
.footer-contact a {
  margin-bottom: 10px;
}
.footer-contact small {
  display: block;
  margin-bottom: 1px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.copyright {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: #8fa2c8;
  text-align: center;
  font-size: 12px;
}
@media (max-width: 980px) {
  /* Shared hero-copy centering: once a hero's two-column grid collapses
     to one column below this breakpoint, its text block should read as
     a centered stack rather than staying left-aligned from the desktop
     layout. Every page's hero text wrapper is named either "*-hero-copy"
     (or bare "hero-copy") or, on a handful of older pages, a shorter
     "*-copy" that doesn't share that suffix -- listed explicitly below.
     Centering here once replaces doing it per page. */
  [class*="hero-copy"],
  .addr-copy,
  .bank-copy,
  .dissolution-copy,
  .payment-copy,
  .resale-copy,
  .tax-copy,
  .uk-service-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  /* Tighter desktop hero line-heights (tuned for large display type)
     read as cramped once the heading wraps to more lines on a narrow
     screen; loosen it uniformly instead of per page. The "body" prefix
     only exists to outrank each page's own unconditional h1 rule. */
  body [class*="hero"] h1 {
    line-height: 1.22;
  }

  .site-header,
  .hero,
  .service-main,
  .section-pad,
  .process,
  .stats-band,
  .pricing,
  .feature-strip,
  .testimonials,
  .videos,
  .cta-band,
  .site-footer {
    width: min(100% - 36px, 720px);
  }

  .site-header { height: auto; padding: 18px 0; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .main-nav,
  .header-actions {
    display: none;
    width: 100%;
  }
  .site-header.open .main-nav,
  .site-header.open .header-actions,
  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    display: flex;
  }
  .main-nav {
    order: 3;
    margin-top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    background: rgba(4, 13, 35, .94);
  }
  .nav-item { width: 100%; }
  .main-nav .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 6px;
  }
  .nav-link.active::after { bottom: 4px; width: 30px; right: auto; }
  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 2px 0 8px;
    padding: 6px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }
  .dropdown-menu::before { display: none; }
  .has-dropdown.open > .dropdown-menu { display: block; transform: none; }
  .header-actions { order: 4; justify-content: stretch; }
  .header-actions .btn { flex: 1; }
  .service-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 36px;
  }
  .process-line { display: none; }
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat:not(:last-child) { border-right: 0; }
  .cta-band {
    grid-template-columns: 1fr;
    padding-left: 96px;
  }
  .cta-icon { left: 49px; }
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
  .choose-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .choose-panel article:nth-child(2) {
    border-right: 0;
  }
  .accounting-process .process-line {
    display: none;
  }
  .uk-services-grid,
  .uk-why {
    grid-template-columns: repeat(2, 1fr);
  }
  .uk-why article:nth-child(2) {
    border-right: 0;
  }
  .boi-status {
    right: 0;
  }
  .status-two {
    right: 12px;
  }
  .ein-person {
    left: 22%;
  }
  .ein-laptop {
    left: 8%;
  }
  .ein-cert {
    right: 16%;
  }
  .ein-status {
    right: 0;
  }
  .ein-status-two {
    right: 12px;
  }
  .uk-service-hero,
  .uk-info-panel,
  .address-included,
  .uk-two-col,
  .uk-three-col,
  .uk-bottom-grid,
  .uk-final-cta {
    grid-template-columns: 1fr;
  }
  .uk-service-hero {
    min-height: 0;
    padding-top: 24px;
  }
  .uk-service-hero::before {
    inset: -8px -28px -12px;
   
    background-size: cover;
    background-position: center top;
  }
  .uk-compact-grid.six,
  .address-benefit-row,
  .address-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .uk-compact-grid.six article:last-child,
  .address-benefit-row article:last-child {
    grid-column: 1 / -1;
  }
  .uk-process-mini,
  .address-step-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .uk-process-mini::before,
  .address-step-grid::before {
    display: none;
  }
  .uk-three-col,
  .address-three-col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  body { background-color: #020819; }
  .brand { font-size: 21px; }
  .hero-buttons,
  .header-actions,
  .cta-actions {
    flex-direction: column;
  }
  .btn { width: 100%; }
  .services h2,
  .cta-band h2 { font-size: 25px; }
  .service-card,
  .price-card { padding-inline: 20px; }
  .process-grid,
  .stats-band,
  .feature-strip {
    grid-template-columns: 1fr;
  }
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .stats-band { padding: 18px 22px; }
  .stat { border-right: 0; }
  .price {
    margin-bottom: 12px;
  }
  .cta-band {
    padding: 86px 20px 20px;
    text-align: center;
  }
  .cta-icon {
    top: 38px;
    left: 50%;
  }
  .footer-brand p { width: auto; }

  .service-main {
  }
  .mini-proof {
    gap: 13px;
  }
  .accounting-wave {
    right: -165px;
    bottom: 0;
  }
  .accounting-section h2,
  .accounting-process h2,
  .acct-cta h2 {
    font-size: 24px;
  }
  .choose-panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .choose-panel article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(143, 172, 255, .22);
    padding: 0 0 20px;
  }
  .choose-panel article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .uk-services-grid,
  .uk-why,
  .uk-process-grid {
    grid-template-columns: 1fr;
  }
  .uk-why article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(143, 172, 255, .22);
    padding: 0 0 18px;
  }
  .uk-why article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .boi-status {
    position: absolute;
    right: 0;
    min-height: 62px;
  }
  .status-one {
    top: 300px;
  }
  .status-two {
    top: 374px;
    right: 0;
  }
  .status-three {
    top: 448px;
    right: 0;
  }
  .boi-overview,
  .boi-documents,
  .boi-process,
  .boi-benefits,
  .boi-package,
  .boi-why,
  .boi-faq,
  .boi-testimonials {
    padding: 20px;
  }
  .boi-overview h2,
  .boi-documents h2,
  .boi-section h2,
  .boi-process h2,
  .boi-benefits h2,
  .boi-package h2,
  .boi-why h2,
  .boi-faq h2,
  .boi-testimonials h2 {
    font-size: 23px;
  }
  .ein-person {
    left: 50%;
    top: 18px;
    bottom: auto;
    height: 190px;
    transform: translateX(-50%);
  }
  .ein-laptop {
    left: 50%;
    top: 150px;
    bottom: auto;
    transform: translateX(-50%);
  }
  .ein-cert {
    top: 258px;
    right: 50%;
    height: 245px;
    transform: translateX(50%);
  }
  .ein-status {
    right: 0;
  }
  .ein-status-one {
    top: 515px;
  }
  .ein-status-two {
    top: 596px;
    right: 0;
  }
  .ein-status-three {
    top: 677px;
  }
  .uk-service-copy h1 {
    font-size: 41px;
  }
  .uk-check-grid,
  .uk-reason-grid,
  .uk-compact-grid.six,
  .uk-process-mini,
  .address-benefit-row,
  .address-step-grid,
  .uk-why-small,
  .risk-columns {
    grid-template-columns: 1fr;
  }
  .uk-compact-grid.six article:last-child,
  .address-benefit-row article:last-child {
    grid-column: auto;
  }
  .uk-info-panel,
  .address-included,
  .address-steps,
  .uk-list-card,
  .uk-process-card,
  .uk-why-small,
  .uk-price-card,
  .uk-risk-card,
  .uk-final-cta {
    padding: 20px;
  }
  .uk-final-cta {
    text-align: center;
  }
}

.ra-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #f4f8ff;
  font-size: 12px;
  line-height: 2.12;
}

.ra-check-list li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  border-radius: 50%;
  background: #0877ff;
  color: white;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 980px) {

  .ra-proof-row,
  .ra-card-grid,
  .ra-process-grid,
  .ra-price-inner,
  .ra-lower-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {

  .ra-proof-row,
  .ra-card-grid,
  .ra-process-grid,
  .ra-price-inner,
  .ra-lower-grid {
    grid-template-columns: 1fr;
  }
}

.pay-primary,
.pay-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pay-primary:hover,
.pay-secondary:hover {
  transform: translateY(-2px);
}

.pay-primary {
  min-width: 250px;
  padding: 0 29px;
  color: #fff;
  background: linear-gradient(135deg, #08adff, #1d5cff);
  box-shadow: 0 17px 32px rgba(0, 108, 255, .36), inset 0 1px 0 rgba(255,255,255,.28);
}

.pay-secondary {
  min-width: 262px;
  padding: 0 24px;
  border: 1px solid rgba(175, 193, 255, .44);
  color: #fff;
  background: rgba(7, 15, 39, .36);
}

.pay-secondary:hover {
  border-color: rgba(92, 128, 255, .86);
  box-shadow: 0 0 28px rgba(66, 92, 255, .18);
}

@media (max-width: 620px) {

  .pay-primary,
  .pay-secondary,
  .payment-ready .pay-primary,
  .payment-ready .pay-secondary {
    width: 100%;
  }
}

.tax-page-shell::before {
  background:
    radial-gradient(ellipse at 70% 6%, rgba(0, 94, 255, .35), transparent 32rem),
    radial-gradient(circle at 7% 44%, rgba(0, 190, 255, .12), transparent 24rem),
    linear-gradient(105deg, rgba(0, 12, 38, .22), transparent 45%);
}

.tax-copy {
  position: relative;
  z-index: 6;
}

.tax-copy h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(45px, 4.35vw, 61px);
  line-height: 1.06;
  font-weight: 900;
}

.tax-copy h1 span,
.tax-cta h2 span {
  color: #02d6ff;
}

.tax-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 38px;
  margin: 23px 0 28px;
  color: #f3f8ff;
  font-size: 12px;
  font-weight: 700;
}

.tax-proof-grid span::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  border: 1px solid #06dfff;
  border-radius: 50%;
  color: #06dfff;
  font-size: 10px;
  font-weight: 900;
}

.tax-skyline {
  position: absolute;
  left: 10px;
  right: 55px;
  bottom: 54px;
  height: 220px;
  opacity: .8;
  background:
    linear-gradient(180deg, transparent 0 45%, rgba(0, 151, 255, .25) 46% 100%),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(11, 130, 255, .7) 30px 56px, transparent 56px 78px);
  clip-path: polygon(0 100%,0 68%,5% 68%,5% 52%,10% 52%,10% 40%,15% 40%,15% 65%,21% 65%,21% 26%,26% 26%,26% 100%,31% 100%,31% 54%,37% 54%,37% 16%,43% 16%,43% 100%,48% 100%,48% 35%,53% 35%,53% 20%,58% 20%,58% 100%,63% 100%,63% 47%,68% 47%,68% 10%,73% 10%,73% 100%,78% 100%,78% 38%,84% 38%,84% 24%,90% 24%,90% 100%,100% 100%);
  filter: drop-shadow(0 0 18px rgba(0, 159, 255, .5));
}

.tax-person {
  position: absolute;
  left: 238px;
  top: 7px;
  width: 185px;
  height: 335px;
  z-index: 5;
  border-radius: 95px 95px 14px 14px;
  background:
    radial-gradient(circle at 50% 21%, #f1c5a9 0 42px, transparent 43px),
    radial-gradient(ellipse at 48% 10%, #2b1d17 0 47px, transparent 48px),
    linear-gradient(135deg, transparent 0 32%, #113466 33% 100%);
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.34));
}

.tax-person::before {
  content: "";
  position: absolute;
  left: 51px;
  top: 115px;
  width: 86px;
  height: 175px;
  background: linear-gradient(180deg, #eef7ff 0 24%, #183a70 25% 100%);
  clip-path: polygon(16% 0, 84% 0, 100% 100%, 0 100%);
}

.tax-person::after {
  content: "";
  position: absolute;
  left: 62px;
  top: 75px;
  width: 62px;
  height: 12px;
  border-top: 3px solid #0b1220;
  border-bottom: 3px solid #0b1220;
  border-radius: 14px;
}

.tax-document {
  position: absolute;
  left: 290px;
  top: 205px;
  width: 126px;
  height: 146px;
  padding: 12px;
  z-index: 8;
  color: #0e2858;
  background: linear-gradient(160deg, #f8fbff, #a9c5ec);
  border-radius: 3px;
  transform: rotate(-3deg);
  box-shadow: 0 15px 25px rgba(0,0,0,.28);
}

.tax-document b {
  display: block;
  font-size: 14px;
}

.tax-document i {
  display: block;
  height: 3px;
  margin-top: 12px;
  background: rgba(21, 67, 132, .36);
}

.tax-document i:nth-of-type(2) { width: 82%; }
.tax-document i:nth-of-type(3) { width: 72%; }
.tax-document i:nth-of-type(4) { width: 88%; }

.tax-plant {
  position: absolute;
  left: 210px;
  bottom: 56px;
  width: 43px;
  height: 73px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, transparent 0 49%, #35536f 50%);
  z-index: 6;
}

.tax-plant::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 0;
  width: 77px;
  height: 58px;
  background:
    radial-gradient(ellipse at 18% 75%, #1d8d47 0 15px, transparent 16px),
    radial-gradient(ellipse at 50% 47%, #2ec76a 0 22px, transparent 23px),
    radial-gradient(ellipse at 77% 72%, #239752 0 17px, transparent 18px);
}

.tax-calculator {
  position: absolute;
  left: 435px;
  bottom: 58px;
  width: 74px;
  height: 42px;
  border-radius: 5px;
  background: linear-gradient(180deg, #3d546e, #16253b);
  z-index: 9;
}

.tax-laptop {
  position: absolute;
  right: 55px;
  bottom: 56px;
  width: 190px;
  height: 92px;
  border-radius: 6px;
  background: linear-gradient(145deg, #445775, #14243f);
  transform: perspective(700px) rotateX(9deg) rotateY(-10deg);
  box-shadow: 0 20px 30px rgba(0,0,0,.34);
  z-index: 4;
}

.tax-status {
  position: absolute;
  right: 8px;
  width: 222px;
  min-height: 72px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(85, 144, 221, .43);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(7, 25, 62, .9), rgba(4, 13, 36, .9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 13px 25px rgba(0,0,0,.24);
  backdrop-filter: blur(8px);
  z-index: 11;
}

.tax-status svg {
  width: 32px;
  height: 32px;
  color: #0fd7ff;
}

.tax-status b {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}

.tax-status small {
  display: block;
  margin-top: 5px;
  color: #d5e3ff;
  font-size: 10px;
  line-height: 1.35;
}

.tax-status em {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background: #06dfff;
}

.tax-status em::before {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  margin: 5px auto;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.tax-status.status-one { top: 60px; }
.tax-status.status-two { top: 163px; }
.tax-status.status-three { top: 266px; }

.tax-services,
.tax-testimonials {
  margin-top: 15px;
}

.tax-services h2,
.tax-process h2,
.tax-testimonials h2 {
  margin: 0 0 13px;
  text-align: center;
  font-size: 23px;
  font-weight: 900;
}

.tax-help h2,
.tax-deadlines h2,
.tax-mid-grid h2,
.tax-faq h2 {
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 900;
}

.tax-map {
  position: absolute;
  inset: 20px 10px 80px 0;
  background-image: radial-gradient(circle, rgba(0, 149, 255, .75) 1px, transparent 1.7px);
  background-size: 8px 8px;
  clip-path: polygon(2% 35%, 18% 20%, 36% 28%, 52% 16%, 72% 26%, 95% 38%, 78% 55%, 60% 48%, 45% 64%, 25% 56%, 8% 68%);
}

.tax-small-person {
  position: absolute;
  right: 36px;
  top: 15px;
  width: 112px;
  height: 180px;
  border-radius: 58px 58px 12px 12px;
  background:
    radial-gradient(circle at 50% 22%, #f1c5a9 0 28px, transparent 29px),
    radial-gradient(ellipse at 48% 11%, #2b1d17 0 34px, transparent 35px),
    linear-gradient(135deg, transparent 0 33%, #16558b 34% 100%);
  z-index: 2;
}

.tax-savings {
  position: absolute;
  left: 7px;
  bottom: 18px;
  width: 128px;
  min-height: 83px;
  padding: 12px 13px;
  border: 1px solid rgba(0, 200, 255, .54);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(7, 25, 62, .9), rgba(5, 15, 39, .92));
  z-index: 3;
}

.tax-savings small,
.tax-savings i {
  display: block;
  color: #cad7ef;
  font-size: 9px;
  font-style: normal;
}

.tax-savings b {
  display: block;
  margin: 4px 0;
  font-size: 25px;
}

.tax-savings::after {
  content: "";
  display: block;
  height: 24px;
  margin-top: 4px;
  background: linear-gradient(135deg, transparent 0 20%, #1ee873 21% 25%, transparent 26% 42%, #1ee873 43% 48%, transparent 49% 65%, #1ee873 66% 71%, transparent 72%);
}

.tax-why,
.tax-price,
.tax-compare,
.tax-faq {
  padding: 25px 29px;
  border-color: rgba(33, 135, 227, .45);
}

.tax-price {
  text-align: center;
  border-color: rgba(0, 204, 255, .95);
  box-shadow: 0 0 28px rgba(0, 167, 255, .22), inset 0 1px 0 rgba(255,255,255,.08);
}

.tax-price em {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 15px;
  border-radius: 0 8px 0 8px;
  background: linear-gradient(180deg, #19c8ff, #076dff);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.tax-price h2 {
  margin-top: 10px;
  font-size: 27px;
}

.tax-price p,
.tax-price span {
  margin: 0;
  color: #e2edff;
  font-size: 14px;
}

.tax-price div {
  margin: 10px 0 2px;
  font-size: 49px;
  line-height: 1;
  font-weight: 900;
}

.tax-price .ra-check-list {
  width: max-content;
  margin: 22px auto 20px;
  text-align: left;
  font-size: 12px;
  line-height: 2;
}

.tax-final-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: .8fr 1.15fr;
  gap: 28px;
}

.tax-faq {
  border-radius: 8px;
  background: rgba(5, 16, 45, .65);
}

.tax-faq details {
  border: 1px solid rgba(96, 137, 207, .36);
  background: rgba(5, 16, 45, .6);
}

.tax-faq summary {
  min-height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  color: #f5f9ff;
  font-size: 12px;
}

.tax-faq summary::-webkit-details-marker {
  display: none;
}

.tax-faq summary::after {
  content: "+";
  font-size: 19px;
  font-weight: 800;
}

.tax-faq details[open] summary::after {
  content: "-";
}

.tax-faq p {
  margin: 0;
  padding: 0 15px 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.tax-cta {
  width: 100%;
  min-height: 244px;
  margin: 0;
  padding: 42px 310px 34px 42px;
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 48%, rgba(0, 200, 255, .34), transparent 9rem),
    linear-gradient(100deg, rgba(4, 26, 78, .98), rgba(4, 12, 39, .98));
}

.tax-cta h2 {
  max-width: 330px;
  font-size: 34px;
  line-height: 1.05;
}

.tax-cta p {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .tax-hero,
  .tax-help-deadlines,
  .tax-help,
  .tax-mid-grid,
  .tax-final-grid {
    grid-template-columns: 1fr;
  }

  .tax-cta {
    padding-right: 230px;
  }
}

@media (max-width: 620px) {
  .tax-copy h1 {
    font-size: 41px;
  }

  .tax-proof-grid,
  .tax-feature-strip,
  .tax-service-grid,
  .tax-process-grid {
    grid-template-columns: 1fr;
  }

  .tax-person {
    left: 50%;
    top: 25px;
    width: 150px;
    height: 260px;
    transform: translateX(-50%);
  }

  .tax-document {
    left: 50%;
    top: 182px;
    transform: translateX(-18%) rotate(-3deg);
  }

  .tax-status {
    right: 0;
    width: 100%;
  }

  .tax-status.status-one { top: 372px; }
  .tax-status.status-two { top: 468px; }
  .tax-status.status-three { top: 564px; }

  .tax-laptop,
  .tax-calculator,
  .tax-plant {
    display: none;
  }

  .tax-why,
  .tax-price,
  .tax-compare,
  .tax-faq {
    padding: 20px;
  }

  .tax-cta {
    min-height: 398px;
    padding: 26px 20px 210px;
    text-align: center;
    justify-items: center;
  }

  .tax-cta h2,
  .tax-cta p {
    max-width: none;
  }
}

.uk-flag {
  display: inline-grid;
  width: 22px;
  height: 14px;
  margin-right: 7px;
  vertical-align: -2px;
  overflow: hidden;
  color: transparent;
  border-radius: 1px;
  background:
    linear-gradient(32deg, transparent 0 42%, #fff 43% 49%, #f1263a 50% 56%, #fff 57% 63%, transparent 64%),
    linear-gradient(148deg, transparent 0 42%, #fff 43% 49%, #f1263a 50% 56%, #fff 57% 63%, transparent 64%),
    linear-gradient(90deg, transparent 0 39%, #fff 40% 45%, #f1263a 46% 54%, #fff 55% 60%, transparent 61%),
    linear-gradient(0deg, transparent 0 33%, #fff 34% 41%, #f1263a 42% 58%, #fff 59% 66%, transparent 67%),
    #193d8f;
}

.uk-tax-cta .tax-cta-visual {
  display: none;
}