.nksd {
  --red: #d71920;
  --red-dark: #ac1017;
  --ink: #18201e;
  --muted: #62706a;
  --cream: #fbf8f5;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}
.nksd * {
  box-sizing: border-box;
}
.nksd-shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.nksd h1,
.nksd h2,
.nksd h3,
.nksd p {
  margin-top: 0;
}
.nksd h1,
.nksd h2,
.nksd h3 {
  color: inherit;
  font-weight: 800;
}
.nksd h1,
.nksd h2 {
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.nksd h1 {
  max-width: 700px;
  font-size: clamp(40px, 5vw, 66px);
}
.nksd h2 {
  font-size: clamp(34px, 4vw, 42px);
}
.nksd-kicker {
  display: block;
  margin-bottom: 16px;
  color: #ffc4c6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.nksd-kicker--red {
  color: var(--red);
}
.nksd-hero {
  overflow: hidden;
  padding: 28px 0 72px;
  background: linear-gradient(118deg, #800c12 0%, #d71920 52%, #ee3a3f 100%);
  color: #fff;
}
.nksd-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
}
.nksd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.nksd-breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.nksd-breadcrumb strong {
  font-weight: 600;
}
.nksd-hero p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}
.nksd-hero__actions,
.nksd-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.nksd-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.nksd-button:hover {
  transform: translateY(-2px);
}
.nksd-button--primary {
  background: #fff;
  color: var(--red) !important;
}
.nksd-button--outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff !important;
}
.nksd-button--outline:hover {
  background: #fff;
  color: var(--red) !important;
}
.nksd-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}
.nksd-hero__image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 28px 65px rgba(62, 0, 3, 0.28);
}
.nksd-hero__image:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.3));
  content: "";
}
.nksd-hero__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.nksd-hero__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  padding: 20px 24px;
  background: #fff;
  color: var(--red);
  z-index: 1;
}
.nksd-hero__badge strong {
  font-size: 13px;
  letter-spacing: 0.12em;
}
.nksd-hero__badge small {
  color: var(--muted);
  font-size: 12px;
}
.nksd-section {
  padding: 104px 0;
}
.nksd-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
}
.nksd-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.nksd-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 58px;
}
.nksd-benefit {
  padding: 32px;
  border: 1px solid #e8e5e2;
  border-radius: 10px;
  background: #fff;
}
.nksd-benefit span {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}
.nksd-benefit h3 {
  margin: 58px 0 12px;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nksd-benefit p {
  margin: 0;
  color: var(--muted);
}
.nksd-section--issues {
  background: var(--cream);
}
.nksd-issues {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 96px;
  align-items: center;
}
.nksd-issues__content > p {
  max-width: 580px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 17px;
}
.nksd-text-link {
  color: var(--red) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nksd-text-link span {
  font-size: 20px;
  vertical-align: -1px;
}
.nksd-issues__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nksd-issues__list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 17px 19px;
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(24, 32, 30, 0.045);
}
.nksd-issues__list span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #fee2e3;
  color: var(--red);
  font-size: 13px;
}
.nksd-section--process {
  background: #fff;
}
.nksd-section-heading {
  text-align: center;
}
.nksd-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  margin: 58px 0 0;
  padding: 0;
  border: 1px solid #e9e4e1;
  border-radius: 10px;
  list-style: none;
}
.nksd-process li {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid #e9e4e1;
}
.nksd-process li:last-child {
  border: 0;
}
.nksd-process strong {
  color: var(--red);
  font-size: 28px;
  letter-spacing: -0.04em;
}
.nksd-process h3 {
  margin: 50px 0 10px;
  font-size: 18px;
  line-height: 1.2;
}
.nksd-process p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.nksd-final {
  padding: 72px 0;
  background: var(--red);
  color: #fff;
}
.nksd-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nksd-final h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 40px);
}
.nksd-final .nksd-kicker {
  margin-bottom: 10px;
}
.nksd-final__actions {
  margin-top: 0;
}
.nksd-button--white {
  background: #fff;
  color: var(--red) !important;
}
.nksd-button--dark {
  background: #9d1118;
  color: #fff !important;
}
.nksd-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.65, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.nksd-reveal--right {
  transform: translateX(36px);
}
.nksd-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.nksd-benefits .nksd-reveal:nth-child(2),
.nksd-process .nksd-reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.nksd-benefits .nksd-reveal:nth-child(3),
.nksd-process .nksd-reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.nksd-process .nksd-reveal:nth-child(4) {
  transition-delay: 0.24s;
}
@media (max-width: 850px) {
  .nksd-hero__grid,
  .nksd-intro,
  .nksd-issues {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .nksd-breadcrumb {
    margin-bottom: 38px;
  }
  .nksd-hero__image {
    min-height: 370px;
  }
  .nksd-benefits {
    grid-template-columns: 1fr;
  }
  .nksd-benefit h3 {
    margin-top: 30px;
  }
  .nksd-process {
    grid-template-columns: 1fr 1fr;
  }
  .nksd-process li:nth-child(2) {
    border-right: 0;
  }
  .nksd-process li:nth-child(-n + 2) {
    border-bottom: 1px solid #e9e4e1;
  }
  .nksd-final__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .nksd-shell {
    width: min(100% - 32px, 1180px);
  }
  .nksd-hero {
    padding-bottom: 48px;
  }
  .nksd-hero p {
    font-size: 16px;
  }
  .nksd-hero__actions,
  .nksd-final__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .nksd-button {
    width: 100%;
  }
  .nksd-trust {
    display: grid;
    gap: 8px;
  }
  .nksd-section {
    padding: 70px 0;
  }
  .nksd-hero__image {
    min-height: 300px;
  }
  .nksd-process {
    grid-template-columns: 1fr;
  }
  .nksd-process li,
  .nksd-process li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #e9e4e1;
  }
  .nksd-process li:last-child {
    border-bottom: 0;
  }
  .nksd-process li {
    min-height: auto;
  }
  .nksd-process h3 {
    margin-top: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nksd-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
