/* uk-company-dissolution.css -- styles used only on uk-company-dissolution.html.
   Generated by tools/split-css.js from the original style.css. */



.uk-hero-image {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.uk-hero-image img {
  width: 106%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, .22));
}

.uk-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 34px;
  margin-top: 22px;
}

.uk-reason-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.uk-two-col {
  grid-template-columns: 1fr 1.05fr;
}

.uk-list-card {
  min-height: 248px;
}

.uk-list-card .check-list {
  max-width: 350px;
}

.requirements-visual {
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: 150px;
  height: 130px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 34%, #0c2f75 35%),
    repeating-linear-gradient(0deg, #e8f3ff 0 16px, #b7d2ff 17px 20px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.requirements-visual::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -8px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid rgba(72, 154, 255, .7);
  background: radial-gradient(circle, #071b42 0 40%, #103f9c 41% 100%);
}

.risk-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.risk-columns > div {
  padding: 18px;
  border: 1px solid rgba(51, 205, 158, .35);
  border-radius: 8px;
  background: rgba(4, 27, 44, .46);
}

.risk-columns .danger {
  border-color: rgba(255, 76, 92, .34);
  background: rgba(42, 9, 28, .35);
}

.uk-risk-card h3 {
  margin: 0 0 15px;
  color: #23e39b;
  font-size: 14px;
  text-align: center;
}

.uk-risk-card .danger h3 {
  color: #ff6776;
}

.uk-risk-card span {
  position: relative;
  display: block;
  margin: 13px 0;
  padding-left: 24px;
  color: #dce8ff;
  font-size: 12px;
}

.uk-risk-card .danger span::before {
  content: "\00d7";
  border-color: #ff4f63;
  color: #ff4f63;
}

.uk-cta-image {
  width: 260px;
  max-width: 100%;
  height: auto;
  justify-self: center;
  align-self: end;
  object-fit: contain;
  filter: drop-shadow(0 17px 30px rgba(0, 76, 255, .18));
}

@media (max-width: 980px) {
  .uk-hero-image {
    min-height: 430px;
    justify-content: center;
  }
  .uk-hero-image img {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .uk-hero-image {
    min-height: 290px;
  }
  .requirements-visual {
    position: relative;
    right: auto;
    bottom: auto;
  }

  /* .uk-reason-grid and .risk-columns each set their own unconditional
     grid-template-columns in this file, which -- loading after base.css,
     at the same specificity -- silently wins over base.css's shared
     620px collapse rule for these class names at every width, including
     mobile (see UK-PAGES-RESPONSIVE-SPEC.md, Finding A). legacy-patches.css
     already fixes this exact issue for .uk-two-col on this page (via an
     !important rule scoped to .uk-close-page-shell) but has no
     equivalent for these two -- re-declaring their intended collapse
     here fixes it without touching either of those files. */
  .uk-reason-grid {
    grid-template-columns: 1fr;
  }
  .risk-columns {
    grid-template-columns: 1fr;
  }
}


/* Client testimonial marquee (matches homepage index.html) */
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: testimonial-scroll 48s linear infinite;
}

.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-card {
  flex: 0 0 340px;
  width: 340px;
  min-height: 190px;
  padding: 20px 24px;
}

.marquee-card .avatar {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.marquee-card p {
  font-size: 14px;
  line-height: 1.55;
}

.marquee-card .stars {
  font-size: 20px;
}

.marquee-card .person strong {
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}

@media (max-width: 620px) {
  .marquee-card {
    flex-basis: 285px;
    width: 285px;
    padding: 18px 20px;
  }
}
