.compliance-page {
  --brand-blue: #0057a3;
  --brand-blue-dark: #003b70;
  --brand-ink: #13233a;
  --brand-muted: #65758b;
  --brand-gold: #ffb629;
  --brand-line: #dbe5f0;
  --brand-soft: #f4f8fc;
  --brand-white: #fff;
  background: var(--brand-white);
  color: var(--brand-ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

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

.compliance-page ul,
.compliance-page ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compliance-page p,
.compliance-page h1,
.compliance-page h2,
.compliance-page h3,
.compliance-page h4 {
  margin: 0;
}

.compliance-page a {
  text-decoration: none;
}

.cw-section {
  padding: 78px 0;
}

.cw-section--soft {
  background: var(--brand-soft);
}

.cw-section--blue {
  background: linear-gradient(135deg, #003b70 0%, #0057a3 100%);
  color: var(--brand-white);
}

.cw-section--tight {
  padding: 58px 0;
}

.cw-kicker {
  color: var(--brand-gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-align: center;
}

.cw-title {
  color: var(--brand-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.cw-section--blue .cw-title,
.cw-section--blue .cw-kicker {
  color: var(--brand-white);
}

.cw-title::after {
  background: var(--brand-gold);
  content: "";
  display: block;
  height: 6px;
  margin: 18px auto 0;
  width: 220px;
}

.cw-subtitle {
  color: var(--brand-muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 24px auto 0;
  max-width: 780px;
  text-align: center;
}

.cw-section--blue .cw-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.cw-hero {
  height: 620px;
  overflow: hidden;
  position: relative;
}

.cw-hero__track {
  height: 100%;
  position: relative;
}

.cw-hero__slide {
  background-position: center;
  background-size: cover;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.6s ease;
}

.cw-hero__slide.is-active {
  opacity: 1;
  position: relative;
}

.cw-hero__slide::before {
  background:
    linear-gradient(90deg, rgba(0, 33, 66, 0.76), rgba(0, 55, 104, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.24));
  content: "";
  inset: 0;
  position: absolute;
}

.cw-hero__content {
  color: var(--brand-white);
  left: 50%;
  margin-left: -600px;
  position: absolute;
  top: 128px;
  width: 720px;
  z-index: 2;
}

.cw-hero__eyebrow {
  border-left: 5px solid var(--brand-gold);
  color: var(--brand-gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 26px;
  padding-left: 14px;
}

.cw-hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.22;
}

.cw-hero__text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  line-height: 1.6;
  margin-top: 24px;
}

.cw-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.cw-btn {
  align-items: center;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  height: 54px;
  justify-content: center;
  padding: 0 28px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cw-btn:hover {
  transform: translateY(-2px);
}

.cw-btn--gold {
  background: var(--brand-gold);
  color: #062542;
}

.cw-btn--blue {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.cw-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--brand-white);
}

.cw-hero__dots {
  bottom: 34px;
  display: flex;
  gap: 12px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.cw-hero__dot {
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  width: 28px;
}

.cw-hero__dot.is-active {
  background: var(--brand-gold);
  width: 48px;
}

.cw-split {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: 1fr 1fr;
}

.cw-split__media {
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 42, 84, 0.16);
  height: 414px;
  overflow: hidden;
}

.cw-split__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cw-split__content h2 {
  color: var(--brand-blue);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}

.cw-split__content h2::after {
  background: var(--brand-gold);
  content: "";
  display: block;
  height: 5px;
  margin: 18px 0 26px;
  width: 160px;
}

.cw-split__content p {
  color: #31445c;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.subject-compliance-page .subject-intro-section {
  background: #fff;
  min-height: 670px;
  padding: 72px 0 120px;
}

.subject-compliance-page .cw-title {
  font-size: 28px;
  line-height: 1.2;
}

.subject-compliance-page .cw-title::after {
  height: 5px;
  margin-top: 10px;
  width: 176px;
}

.subject-intro {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 384px 428px;
  justify-content: center;
  margin: 26px auto 0;
}

.subject-intro .cw-split__media {
  border-radius: 0;
  box-shadow: none;
  height: 268px;
}

.subject-intro__content p {
  color: #111;
  font-size: 20px;
  line-height: 1.28;
  margin: 0;
  white-space: pre-line;
}

.subject-risk-section {
  background: #fff;
  padding: 72px 0 94px;
}

.subject-risk-section .cw-title {
  color: #111;
  font-size: 28px;
}

.subject-risk-section .cw-title::after {
  display: none;
}

.subject-risk-section .cw-subtitle {
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 6px;
}

.cw-risk-map {
  height: 460px;
  margin: 28px auto 0;
  max-width: 1060px;
  position: relative;
}

.cw-risk-map__center {
  height: 360px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 46px;
  transform: translateX(-50%);
  width: 360px;
}

.cw-risk-map__center img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.cw-risk-box {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #111;
  cursor: default;
  display: grid;
  font-family: inherit;
  font-size: 21px;
  font-weight: 800;
  place-items: center;
  line-height: 1.45;
  max-width: 260px;
  min-height: 76px;
  padding: 12px 18px;
  position: absolute;
  text-align: center;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    color .2s ease,
    transform .2s ease;
}

.cw-risk-box:hover {
  border-color: rgba(0, 87, 163, .2);
  box-shadow: 0 16px 30px rgba(0, 45, 86, .1);
  color: var(--brand-blue);
  transform: translateY(-3px);
}

.cw-risk-box--top-left {
  left: 26px;
  top: 54px;
}

.cw-risk-box--top-center {
  left: 50%;
  top: -4px;
  transform: translateX(-50%);
}

.cw-risk-box--top-center:hover {
  transform: translate(-50%, -3px);
}

.cw-risk-box--top-right {
  right: 42px;
  top: 52px;
}

.cw-risk-box--bottom-left {
  left: 28px;
  top: 270px;
}

.cw-risk-box--bottom-right {
  right: 84px;
  top: 306px;
}

.tax-pain-section {
  background: linear-gradient(180deg, #f5fbff 0%, #fff 100%);
}

.tax-pain-section .cw-title {
  color: #143f72;
}

.tax-pain-section .cw-risk-map {
  height: 438px;
  margin-top: 38px;
  max-width: 1080px;
}

.tax-pain-section .cw-risk-map__center {
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(100, 174, 230, .18);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(55, 142, 215, .12);
  height: 300px;
  padding: 20px;
  top: 68px;
  width: 300px;
}

.tax-pain-section .cw-risk-box {
  background: linear-gradient(180deg, #fff 0%, #f7fcff 100%);
  border: 1px solid rgba(105, 184, 236, .32);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(74, 157, 224, .15);
  color: #20384f;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
  max-width: none;
  min-height: 78px;
  padding: 12px 18px;
  width: 292px;
}

.tax-pain-section .cw-risk-box::after {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.tax-pain-section .cw-risk-box:hover {
  border-color: rgba(0, 114, 203, .36);
  box-shadow: 0 18px 40px rgba(74, 157, 224, .22);
}

.cw-risk-box--pain-left-1 {
  left: 46px;
  top: 42px;
}

.cw-risk-box--pain-left-2 {
  left: 0;
  top: 180px;
}

.cw-risk-box--pain-left-3 {
  left: 46px;
  top: 318px;
}

.cw-risk-box--pain-right-1 {
  right: 46px;
  top: 42px;
}

.cw-risk-box--pain-right-2 {
  right: 0;
  top: 180px;
}

.cw-risk-box--pain-right-3 {
  right: 46px;
  top: 318px;
}

.tax-pain-section .cw-risk-box--pain-left-1::after,
.tax-pain-section .cw-risk-box--pain-left-2::after,
.tax-pain-section .cw-risk-box--pain-left-3::after {
  border-left: 10px solid rgba(105, 184, 236, .32);
  right: -10px;
}

.tax-pain-section .cw-risk-box--pain-right-1::after,
.tax-pain-section .cw-risk-box--pain-right-2::after,
.tax-pain-section .cw-risk-box--pain-right-3::after {
  border-right: 10px solid rgba(105, 184, 236, .32);
  left: -10px;
}

.subject-solution-section {
  background: #f7f8fa;
  padding: 76px 0 90px;
}

.subject-solution-section .cw-title {
  color: #111;
  font-size: 30px;
}

.subject-solution-grid {
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
}

.subject-solution-section .cw-card {
  align-items: center;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(12, 30, 54, .1);
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 42px 34px 34px;
  text-align: center;
}

.subject-solution-section .cw-card:hover,
.subject-solution-section .cw-card.is-active {
  background: var(--brand-white);
  box-shadow: 0 16px 36px rgba(12, 30, 54, .14);
  color: var(--brand-ink);
  transform: translateY(-5px);
}

.subject-solution-section .cw-card__icon {
  background: #fff4f4;
  border-radius: 14px;
  height: 64px;
  margin-bottom: 32px;
  width: 64px;
}

.subject-solution-section .cw-card:hover .cw-card__icon {
  background: #fff4f4;
}

.subject-solution-section .cw-card h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 20px;
}

.subject-solution-section .cw-card p,
.subject-solution-section .cw-card:hover h3,
.subject-solution-section .cw-card:hover p {
  color: #6b7280;
}

.subject-solution-section .cw-card p {
  font-size: 15px;
  line-height: 1.9;
}

.tax-service-section {
  background: #f7f9fc;
}

.tax-service-section .subject-solution-grid {
  gap: 42px;
  max-width: 1060px;
}

.tax-service-section .cw-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(29, 64, 103, .12);
  min-height: 360px;
  padding: 0 34px 34px;
}

.tax-service-section .cw-card:hover,
.tax-service-section .cw-card.is-active {
  background: #fff;
  box-shadow: 0 22px 46px rgba(29, 64, 103, .16);
}

.tax-service-section .cw-card__icon {
  background: transparent;
  border-radius: 0;
  flex: 0 0 120px;
  height: 120px;
  margin: 0 0 22px;
  width: 100%;
}

.tax-service-section .cw-card__icon img {
  height: 86px;
  object-fit: contain;
  width: 86px;
}

.tax-service-section .cw-card h3 {
  color: #2c3542;
  font-size: 20px;
  margin-bottom: 16px;
}

.tax-service-section .cw-card p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #6b7280;
  display: -webkit-box;
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
  overflow: hidden;
  text-align: left;
}

.cw-stat-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.cw-stat {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand-gold);
  padding: 20px 18px;
}

.cw-stat strong {
  color: var(--brand-blue);
  display: block;
  font-size: 30px;
  line-height: 1;
}

.cw-stat span {
  color: var(--brand-muted);
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

.cw-grid {
  display: grid;
  gap: 24px;
  margin-top: 50px;
}

.cw-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cw-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.cw-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cw-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  min-height: 210px;
  padding: 30px 28px;
  position: relative;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

button.cw-card {
  cursor: pointer;
  display: block;
  font-family: inherit;
  text-align: left;
  width: 100%;
}

.cw-card:hover,
.cw-card.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 18px 34px rgba(0, 87, 163, 0.22);
  color: var(--brand-white);
  transform: translateY(-4px);
}

.cw-card__icon {
  align-items: center;
  background: #edf5ff;
  border-radius: 50%;
  color: var(--brand-blue);
  display: flex;
  font-size: 22px;
  font-weight: 800;
  height: 52px;
  justify-content: center;
  margin-bottom: 22px;
  width: 52px;
}

.cw-card__icon--image {
  overflow: hidden;
}

.cw-card__icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.cw-card:hover .cw-card__icon,
.cw-card.is-active .cw-card__icon {
  background: var(--brand-gold);
  color: #062542;
}

.cw-card h3 {
  color: var(--brand-blue);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 16px;
}

.cw-card:hover h3,
.cw-card:hover p,
.cw-card:hover li,
.cw-card.is-active h3,
.cw-card.is-active p,
.cw-card.is-active li {
  color: var(--brand-white);
}

.cw-card p,
.cw-card li {
  color: #34465d;
  font-size: 16px;
  line-height: 1.75;
}

.cw-card li + li {
  margin-top: 7px;
}

.cw-card li::before {
  color: var(--brand-gold);
  content: "—";
  margin-right: 8px;
}

.cw-notice-list {
  display: flex;
  gap: 14px;
  height: 286px;
  margin-top: 50px;
}

.cw-notice-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 255, 0.94)),
    var(--notice-bg, linear-gradient(135deg, rgba(0, 87, 163, 0.08), rgba(255, 182, 41, 0.08))) center/cover no-repeat;
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  color: #20344a;
  cursor: pointer;
  flex: 0.72 1 0;
  font-family: inherit;
  min-width: 104px;
  overflow: hidden;
  padding: 30px 22px;
  position: relative;
  text-align: left;
  transition:
    background-color 0.24s ease,
    box-shadow 0.24s ease,
    color 0.24s ease,
    flex 0.24s ease,
    transform 0.24s ease;
}

.cw-notice-card.is-active {
  background:
    linear-gradient(135deg, rgba(0, 87, 163, 0.96), rgba(0, 111, 188, 0.92)),
    var(--notice-active-bg, url("../img/compliance-guardian-hero.png")) center/cover no-repeat;
  box-shadow: 0 22px 38px rgba(0, 87, 163, 0.22);
  color: var(--brand-white);
  flex: 2.7 1 0;
}

.cw-notice-card .cw-card__icon {
  margin-bottom: 22px;
}

.cw-notice-card.is-active .cw-card__icon {
  background: var(--brand-gold);
  color: #062542;
}

.cw-notice-card h3 {
  color: var(--brand-blue);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
  transition: color 0.24s ease;
}

.cw-notice-card p,
.cw-notice-card li {
  color: #34465d;
  font-size: 15px;
  line-height: 1.75;
  transition:
    color 0.24s ease,
    opacity 0.18s ease;
}

.cw-notice-card:not(.is-active) h3 {
  max-height: 92px;
  overflow: hidden;
}

.cw-notice-card:not(.is-active) p,
.cw-notice-card:not(.is-active) ul {
  opacity: 0;
  pointer-events: none;
}

.cw-notice-card.is-active h3,
.cw-notice-card.is-active p,
.cw-notice-card.is-active li {
  color: var(--brand-white);
}

.cw-notice-card:focus-visible {
  outline: 3px solid rgba(255, 182, 41, 0.72);
  outline-offset: 3px;
}

.cw-join-grid {
  gap: 28px;
}

.cw-join-card {
  background:
    linear-gradient(135deg, rgba(0, 86, 165, 0.9), rgba(0, 103, 185, 0.74)),
    var(--join-bg, url("../img/compliance-captain.jpg")) center/cover no-repeat;
  border: 0;
  box-shadow: 0 18px 36px rgba(0, 55, 105, 0.16);
  color: var(--brand-white);
  min-height: 300px;
  overflow: hidden;
  padding: 34px 30px 30px;
}

.cw-join-card:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(0, 167, 178, 0.9), rgba(0, 112, 180, 0.68)),
    var(--join-bg, url("../img/compliance-hero-office.jpg")) center/cover no-repeat;
}

.cw-join-card::after {
  background: linear-gradient(180deg, transparent, rgba(0, 31, 64, 0.2));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.cw-join-card > * {
  position: relative;
  z-index: 1;
}

.cw-join-card:hover,
.cw-join-card.is-active {
  background:
    linear-gradient(135deg, rgba(0, 86, 165, 0.84), rgba(0, 103, 185, 0.62)),
    var(--join-bg, url("../img/compliance-captain.jpg")) center/cover no-repeat;
  border: 0;
  box-shadow: 0 24px 46px rgba(0, 55, 105, 0.22);
}

.cw-join-card:nth-child(even):hover,
.cw-join-card:nth-child(even).is-active {
  background:
    linear-gradient(135deg, rgba(0, 167, 178, 0.84), rgba(0, 112, 180, 0.58)),
    var(--join-bg, url("../img/compliance-hero-office.jpg")) center/cover no-repeat;
}

.cw-join-card .cw-card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--brand-white);
}

.cw-join-card h3,
.cw-join-card p,
.cw-join-card:hover h3,
.cw-join-card:hover p {
  color: var(--brand-white);
}

.cw-join-card p {
  max-width: 440px;
}

.cw-join-card .cw-actions {
  margin-top: 28px;
}

.cw-join-card .cw-btn--blue {
  background: var(--brand-white);
  border-color: var(--brand-white);
  color: var(--brand-blue);
}

.cw-join-card .cw-btn--blue:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #062542;
}

.home-compliance [data-section="compliance_services"] .cw-card li::before {
  color: #1eb6a7;
  content: "✓";
  font-weight: 800;
}

.kc-page [data-section="service_modules"] .cw-card li::before {
  color: #1eb6a7;
  content: "✓";
  font-weight: 800;
}

.home-compliance [data-section="customer_value"] {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 113, 203, 0.24), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(255, 182, 41, 0.15), transparent 28%),
    linear-gradient(135deg, #10183d 0%, #083f74 58%, #12193d 100%);
  color: var(--brand-white);
  overflow: hidden;
}

.home-compliance [data-section="customer_value"] .cw-kicker,
.home-compliance [data-section="customer_value"] .cw-title {
  color: var(--brand-white);
}

.home-compliance [data-section="customer_value"] .cw-title::after {
  height: 5px;
  width: 188px;
}

.home-compliance [data-section="customer_value"] .cw-grid {
  gap: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 48px;
}

.home-compliance [data-section="customer_value"] .cw-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 18px 24px;
  text-align: center;
}

.home-compliance [data-section="customer_value"] .cw-card:first-child {
  border-left: 0;
}

.home-compliance [data-section="customer_value"] .cw-card:hover,
.home-compliance [data-section="customer_value"] .cw-card.is-active {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transform: translateY(-6px);
}

.home-compliance [data-section="customer_value"] .cw-card__icon {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--brand-white);
  font-size: 19px;
  height: 66px;
  margin: 0 0 18px;
  width: 66px;
}

.home-compliance [data-section="customer_value"] .cw-card__icon--image {
  background: transparent;
  border: 0;
  padding: 0;
}

.home-compliance [data-section="customer_value"] .cw-card h3 {
  color: var(--brand-white);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 13px;
}

.home-compliance [data-section="customer_value"] .cw-card p,
.home-compliance [data-section="customer_value"] .cw-card li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.home-compliance [data-section="customer_value"] .cw-card li::before {
  color: var(--brand-gold);
}

@media (max-width: 1280px) {
  .home-compliance [data-section="customer_value"] .cw-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1px;
  }

  .home-compliance [data-section="customer_value"] .cw-card:nth-child(3n + 1) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .home-compliance [data-section="customer_value"] .cw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-compliance [data-section="customer_value"] .cw-card {
    min-height: 210px;
    padding: 24px 14px;
  }

  .home-compliance [data-section="customer_value"] .cw-card:nth-child(3n + 1) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-compliance [data-section="customer_value"] .cw-card:nth-child(2n + 1) {
    border-left: 0;
  }
}

.cw-band {
  background-position: center;
  background-size: cover;
  color: var(--brand-white);
  min-height: 260px;
  position: relative;
}

.cw-band::before {
  background: rgba(0, 46, 90, 0.76);
  content: "";
  inset: 0;
  position: absolute;
}

.cw-band .container {
  position: relative;
  z-index: 1;
}

.cw-band h2 {
  font-size: 38px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.cw-band p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.8;
  max-width: 680px;
}

.cw-band--center .container {
  text-align: center;
}

.cw-band--center p {
  margin-left: auto;
  margin-right: auto;
}

.cw-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 52px;
}

.cw-process--6 {
  grid-template-columns: repeat(6, 1fr);
}

.cw-step {
  border-top: 3px solid var(--brand-blue);
  padding: 28px 22px 0 0;
  position: relative;
}

.cw-step::before {
  background: var(--brand-gold);
  border: 6px solid var(--brand-white);
  border-radius: 50%;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: -14px;
  width: 24px;
}

.cw-step strong {
  color: var(--brand-blue);
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
}

.cw-step span {
  color: var(--brand-muted);
  display: block;
  font-size: 15px;
  line-height: 1.65;
}

.cw-process--cards {
  gap: 42px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cw-process--cards .cw-step {
  background: var(--brand-white);
  border: 1px solid #c9dce9;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 46, 90, 0.08);
  min-height: 174px;
  padding: 28px 16px 18px;
  position: relative;
  text-align: center;
}

.cw-process--cards .cw-step::before {
  display: none;
}

.cw-process--cards .cw-step::after {
  border-bottom: 14px solid transparent;
  border-left: 22px solid #0a67b2;
  border-top: 14px solid transparent;
  content: "";
  filter: drop-shadow(8px 0 8px rgba(0, 87, 163, 0.18));
  position: absolute;
  right: -34px;
  top: 70px;
}

.cw-process--cards .cw-step:last-child::after {
  display: none;
}

.cw-step__num {
  color: rgba(0, 87, 163, 0.16);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 10px;
}

.cw-step__icon {
  align-items: center;
  border: 2px solid rgba(0, 87, 163, 0.35);
  border-radius: 8px;
  display: flex;
  height: 42px;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  width: 42px;
}

.cw-step__icon::before {
  border: 3px solid var(--brand-blue);
  border-radius: 5px;
  content: "";
  height: 22px;
  width: 26px;
}

.cw-step__icon::after {
  background: var(--brand-blue);
  border-radius: 3px;
  content: "";
  height: 4px;
  position: absolute;
  right: 11px;
  top: 14px;
  width: 15px;
}

.cw-step__icon img {
  border-radius: 6px;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.cw-step__icon--image {
  border-color: transparent;
  padding: 0;
}

.cw-step__icon--image::before,
.cw-step__icon--image::after {
  display: none;
}

.cw-process--cards .cw-step strong {
  background: linear-gradient(90deg, #0057a3 0%, #0077bd 100%);
  color: var(--brand-white);
  font-size: 16px;
  margin: 0 -16px 12px;
  padding: 10px 8px;
}

.cw-process--cards .cw-step span:last-child {
  color: #4b5f75;
  font-size: 13px;
  line-height: 1.65;
}

.cw-process--cards .cw-step:hover {
  box-shadow: 0 18px 34px rgba(0, 46, 90, 0.14);
  transform: translateY(-4px);
}

.cw-process--image-line {
  align-items: start;
  gap: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 58px;
}

.cw-process--image-line .cw-step {
  border-top: 0;
  padding: 0 14px;
  text-align: center;
}

.cw-process--image-line .cw-step::before {
  display: none;
}

.cw-process--image-line .cw-step::after {
  border-top: 1px dashed #cfdce7;
  content: "";
  left: calc(50% + 38px);
  position: absolute;
  top: 38px;
  width: calc(100% - 76px);
}

.cw-process--image-line .cw-step:last-child::after {
  display: none;
}

.cw-process--image-line .cw-step__icon {
  background: #fff;
  border: 1px solid rgba(0, 96, 172, .08);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 96, 172, .08);
  height: 76px;
  margin-bottom: 28px;
  padding: 16px;
  width: 76px;
  z-index: 1;
}

.cw-process--image-line .cw-step__icon img {
  border-radius: 0;
  object-fit: contain;
}

.cw-process--image-line .cw-step strong {
  color: #182635;
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.cw-process--image-line .cw-step span {
  color: #5f7082;
  font-size: 14px;
  line-height: 1.65;
}

.cw-news {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 48px auto 0;
  max-width: 1080px;
}

.cw-news__item {
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: inherit;
  display: grid;
  gap: 26px;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 146px;
  padding: 0;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.cw-news__item:hover {
  background: #f7fbff;
  transform: translateX(4px);
}

.cw-news__cover {
  border-radius: 6px;
  height: 146px;
  overflow: hidden;
  position: relative;
}

.cw-news__cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.cw-news__item:hover .cw-news__cover img {
  transform: scale(1.04);
}

.cw-news__cover span {
  background: rgba(0, 38, 76, 0.72);
  border-radius: 3px;
  color: var(--brand-white);
  font-size: 13px;
  left: 14px;
  padding: 5px 12px;
  position: absolute;
  top: 12px;
}

.cw-news__body {
  border-bottom: 1px solid #edf2f7;
  padding: 6px 0 14px;
}

.cw-news__item h3 {
  color: var(--brand-blue);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.42;
  margin-bottom: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cw-news__item p {
  color: #5f7188;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cw-news__meta {
  align-items: center;
  color: #9aa9b9;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px;
}

.cw-news__tag {
  background: #f1f5f9;
  color: #6c7d91;
  padding: 4px 10px;
}

.cw-news__views::before {
  content: "♡";
  margin-right: 4px;
}

.cw-news__meta time {
  color: #9aa9b9;
  margin-left: auto;
}

.cw-news__views {
  margin-left: auto;
}

.cw-news__views + time {
  margin-left: 0;
}

.cw-news__more {
  color: var(--brand-blue);
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  margin-top: 18px;
}

.cw-news-actions {
  margin-top: 36px;
  text-align: center;
}

.cw-news--list {
  margin-top: 0;
}

.cw-news-empty {
  color: var(--brand-muted);
  font-size: 16px;
  padding: 54px 0;
  text-align: center;
}

.cw-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 46px;
}

.cw-page-link,
.cw-page-ellipsis {
  align-items: center;
  border: 1px solid var(--brand-line);
  border-radius: 4px;
  color: var(--brand-blue);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0 12px;
}

.cw-page-link:hover,
.cw-page-link.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--brand-white);
}

.cw-page-link.is-disabled {
  color: #a7b4c2;
  cursor: default;
  pointer-events: none;
}

.cw-page-ellipsis {
  border-color: transparent;
  color: #9aa9b9;
}

.cw-article-hero {
  background:
    linear-gradient(90deg, rgba(0, 45, 86, 0.86), rgba(0, 87, 163, 0.58)),
    url("../img/compliance-hero-ship.jpg") center/cover no-repeat;
  color: var(--brand-white);
  padding: 96px 0;
}

.cw-article-hero__crumb {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  margin-bottom: 24px;
}

.cw-article-hero__crumb a {
  color: rgba(255, 255, 255, 0.86);
}

.cw-article-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.3;
  max-width: 880px;
}

.cw-article-meta {
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  gap: 22px;
  font-size: 16px;
  margin-top: 24px;
}

.cw-article {
  background: var(--brand-white);
  padding: 76px 0;
}

.cw-article__layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 780px 1fr;
}

.cw-article__body {
  color: #2f4358;
  font-size: 18px;
  line-height: 2;
}

.cw-article__body h2 {
  color: var(--brand-blue);
  font-size: 28px;
  line-height: 1.4;
  margin: 44px 0 16px;
}

.cw-article__body p + p {
  margin-top: 18px;
}

.cw-article__body ul {
  margin: 18px 0 0;
}

.cw-article__body li {
  border-left: 4px solid var(--brand-gold);
  background: var(--brand-soft);
  margin-top: 14px;
  padding: 14px 18px;
}

.cw-article__aside {
  align-self: start;
  background: var(--brand-soft);
  border-radius: 6px;
  padding: 28px;
}

.cw-article__aside h3 {
  color: var(--brand-blue);
  font-size: 22px;
  margin-bottom: 16px;
}

.cw-article__aside p {
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.8;
}

.cw-article__aside .cw-btn {
  margin-top: 22px;
  width: 100%;
}

.cw-contact-panel {
  background: var(--brand-white);
  border-radius: 6px;
  box-shadow: 0 20px 46px rgba(0, 37, 78, 0.12);
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 46px;
  padding: 38px;
}

.cw-contact-panel h3 {
  color: var(--brand-blue);
  font-size: 28px;
  margin-bottom: 20px;
}

.cw-contact-panel p {
  color: #35475e;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.cw-form {
  display: grid;
  gap: 16px;
}

.cw-form input,
.cw-form textarea,
.cw-form select {
  border: 1px solid var(--brand-line);
  border-radius: 4px;
  color: var(--brand-ink);
  font-family: inherit;
  font-size: 16px;
  min-height: 48px;
  outline: none;
  padding: 0 14px;
}

.cw-form textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.cw-form input:focus,
.cw-form textarea:focus,
.cw-form select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 163, 0.12);
}

.cw-form__row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.cw-form__notice {
  color: var(--brand-blue);
  display: none;
  font-size: 14px;
}

.cw-form__notice.is-visible {
  display: block;
}

.cw-platforms {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 46px;
}

.cw-platform {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  height: 118px;
  overflow: hidden;
}

.cw-platform img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cw-platform span {
  background: rgba(0, 57, 112, 0.82);
  color: var(--brand-white);
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-top: -38px;
  padding: 9px 12px;
  position: relative;
  text-align: center;
}

.cw-platform span:empty {
  display: none;
}

.cw-compare {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.cw-compare__side {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  padding: 34px;
}

.cw-compare__side h3 {
  color: var(--brand-blue);
  font-size: 28px;
  margin-bottom: 24px;
}

.cw-compare__side--dark {
  background: #0d3d70;
  border-color: #0d3d70;
}

.cw-compare__side--dark h3,
.cw-compare__side--dark li {
  color: var(--brand-white);
}

.cw-compare li {
  color: #334960;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
}

.cw-compare li + li {
  margin-top: 12px;
}

.cw-compare li::before {
  color: var(--brand-gold);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.cw-compare .cw-compare__side--dark li {
  color: var(--brand-white);
}

.subject-compare-section {
  background-position: center;
  background-size: cover;
  position: relative;
}

.subject-compare-section::before {
  background: rgba(255, 255, 255, .72);
  content: "";
  inset: 0;
  position: absolute;
}

.subject-compare-section .container {
  position: relative;
  z-index: 1;
}

.subject-compare-section .cw-compare {
  gap: 0;
  margin-top: 46px;
  position: relative;
}

.subject-compare-section .cw-compare__side {
  background-color: rgba(108, 108, 106, .94);
  background-image: linear-gradient(rgba(108, 108, 106, .94), rgba(108, 108, 106, .94)), var(--compare-bg, none);
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 0;
  min-height: 304px;
  padding: 28px 88px;
}

.subject-compare-section .cw-compare__side--dark {
  background-color: rgba(0, 96, 172, .96);
  background-image: linear-gradient(rgba(0, 96, 172, .96), rgba(0, 96, 172, .96)), var(--compare-bg, none);
}

.subject-compare-section .cw-compare__side h3 {
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 28px;
  text-align: center;
}

.subject-compare-section .cw-compare li,
.subject-compare-section .cw-compare .cw-compare__side--dark li {
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  padding-left: 0;
}

.subject-compare-section .cw-compare li::before {
  content: "";
  display: none;
}

.subject-compare-section .cw-compare__vs {
  color: #fff;
  font-size: 58px;
  font-weight: 900;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .18);
  top: 50%;
  transform: translate(-50%, -50%);
}

.tax-choice-section {
  background: #fff;
  overflow: hidden;
}

.tax-choice-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 46px auto 0;
  max-width: 920px;
}

.tax-choice-card {
  align-items: flex-start;
  background-color: #7d8fc7;
  background-image: linear-gradient(rgba(119, 133, 194, .58), rgba(65, 86, 154, .62)), var(--choice-bg);
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: 44px 16px 34px;
  position: relative;
}

.tax-choice-card:not(:last-child)::after {
  background: linear-gradient(180deg, rgba(216, 221, 233, 0), #c6ccdb 16%, #eef2fa 50%, #c6ccdb 84%, rgba(216, 221, 233, 0));
  content: "";
  height: 96%;
  position: absolute;
  right: -16px;
  top: 2%;
  width: 2px;
}

.tax-choice-card h3 {
  color: #183b91;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.tax-choice-card p {
  color: #fff;
  display: -webkit-box;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(20, 35, 88, .25);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.tax-seller-section {
  background: #fff;
}

.tax-seller-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 54px auto 0;
  max-width: 1060px;
}

.tax-seller-card {
  color: #111;
  min-width: 0;
  text-align: center;
}

.tax-seller-card__icon {
  align-items: center;
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 22px;
}

.tax-seller-card__icon img {
  display: block;
  max-height: 56px;
  max-width: 64px;
  object-fit: contain;
}

.tax-seller-card h3 {
  color: #000;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 22px;
}

.tax-seller-card p {
  color: #101010;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 170px;
}

.supply-architecture-section {
  background: #fff;
  overflow: hidden;
  padding: 76px 0 0;
  position: relative;
}

.supply-architecture-section .container {
  position: relative;
  z-index: 1;
}

.supply-architecture-section .cw-title {
  color: #005fab;
  margin: 0 auto;
}

.supply-architecture-section .cw-title::after {
  background: #ffb12c;
}

.supply-architecture-visual {
  background-color: #0065ae;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 560px;
  margin-top: 36px;
  width: 100%;
}

.supply-advantage-section {
  background: #fff;
  padding-top: 76px;
}

.supply-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 54px auto 0;
  max-width: 980px;
  overflow: hidden;
  padding-top: 52px;
  position: relative;
}

.supply-advantage-card {
  min-height: 292px;
  padding: 0 26px 34px;
  position: relative;
  text-align: center;
}

.supply-advantage-card::before {
  background: #0060ac;
  border-radius: 32px 32px 0 0;
  content: "";
  height: 52px;
  left: 0;
  position: absolute;
  right: 18px;
  top: -52px;
}

.supply-advantage-card:not(:last-child)::after {
  background: linear-gradient(180deg, rgba(232, 229, 242, 0), #e4e0ef 14%, #faf9fd 50%, #e4e0ef 86%, rgba(232, 229, 242, 0));
  content: "";
  height: 86%;
  position: absolute;
  right: 0;
  top: 30px;
  width: 2px;
}

.supply-advantage-card__icon {
  align-items: center;
  background: #f1eef9;
  border-radius: 50%;
  display: inline-flex;
  height: 86px;
  justify-content: center;
  margin-bottom: 22px;
  width: 86px;
}

.supply-advantage-card__icon img {
  display: block;
  max-height: 52px;
  max-width: 52px;
  object-fit: contain;
}

.supply-advantage-card h3 {
  color: #242232;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 16px;
}

.supply-advantage-card h3::before {
  background: #4b357f;
  border-radius: 50%;
  color: #fff;
  content: "✓";
  display: inline-grid;
  font-size: 12px;
  height: 18px;
  margin-right: 8px;
  place-items: center;
  vertical-align: 2px;
  width: 18px;
}

.supply-advantage-card p {
  color: #5c6070;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 180px;
}

.supply-advantage-card p::after {
  background: #4b357f;
  content: "";
  display: block;
  height: 2px;
  margin: 24px auto 0;
  width: 34px;
}

.cw-quotes {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.cw-quote {
  appearance: none;
  background: var(--brand-white);
  border: 1px solid rgba(0, 96, 172, .08);
  border-bottom: 6px solid #c91f2e;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 18px 38px rgba(7, 45, 84, .09);
  color: inherit;
  cursor: default;
  display: flex;
  flex-direction: column;
  font: inherit;
  min-height: 286px;
  padding: 42px 30px 22px;
  position: relative;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
  width: 100%;
}

body.cw-modal-open {
  overflow: hidden;
}

.cw-quote:nth-child(2) {
  transform: translateY(-18px);
}

.cw-quote::before {
  color: rgba(0, 96, 172, .12);
  content: "“";
  font-family: Georgia, serif;
  font-size: 70px;
  left: 24px;
  line-height: 1;
  position: absolute;
  top: 18px;
}

.cw-quote:hover,
.cw-quote:focus-visible {
  box-shadow: 0 26px 54px rgba(7, 45, 84, .16);
  outline: none;
  transform: translateY(-8px);
}

.cw-quote:nth-child(2):hover,
.cw-quote:nth-child(2):focus-visible {
  transform: translateY(-26px);
}

.cw-quote__body,
.cw-quote p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  color: #374b63;
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 26px;
  order: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cw-quote__name,
.cw-quote h3 {
  border-top: 1px solid rgba(0, 96, 172, .1);
  color: var(--brand-blue);
  font-size: 18px;
  line-height: 1.35;
  margin: auto 0 0;
  order: 2;
  padding-top: 18px;
  position: relative;
  z-index: 1;
}

.cw-quote-modal {
  align-items: center;
  background: rgba(4, 23, 42, .62);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 3200;
}

.cw-quote-modal.is-open {
  display: flex;
}

.cw-quote-modal__panel {
  background: var(--brand-white);
  border-bottom: 7px solid #c91f2e;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
  max-height: calc(100vh - 72px);
  max-width: 720px;
  overflow: auto;
  padding: 54px 56px 38px;
  position: relative;
  width: min(720px, 100%);
}

.cw-quote-modal__close {
  background: transparent;
  border: 0;
  color: #7c8a98;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 16px;
}

.cw-quote-modal__mark {
  color: rgba(0, 96, 172, .12);
  font-family: Georgia, serif;
  font-size: 86px;
  left: 38px;
  line-height: 1;
  position: absolute;
  top: 22px;
}

.cw-quote-modal__body {
  color: #263b52;
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
  white-space: pre-wrap;
}

.cw-quote-modal__name {
  border-top: 1px solid rgba(0, 96, 172, .12);
  color: var(--brand-blue);
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.cw-pain-map {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
}

.cw-pain {
  background: var(--brand-white);
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(7, 45, 84, 0.08);
  min-height: 156px;
  padding: 28px;
}

.cw-pain:nth-child(2n) {
  background: var(--brand-blue);
}

.cw-pain h3 {
  color: var(--brand-blue);
  font-size: 24px;
  margin-bottom: 14px;
}

.cw-pain p {
  color: #40536a;
  font-size: 16px;
  line-height: 1.75;
}

.cw-pain:nth-child(2n) h3,
.cw-pain:nth-child(2n) p {
  color: var(--brand-white);
}

.cw-tabs {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.cw-tab {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 4px;
  color: var(--brand-blue);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  height: 48px;
  padding: 0 24px;
}

.cw-tab.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--brand-white);
}

.cw-tab-panel {
  display: none;
  margin-top: 42px;
}

.cw-tab-panel.is-active {
  display: block;
}

.cw-guardian {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1.05fr 0.95fr;
}

.cw-guardian__image {
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 42, 84, 0.16);
  height: 360px;
  overflow: hidden;
}

.cw-guardian__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cw-relation {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.cw-relation--image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.cw-relation--image img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.cw-relation__item {
  background: var(--brand-blue);
  border-radius: 6px;
  color: var(--brand-white);
  min-height: 230px;
  padding: 34px 30px;
  text-align: center;
}

.cw-relation__item h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.cw-relation__item p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.75;
}

.cw-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 48px;
}

.cw-timeline__item {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  padding: 26px 20px;
}

.cw-timeline__item strong {
  color: var(--brand-blue);
  display: block;
  font-size: 24px;
  margin-bottom: 12px;
}

.cw-timeline__item span {
  color: var(--brand-muted);
  display: block;
  font-size: 15px;
  line-height: 1.65;
}

.cw-section--milestones {
  background: #f3f3f3;
  padding: 50px 0 0;
}

.cw-section--milestones .container {
  max-width: none;
  padding: 0;
  width: 100%;
}

.cw-section--milestones .cw-title {
  font-size: 34px;
  margin-bottom: 0;
}

.cw-section--milestones .cw-title::after {
  height: 4px;
  margin-top: 8px;
  width: 155px;
}

.cw-milestones {
  display: block;
  margin: 0;
  max-width: none;
  width: 100%;
}

.cw-milestones__track {
  background: url("../img/development.6f81cde.png") center 190px/100% 283px no-repeat;
  height: 545px;
  margin-top: 26px;
  position: relative;
  width: 100%;
}

.cw-milestones__item {
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  width: 330px;
}

.cw-milestones__item--top {
  top: 0;
}

.cw-milestones__item--bottom {
  top: 375px;
}

.cw-milestones__item--slot-1 {
  left: 22.7%;
}

.cw-milestones__item--slot-2 {
  left: 18.5%;
}

.cw-milestones__item--slot-3 {
  left: 45.1%;
}

.cw-milestones__item--slot-4 {
  left: 42.2%;
}

.cw-milestones__item--slot-5 {
  left: 66.4%;
}

.cw-milestones__item strong {
  color: var(--brand-blue);
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}

.cw-milestones__item em {
  color: #111;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cw-milestones__item span {
  color: #111;
  display: block;
  font-size: 16px;
  line-height: 1.55;
}

.cw-culture {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.cw-culture__item {
  background: var(--brand-white);
  border-top: 5px solid var(--brand-gold);
  border-radius: 6px;
  min-height: 170px;
  padding: 30px;
}

.cw-culture__item h3 {
  color: var(--brand-blue);
  font-size: 24px;
  margin-bottom: 16px;
}

.cw-culture__item p {
  color: #40536a;
  font-size: 17px;
  line-height: 1.75;
}

.cw-culture--mosaic {
  gap: 10px;
  grid-template-columns: 1.08fr .62fr .62fr;
  grid-template-rows: repeat(2, 182px);
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.cw-culture--mosaic .cw-culture__item {
  align-items: flex-start;
  background: linear-gradient(135deg, #1b80f5 0%, #35c1df 100%);
  border: 0;
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 28px 32px;
  position: relative;
}

.cw-culture--mosaic .cw-culture__item::after {
  bottom: -24px;
  color: rgba(255, 255, 255, .22);
  font-size: 112px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 18px;
}

.cw-culture--mosaic .cw-culture__item--mission::after {
  content: ">";
  transform: rotate(-28deg);
}

.cw-culture--mosaic .cw-culture__item--vision::after {
  content: "+";
}

.cw-culture--mosaic .cw-culture__item--vision {
  background: linear-gradient(135deg, #2092fa 0%, #46bfd9 100%);
}

.cw-culture--mosaic .cw-culture__item--values,
.cw-culture--mosaic .cw-culture__item--spirit {
  background-image: linear-gradient(180deg, rgba(0, 88, 171, .2), rgba(0, 88, 171, .75)), var(--culture-bg);
  background-position: center;
  background-size: cover;
  grid-row: 1 / span 2;
  justify-content: space-between;
}

.cw-culture--mosaic .cw-culture__item--values {
  grid-column: 2;
  --culture-bg: url("../img/indexCulture3.jpg");
}

.cw-culture--mosaic .cw-culture__item--spirit {
  grid-column: 3;
  --culture-bg: url("../img/compliance-captain.jpg");
}

.cw-culture--mosaic .cw-culture__item h3,
.cw-culture--mosaic .cw-culture__item p,
.cw-culture--mosaic .cw-culture__item span {
  color: #fff;
  position: relative;
  z-index: 1;
}

.cw-culture--mosaic .cw-culture__item span {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cw-culture--mosaic .cw-culture__item span::after {
  background: rgba(255, 255, 255, .65);
  content: "";
  display: block;
  height: 1px;
  margin-top: 24px;
  width: 38px;
}

.cw-culture--mosaic .cw-culture__item h3 {
  font-size: 22px;
  line-height: 1.45;
  margin: 0;
}

.cw-culture--mosaic .cw-culture__item p {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
}

.cw-qrcodes {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
}

[data-section="public_channels"] .cw-qrcodes {
  grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
  justify-content: center;
}

.cw-qrcode {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  padding: 24px 18px;
  text-align: center;
}

.cw-qrcode img {
  height: 150px;
  object-fit: cover;
  width: 150px;
}

.cw-qrcode p {
  color: var(--brand-blue);
  font-size: 17px;
  font-weight: 700;
  margin-top: 16px;
}

.cw-address-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
}

.cw-address-tabs {
  margin: 46px auto 0;
  max-width: 980px;
}

.cw-address-tabs__nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 24px;
}

.cw-address-tab {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  color: var(--brand-blue);
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  min-width: 150px;
  padding: 12px 28px;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}

.cw-address-tab.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 12px 24px rgba(0, 87, 163, .18);
  color: var(--brand-white);
}

.cw-address-panel {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  display: none;
  overflow: hidden;
}

.cw-address-panel.is-active {
  display: block;
}

.cw-address {
  background: var(--brand-white);
  border: 1px solid var(--brand-line);
  border-radius: 6px;
  overflow: hidden;
}

.cw-address__body {
  padding: 26px;
}

.cw-address h3,
.cw-address-panel h3 {
  color: var(--brand-blue);
  font-size: 24px;
  margin-bottom: 12px;
}

.cw-address p,
.cw-address-panel p {
  color: #3b4e64;
  font-size: 16px;
  line-height: 1.7;
}

.cw-address .static-map,
.cw-address-panel .static-map {
  height: 320px;
}

.cw-address .static-map iframe,
.cw-address-panel .static-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cw-modal {
  align-items: center;
  background: rgba(4, 23, 42, 0.58);
  display: none;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 3000;
}

.cw-modal.is-open {
  display: flex;
}

.cw-modal__dialog {
  background: var(--brand-white);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  padding: 34px;
  position: relative;
  width: 520px;
}

.cw-modal__close {
  background: transparent;
  border: 0;
  color: var(--brand-muted);
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 18px;
  top: 12px;
}

.cw-modal h3 {
  color: var(--brand-blue);
  font-size: 28px;
  margin-bottom: 12px;
}

.cw-modal p {
  color: var(--brand-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

@media (max-width: 1280px) {
  .cw-hero__content {
    left: 40px;
    margin-left: 0;
  }

  .cw-process--cards {
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cw-process--image-line {
    gap: 30px 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cw-process--image-line .cw-step:nth-child(3n)::after {
    display: none;
  }

  .cw-process--cards .cw-step::after {
    display: none;
  }

  .cw-notice-list {
    gap: 10px;
  }

  .cw-notice-card {
    min-width: 92px;
    padding: 26px 18px;
  }

  .cw-notice-card h3 {
    font-size: 19px;
  }

}

@media (max-width: 760px) {
  .cw-process--cards {
    grid-template-columns: 1fr;
  }

  .cw-process--image-line {
    gap: 0;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .cw-process--image-line .cw-step {
    display: grid;
    gap: 4px 18px;
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 106px;
    padding: 0 0 28px;
    text-align: left;
  }

  .cw-process--image-line .cw-step::after,
  .cw-process--image-line .cw-step:nth-child(3n)::after {
    border-left: 1px dashed #cfdce7;
    border-top: 0;
    display: block;
    height: calc(100% - 68px);
    left: 34px;
    top: 68px;
    width: 0;
  }

  .cw-process--image-line .cw-step:last-child::after {
    display: none;
  }

  .cw-process--image-line .cw-step__icon {
    grid-row: 1 / span 2;
    height: 68px;
    margin: 0;
    padding: 14px;
    width: 68px;
  }

  .cw-process--image-line .cw-step strong,
  .cw-process--image-line .cw-step span {
    grid-column: 2;
  }

  .cw-notice-list {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .cw-notice-card,
  .cw-notice-card.is-active {
    flex: none;
    min-height: 92px;
    min-width: 0;
    padding: 22px;
    width: 100%;
  }

  .cw-notice-card {
    align-items: center;
    display: grid;
    gap: 0 14px;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .cw-notice-card .cw-card__icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .cw-notice-card h3 {
    margin-bottom: 0;
    max-height: none;
  }

  .cw-notice-card p,
  .cw-notice-card ul {
    grid-column: 2;
    margin-top: 8px;
  }

  .cw-notice-card:not(.is-active) p,
  .cw-notice-card:not(.is-active) ul {
    display: none;
  }

  .cw-join-grid {
    grid-template-columns: 1fr;
  }

  .cw-join-card {
    min-height: 260px;
  }

  .cw-milestones {
    margin-top: 36px;
  }

  .cw-milestones__track {
    background: none;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .cw-milestones__item,
  .cw-milestones__item--bottom {
    background: var(--brand-white);
    border: 1px solid var(--brand-line);
    border-left: 4px solid var(--brand-blue);
    border-radius: 6px;
    margin: 0;
    padding: 20px;
    position: static;
    width: auto;
  }

  .cw-culture--mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .cw-culture--mosaic .cw-culture__item,
  .cw-culture--mosaic .cw-culture__item--values,
  .cw-culture--mosaic .cw-culture__item--spirit {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
  }

  .cw-address-tabs__nav {
    flex-direction: column;
  }

  .cw-address-tab {
    width: 100%;
  }

  .cw-address-panel .static-map {
    height: 280px;
  }

  .cw-news__item {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .cw-news__cover {
    height: 190px;
  }

  .cw-news__body {
    padding: 0 0 18px;
  }

  .cw-news__item h3,
  .cw-news__item p {
    white-space: normal;
  }

  .cw-news__meta time,
  .cw-news__views {
    margin-left: 0;
  }

  .subject-compliance-page .subject-intro-section {
    min-height: 0;
    padding: 46px 0 70px;
  }

  .subject-intro {
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .subject-intro .cw-split__media {
    height: 220px;
  }

  .subject-intro__content p {
    font-size: 17px;
    line-height: 1.65;
  }

  .subject-risk-section {
    padding: 46px 0 68px;
  }

  .cw-risk-map {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: auto;
    margin-top: 24px;
  }

  .cw-risk-map__center {
    height: auto;
    left: auto;
    margin: 0 auto;
    max-width: 320px;
    order: 3;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .cw-risk-box,
  .cw-risk-box--top-left,
  .cw-risk-box--top-center,
  .cw-risk-box--top-right,
  .cw-risk-box--bottom-left,
  .cw-risk-box--bottom-right {
    left: auto;
    max-width: none;
    min-height: 0;
    order: 4;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .cw-risk-box--top-left,
  .cw-risk-box--top-center,
  .cw-risk-box--top-right {
    order: 1;
  }

  .cw-risk-box:hover,
  .cw-risk-box--top-center:hover {
    transform: translateY(-3px);
  }

  .tax-pain-section .cw-risk-map {
    gap: 14px;
    margin-top: 28px;
  }

  .tax-pain-section .cw-risk-map__center {
    height: auto;
    max-width: 300px;
    order: 1;
    padding: 18px;
    width: 100%;
  }

  .tax-pain-section .cw-risk-box,
  .cw-risk-box--pain-left-1,
  .cw-risk-box--pain-left-2,
  .cw-risk-box--pain-left-3,
  .cw-risk-box--pain-right-1,
  .cw-risk-box--pain-right-2,
  .cw-risk-box--pain-right-3 {
    left: auto;
    max-width: none;
    order: 2;
    right: auto;
    top: auto;
    width: 100%;
  }

  .tax-pain-section .cw-risk-box::after {
    display: none;
  }

  .subject-solution-section {
    padding: 52px 0 68px;
  }

  .subject-solution-grid {
    grid-template-columns: 1fr;
  }

  .subject-solution-section .cw-card {
    min-height: 0;
    padding: 34px 24px;
  }

  .cw-quotes {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .cw-quote,
  .cw-quote:nth-child(2) {
    min-height: 230px;
    padding: 36px 22px 20px;
    transform: none;
  }

  .cw-quote:hover,
  .cw-quote:focus-visible,
  .cw-quote:nth-child(2):hover,
  .cw-quote:nth-child(2):focus-visible {
    transform: translateY(-4px);
  }

  .cw-quote-modal {
    padding: 18px;
  }

  .cw-quote-modal__panel {
    max-height: calc(100vh - 36px);
    padding: 48px 24px 30px;
  }

  .cw-quote-modal__body {
    font-size: 16px;
  }

  .subject-compare-section .cw-compare {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .subject-compare-section .cw-compare__side {
    min-height: 0;
    padding: 28px 24px;
  }

  .subject-compare-section .cw-compare__side h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .subject-compare-section .cw-compare__vs {
    background: rgba(0, 96, 172, .92);
    border: 3px solid #fff;
    border-radius: 50%;
    display: grid;
    font-size: 28px;
    height: 74px;
    left: 50%;
    place-items: center;
    top: 50%;
    width: 74px;
  }

  .tax-choice-grid {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .tax-choice-card {
    min-height: 280px;
  }

  .tax-choice-card:not(:last-child)::after {
    display: none;
  }

  .tax-seller-grid {
    gap: 34px 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
  }

  .supply-advantage-grid {
    border-right: 0;
    gap: 48px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .supply-advantage-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .tax-choice-grid {
    grid-template-columns: 1fr;
  }

  .tax-choice-card {
    min-height: 240px;
  }

  .tax-seller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tax-seller-card h3 {
    font-size: 18px;
  }

  .supply-advantage-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .supply-advantage-card {
    padding-top: 34px;
  }

  .supply-advantage-card::before,
  .supply-advantage-card::after {
    display: none;
  }
}
