/**
 * HOSTSECURITY 云安全行业方案落地页样式
 */

.hostsecurity-page {
  color: var(--on-surface, #1a1a1a);
  line-height: 1.5;
  isolation: isolate;
  overflow-x: visible;
  --page-main-min-h: var(--page-main-min-height);
}

/* ── Hero ── */
.hero {
  padding: 0;
  margin: 0;
  background: #e2edfa;
}

.hero-btns {
  margin-bottom: 20px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, calc(100vw * 10 / 1440), 10px);
}

.hero-chips {
  margin-top: 30px;
}

.hero-title{
  max-width:  clamp(200px, calc(100vw * 420 / 1440), 420px);;
}



/* ── 滚动动画 ── */
.hostsecurity-page .sds-fade,
.hero .sds-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hostsecurity-page .sds-fade.in,
.hero .sds-fade.in {
  opacity: 1;
  transform: none;
}

.hostsecurity-page .sds-rise {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hostsecurity-page .sds-rise.in {
  opacity: 1;
  transform: none;
}

/* 入场完成后，hover 位移用匀速过渡 */
.hostsecurity-page .hs-feature-tab.sds-rise.in,
.hostsecurity-page .hs-feature-card.sds-rise.in,
.hostsecurity-page .hs-industry-card.sds-rise.in {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.2s linear,
    box-shadow 0.2s linear,
    background 0.25s linear,
    border-color 0.25s linear,
    color 0.25s linear;
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .hostsecurity-page .sds-fade,
  .hostsecurity-page .sds-rise,
  .hero .sds-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 通用区块标题 ── */
.hs-sec-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(32px, calc(100vw * 40 / 1440), 40px);
}

.hs-sec-title {
  margin: 0 0 clamp(12px, calc(100vw * 16 / 1440), 16px);
  font-size: clamp(24px, calc(100vw * 32 / 1440), 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.hs-sec-desc {
  margin: 0;
  font-size: var(--fs-14, 14px);
  line-height: 1.75;
  color: var(--primary-dec, #64748b);
}

/* ── Block 1：特色能力 ── */
.hs-feature {
  background: linear-gradient(180deg, #639ce133 0%, #639ce113 60%, #639ce100 100%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  background-size: 100% 198px, 100% 100%;
  background-repeat: no-repeat;
  background-position: top, top;
  padding: clamp(48px, calc(100vw * 72 / 1440), 72px) 0;
}

.hs-feature-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, calc(100vw * 16 / 1440), 16px);
  margin-bottom: clamp(36px, calc(100vw * 48 / 1440), 48px);
}

.hs-feature-tab {
  display: flex;
  gap: clamp(10px, calc(100vw * 14 / 1440), 14px);
  min-height: clamp(72px, calc(100vw * 100 / 1440), 100px);
  padding: clamp(14px, calc(100vw * 20 / 1440), 20px) clamp(16px, calc(100vw * 30 / 1440), 30px);
  background: linear-gradient(112deg, #b8d0ff1a 14%, #b8d0ff00 90%);
  border-radius: var(--r8, 8px);
  text-align: left;
  transition: transform 0.2s linear, box-shadow 0.2s linear, background 0.25s linear, border-color 0.25s linear, color 0.25s linear;
}

.hs-feature-tab-icon {
  flex-shrink: 0;
  width: clamp(20px, calc(100vw * 40 / 1440), 40px);
  height: clamp(20px, calc(100vw * 40 / 1440), 40px);
  object-fit: contain;
}

.hs-feature-tab-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hs-feature-tab-title {
  font-size:var(--fs-24);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  position: relative;
  margin-bottom: 6px;
}
.hs-feature-tab-title::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 25px;
  height: 1px;
  background: #B4CAE0;
  border-radius: 1px;
}

.hs-feature-tab-desc {
  font-size: var(--fs-14);
  line-height: 1.5;
  color: var(--primary-dec, #64748b);
}

@media (hover: hover) {
  .hostsecurity-page .hs-feature-tab.sds-rise.in:hover,
  .hostsecurity-page .hs-feature-tab:hover {
    transform: translateY(-4px);
    background: linear-gradient(249deg, #023d73 1%, #02569b 66%, #014a86 99%), linear-gradient(112deg, #b8d0ff1a 14%, #b8d0ff00 90%);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 87, 156, 0.22);
  }

  .hs-feature-tab:hover .hs-feature-tab-title,
  .hs-feature-tab:hover .hs-feature-tab-desc {
    color: #fff;
  }
}

.hs-feature-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(36px, calc(100vw * 48 / 1440), 48px);
}

.hs-feature-title {
  margin: 0 0 clamp(12px, calc(100vw * 16 / 1440), 16px);
  font-size: clamp(24px, calc(100vw * 32 / 1440), 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.hs-feature-desc {
  margin: 0;
  font-size: var(--fs-14, 14px);
  line-height: 1.75;
  color: var(--primary-dec, #64748b);
}

.hs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, calc(100vw * 20 / 1440), 20px);
}

.hs-feature-card {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, calc(100vw * 18 / 1440), 18px);
  padding: clamp(28px, calc(100vw * 36 / 1440), 36px) clamp(20px, calc(100vw * 24 / 1440), 24px);
  border-radius: var(--r12, 12px);
  background: linear-gradient(311deg, #f7fafc 10%, #f7fafc 10%, #f7fafc00 85%), #FFFFFF;
  transition: transform 0.2s linear, box-shadow 0.2s linear;
}

@media (hover: hover) {
  .hostsecurity-page .hs-feature-card.sds-rise.in:hover,
  .hostsecurity-page .hs-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  }
}

.hs-feature-card-icon {
  flex-shrink: 0;
  width: clamp(24px, calc(100vw * 40 / 1440), 40px);
  height: clamp(24px, calc(100vw * 40 / 1440), 40px);
  object-fit: contain;
}

.hs-feature-card-title {
  margin: 0;
  font-size: clamp(16px, calc(100vw * 18 / 1440), 18px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.hs-feature-card-desc {
  margin: 0;
  font-size: var(--fs-14, 14px);
  line-height: 1.7;
  color: var(--primary-dec, #64748b);
}

/* ── Block 2：方案架构 ── */
.hs-arch {
  background: #f8fafc;
  padding: clamp(48px, calc(100vw * 72 / 1440), 72px) 0;
}

.hs-arch-visual {
  max-width: 1200px;
  margin: 0 auto;
}

.hs-arch-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Block 3：云与安全深度融合（通栏背景 + 1440 内容） ── */
.hs-value {
  position: relative;
  padding: 0;
  background: #fff;
  isolation: isolate;
  --hs-value-block-h: clamp(420px, calc(100vw * 500 / 1440), 500px);
  --hs-value-bg-w: calc(
    (100vw - min(var(--container-max, 1440px), 100vw)) / 2
    + var(--container-px, 24px)
    + (min(var(--container-max, 1440px), 100vw) - 2 * var(--container-px, 24px)) * 0.4
  );
}

.hs-value::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--hs-value-bg-w);
  z-index: 0;
  background-color: var(--primary, #00579c);
  background-image:url('/static/skin/images/hostSecurity/block-4-bg.webp');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 45% auto;
  pointer-events: none;
}

.hs-value > .container {
  position: relative;
  z-index: 1;
}

.hs-value-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: stretch;
  height: var(--hs-value-block-h);
}

.hs-value-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  width: 100%;
  max-width: min(100%, clamp(280px, calc(100vw * 440 / 1440), 440px));
  height: 100%;
  padding: clamp(48px, calc(100vw * 72 / 1440), 72px) clamp(20px, calc(100vw * 32 / 1440), 32px) clamp(48px, calc(100vw * 72 / 1440), 72px) 0;
  color: #fff;
  box-sizing: border-box;
}

.hs-value-lead > * {
  position: relative;
  z-index: 1;
}

.hs-value-title {
  margin: 0 0 clamp(16px, calc(100vw * 24 / 1440), 24px);
  font-size: clamp(22px, calc(100vw * 28 / 1440), 28px);
  font-weight: 700;
  line-height: 1.4;
}

.hs-value-desc {
  margin: 0;
  font-size: var(--fs-14, 14px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.hs-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  height: var(--hs-value-block-h);
  box-sizing: border-box;
  background: #fff;
  padding: clamp(24px, calc(100vw * 32 / 1440), 32px) clamp(20px, calc(100vw * 28 / 1440), 28px);
  overflow: hidden;
}

@media (hover: hover) and (min-width: 769px) {
  .hs-value-grid.hs-value-grid--ready {
    transition:
      grid-template-columns 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.hs-value-item {
  position: relative;
  z-index: 0;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 0;
  border-bottom: 1px solid #eef2f7;
  border-right: 1px solid #eef2f7;
}

.hs-value-item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(16px, calc(100vw * 20 / 1440), 20px) clamp(20px, calc(100vw * 28 / 1440), 28px);
  transition: background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.hs-value-item:nth-child(2n) {
  border-right: none;
}

.hs-value-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.hs-value-num {
  display: block;
  flex-shrink: 0;
  margin: 0;
  font-size: clamp(18px, calc(100vw * 22 / 1440), 22px);
  font-weight: 700;
  color: var(--primary, #00579c);
  line-height: 1;
}

.hs-value-item-title {
  margin: 0;
  flex-shrink: 0;
  font-size: var(--fs-20);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  transition: font-size 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-value-item-desc {
  margin: 0;
  flex-shrink: 0;
  font-size: var(--fs-14, 14px);
  line-height: 1.7;
  color: var(--primary-dec, #64748b);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: calc(var(--fs-14, 14px) * 1.7 * 2);
}

@media (hover: hover) and (min-width: 769px) {
  .hs-value-grid[data-hover='1'],
  .hs-value-grid[data-hover='3'],
  .hs-value-grid[data-hover='5'] {
    grid-template-columns: 1.28fr 0.72fr;
  }

  .hs-value-grid[data-hover='2'],
  .hs-value-grid[data-hover='4'],
  .hs-value-grid[data-hover='6'] {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .hs-value-grid[data-hover='1'],
  .hs-value-grid[data-hover='2'] {
    grid-template-rows: 1.28fr 0.86fr 0.86fr;
  }

  .hs-value-grid[data-hover='3'],
  .hs-value-grid[data-hover='4'] {
    grid-template-rows: 0.86fr 1.28fr 0.86fr;
  }

  .hs-value-grid[data-hover='5'],
  .hs-value-grid[data-hover='6'] {
    grid-template-rows: 0.86fr 0.86fr 1.28fr;
  }

  .hs-value-item.is-hover {
    z-index: 1;
  }

  .hs-value-item.is-hover .hs-value-item-body {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  }

  .hs-value-item.is-hover .hs-value-item-title {
    font-size: var(--fs-22);
  }
}

@media (hover: hover) and (max-width: 768px) {
  .hs-value-item.is-hover .hs-value-item-body {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  }

  .hs-value-item.is-hover .hs-value-item-title {
    font-size: var(--fs-22);
  }
}

/* ── Block 4：合规资质 ── */
.hs-comp {
  background: #f8fafc;
  padding: clamp(48px, calc(100vw * 72 / 1440), 72px) 0;
}

.hs-comp-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, calc(100vw * 12 / 1440), 12px);
  margin-bottom: clamp(24px, calc(100vw * 32 / 1440), 32px);
}

.hs-comp-tab {
  padding: 10px 28px;
  border: 1px solid rgba(193, 199, 212, 0.5);
  border-radius: var(--r8, 8px);
  background: #fff;
  font-size: var(--fs-14, 14px);
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.hs-comp-tab:hover {
  border-color: #B8D0FF;
}

.hs-comp-tab.is-active {
  background: linear-gradient(236deg, #023d73 2%, #02569b 66%, #014a86 98%), #00579c;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 87, 156, 0.22);
}

.hs-comp-panel[hidden] {
  display: none;
}

.hs-comp-card {
  display: grid;
  grid-template-columns: minmax(0, 0.26fr) minmax(0, 0.74fr);
  background: linear-gradient(112deg, #b8d0ff33 4%, #b8d0ff00 45%), #FFFFFF;
  border-radius: var(--r12, 12px);
  overflow: hidden;
  margin-bottom: clamp(16px, calc(100vw * 20 / 1440), 20px);
}

.hs-comp-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, calc(100vw * 36 / 1440), 36px) clamp(24px, calc(100vw * 32 / 1440), 32px);
  background: linear-gradient(236deg, #023d73 2%, #02569b 66%, #014a86 98%), #00579c;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hs-comp-aside-title {
  margin: 0 0 12px;
  font-size: clamp(18px, calc(100vw * 22 / 1440), 22px);
  font-weight: 700;
  line-height: 1.35;
}

.hs-comp-aside-desc {
  margin: 0;
  font-size: var(--fs-14, 14px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.hs-comp-list {
  list-style: none;
  margin: 0;
  padding: clamp(24px, calc(100vw * 32 / 1440), 32px) clamp(20px, calc(100vw * 28 / 1440), 28px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, calc(100vw * 20 / 1440), 20px) clamp(12px, calc(100vw * 16 / 1440), 16px);
  align-content: center;
}

.hs-comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fs-14, 14px);
  line-height: 1.6;
  color: #414752;
}

.hs-comp-list-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  object-fit: contain;
}

.hs-comp-note {
  margin: 0;
  text-align: center;
  font-size: var(--fs-12, 12px);
  line-height: 1.6;
  color: #94a3b8;
}

/* ── Block 5：适配行业场景 ── */
.hs-industry {
  background: #fff;
  padding: clamp(48px, calc(100vw * 72 / 1440), 72px) 0;
}

.hs-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, calc(100vw * 20 / 1440), 20px);
}

.hs-industry-card {
  position: relative;
  min-height: clamp(160px, calc(100vw * 200 / 1440), 200px);
  padding: clamp(24px, calc(100vw * 28 / 1440), 28px);
  padding-right: clamp(100px, calc(100vw * 140 / 1440), 140px);
  border-radius: var(--r8, 8px);
  background: linear-gradient(117deg, #e2edfa66 14%, #e2edfa00 90%), #FFFFFF;
  overflow: hidden;
  transition: transform 0.2s linear, box-shadow 0.2s linear;
}

@media (hover: hover) {
  .hostsecurity-page .hs-industry-card.sds-rise.in:hover,
  .hostsecurity-page .hs-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(17, 83, 145, 0.1);
  }
}

.hs-industry-card-title {
  margin: 0 0 10px;
  font-size: clamp(16px, calc(100vw * 18 / 1440), 18px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.hs-industry-card-desc {
  margin: 0;
  font-size: var(--fs-14, 14px);
  line-height: 1.7;
  color: var(--primary-dec, #64748b);
  max-width: 280px;
}

.hs-industry-card-deco {
  position: absolute;
  right: clamp(8px, calc(100vw * 12 / 1440), 12px);
  bottom: clamp(4px, calc(100vw * -8 / 1440), -8px);
  width: clamp(80px, calc(100vw * 120 / 1440), 120px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

/* ── CTA ── */
.sds-cta {
  background: linear-gradient(180deg, #639ce10f 0%, #639ce104 60%, #639ce100 100%), #FFFFFF;
}

.sds-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, calc(100vw * 56 / 1440), 56px);
  align-items: start;
}

.sds-cta-title {
  font-size: clamp(24px, calc(100vw * 36 / 1440), 36px);
  font-weight: 700;
  color: #181c22;
  line-height: 1.35;
  margin: 0 0 16px;
}

.sds-cta-desc {
  font-size: clamp(13px, calc(100vw * 15 / 1440), 15px);
  color: #414752;
  line-height: 1.7;
  margin: 0 0 clamp(24px, calc(100vw * 32 / 1440), 32px);
}

.sds-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sds-cta-btn {
  padding: 10px 20px;
  border-radius: var(--r8);
  background: rgba(0, 87, 156, 0.05);
  box-sizing: border-box;
  border: 1px solid rgba(0, 87, 156, 0.1);
  color: var(--primary, #00579c);
  font-size: var(--fs-14, 14px);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sds-cta-btn:hover {
  background: var(--primary, #00579c);
  color: #fff;
}

.sds-cta-form {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8edf3;
  padding: clamp(20px, calc(100vw * 28 / 1440), 28px);
  box-shadow: 0 4px 20px rgba(17, 83, 145, 0.06);
}

.sds-cta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.sds-cta-field--full {
  grid-column: 1 / -1;
}

.sds-cta-input,
.sds-cta-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: var(--fs-16, 16px);
  color: #00579c;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.sds-cta-input::placeholder {
  color: #94a3b8;
}

.sds-cta-select {
  color: #414752;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.sds-cta-input:focus,
.sds-cta-select:focus {
  outline: none;
  border-color: #00579c;
}

.sds-cta-form-note {
  font-size: var(--fs-12, 12px);
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 16px;
}

.sds-cta-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #00579c;
  color: #fff;
  font-size: var(--fs-16, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.sds-cta-submit:hover {
  background: #004882;
}

/* ── 响应式 ── */
@media (max-width: 992px) {
  .hs-feature-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-feature-grid,
  .hs-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-value-inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hs-value-grid {
    height: auto;
    min-height: var(--hs-value-block-h);
    padding-left: 0;
    padding-right: 0;
  }

  .hs-value::before {
    display: none;
  }

  .hs-value-lead {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    align-items: center;
    text-align: center;
    padding: clamp(40px, calc(100vw * 56 / 1440), 56px) var(--container-px, 24px);
    background-color: var(--primary, #00579c);
    background-image:
      linear-gradient(135deg, rgba(2, 61, 115, 0.78) 0%, rgba(0, 87, 156, 0.62) 100%),
      url('/static/skin/images/hostSecurity/block-4-bg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .hs-comp-card {
    grid-template-columns: 1fr;
  }

  .hs-comp-aside {
    clip-path: none;
  }

  .hs-comp-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hs-feature-nav,
  .hs-feature-grid,
  .hs-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-value-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: auto;
    min-height: var(--hs-value-block-h);
    padding-left: 0;
    padding-right: 0;
  }

  .hs-comp-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, calc(100vw * 12 / 1440), 12px);
  }

  .hs-comp-tab {
    text-align: center;
  }

  .hs-comp-list {
    grid-template-columns: 1fr;
  }

  .sds-cta-inner {
    grid-template-columns: 1fr;
  }

  .sds-cta-form-grid {
    grid-template-columns: 1fr;
  }


  .sds-cta-btn {
    text-align: center;
    padding: 10px ;
  }

  .hs-industry-card{
    padding: 15px;
  }
  .hs-industry-card-deco{
     right: 0;
     bottom: -10px;
     width: 60px;
  }
  .hs-industry-card-desc{
    min-width: 100%;
    position: relative;
    z-index: 2;
  }
  .hs-feature-card{
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hs-comp-tab {
    padding: 10px 16px;
  }
}
