/* ===================================================================
 * 灵基官网 — Figma 节点 67:5018 1:1 还原
 * 最大宽度 1440px · Flex 布局 · 无绝对/相对定位
 * =================================================================== */

/* ============== 0 · Reset & Tokens ============== */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; width: 100vw; }
body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial,
               "Noto Sans SC", system-ui, sans-serif;
  background: #F5F7FA;
  color: rgba(0,0,0,.94);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }
ul,li { list-style: none; margin: 0; padding: 0; }

:root {
  --max-w: 100%;
  --grad-brand: linear-gradient(90deg, #998DFF 0%, #576DFF 50%, #65B2FF 100%);
  --grad-soft:  linear-gradient(180deg, rgba(197,220,254,1) 0%, rgba(217,225,254,1) 25%, rgba(246,242,255,1) 64%, rgba(255,255,255,1) 100%);
  --grad-cta:   linear-gradient(180deg, rgba(197,220,254,1) 0%, rgba(217,225,254,1) 25%, rgba(246,242,255,1) 82%, rgba(255,255,255,1) 100%);
  --c-text-1: rgba(0,0,0,.94);
  --c-text-2: rgba(0,0,0,.64);
  --shadow-card: 0 8px 20px rgba(224,233,255,1);
  --shadow-banner: 0 8px 20px rgba(202,222,254,.56);
  --t-fast: .2s cubic-bezier(.4,0,.2,1);
  --t-base: .35s cubic-bezier(.4,0,.2,1);
  --t-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* ============== 1 · 页面结构（Flex 垂直堆叠） ============== */
.stage {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  margin-top: 103px;
  background: #FFFFFF;
}

/* ============== 2 · 背景层 ============== */
.bg-mask {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  width: 100%;
  height: 1250px;
  overflow: hidden;
  background: url("/r/cms/www/default/v02/images/lingji/lingjiPage/hero-mask.png") center top / cover no-repeat;
}
/* .bg-soft {
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
  flex-shrink: 0;
  width: 100%;
  height: 1827px;
  background: var(--grad-soft);
  opacity: .6;
} */

/* ============== 3 · 通用按钮 / 链接 ============== */
.btn {
  position: relative;
  overflow: hidden;
  height: 36px;
  padding: 0 24px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-base);
}
.btn--primary {
  background: var(--grad-brand);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(87,109,255,.18);
}
.btn--apply {
  background: #FFFFFF;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(87,109,255,.22); }
.btn--primary:active { transform: translateY(0); }
.btn__txt { position: relative; z-index: 1; }

/* PC */
.pc {
  display: inline-block;
}
.mobile {
  display: none;
}

.fx-ripple .ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  transform: scale(0);
  pointer-events: none;
  animation: ripple .65s linear;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.hero__link {
  display: inline-flex;
  align-items: baseline;
  font-size: 16px;
  line-height: 24px;
  color: var(--c-text-2);
  transition: color var(--t-fast);
}
.hero__link-em {
  position: relative;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__link-em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.hero__link:hover .hero__link-em::after { transform: scaleX(1); }

/* ============== 4 · 区块 1：首屏语句 ============== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 40px 60px;
  gap: 40px;
}
.hero__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__title {
  margin: 0;
  font-family: "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.4;
  letter-spacing: 2px;
  text-align: center;
  background: linear-gradient(180deg, #1A1A1A 0%, #4A4F73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroIn .9s cubic-bezier(.4,0,.2,1) both;
  font-size: 48px;
}
.hero__sub {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--c-text-2);
  text-align: center;
  max-width: 800px;
  animation: heroIn 1s cubic-bezier(.4,0,.2,1) .12s both;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: heroIn 1s cubic-bezier(.4,0,.2,1) .24s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== 5 · 区块 2：Segmented 切换 ============== */
.segctl-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.segctl {
  position: relative;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(0,0,0,.03);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(87,109,255,.06);
  animation: heroIn 1s cubic-bezier(.4,0,.2,1) .36s both;
}
.segctl__item {
  position: relative;
  z-index: 2;
  padding: 4px 24px;
  min-width: 60px;
  border-radius: 16px;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-text-2);
  transition: color var(--t-fast);
  cursor: pointer;
}
.segctl__item:hover { color: var(--c-text-1); }
.segctl__item.is-active {
  color: var(--c-text-1);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
}
.segctl__thumb {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(87,109,255,.18);
  transition: transform var(--t-base), width var(--t-base);
}

/* ============== 6 · 区块 3：Banner ============== */
.banner-section {
  display: flex;
  justify-content: center;
  width: 63%;
  margin: 0 auto;
  box-shadow: var(--shadow-banner);
  border: 1px solid #D6DCFF;
  border-radius: 16px;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  overflow: hidden;
}

/* ============== 7 · 通用区块标题 ============== */
.head { display: flex; flex-direction: column; gap: 12px; }
.head--center { align-items: center; text-align: center; }
.title-l {
  margin: 0;
  font-family: "Microsoft YaHei", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.6;
  color: var(--c-text-1);
}
.desc {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--c-text-2);
  max-width: 880px;
}

/* ============== 8 · 区块 4：客户区 ============== */
.customers {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 40px;
}
.customers .title-l { text-align: center; }
.customers__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
}
.customers__cell {
  width: 100%;
  max-width: 200px;
  height: 104px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base);
}
.customers__cell img { max-width: 144px; max-height: 40px; object-fit: contain; }
.customers__cell:hover { transform: translateY(-6px); }

/* ============== 9 · 区块 5：AI 卡片 ============== */
.ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 40px 80px;
  gap: 60px;
}
.ai__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
}
.ai-card {
  flex: 1;
  min-width: 280px;
  max-width: 460px;
  padding: 24px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t-base);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.ai-card--blue   { background: linear-gradient(180deg, rgba(209,222,255,1) 0%, rgba(232,241,255,1) 100%); }
.ai-card--purple { background: linear-gradient(180deg, rgba(229,223,254,1) 0%, rgba(243,242,255,1) 100%); }
.ai-card--pink   { background: linear-gradient(0deg, rgba(255,243,242,1) 5%, rgba(250,220,216,1) 100%); }
.ai-card:hover { transform: translateY(-6px); }
.ai-card__icon {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: visible;
}
.ai-card__icon svg {
  position: absolute;
  left: -20px; top: -12px;
  width: 100px; height: 100px;
  pointer-events: none;
}
.ai-card__txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 4px;
}
.ai-card__title {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--c-text-1);
}
.ai-card__desc {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--c-text-2);
}

/* ============== 10 · 区块 6：能力区 ============== */
.cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 80px;
}
.cap__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
  max-width: 1440px;
}
.cap-row {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.cap-row--reverse {
  flex-direction: row-reverse;
}
.cap-row__media {
  flex: 1;
  min-width: 0;
  aspect-ratio: 800 / 520;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--t-slow);
}
.cap-row__media--blue {
  background: linear-gradient(135deg, rgba(209, 222, 255, 1) 0%, rgba(232, 241, 255, 1) 100%);
}
.cap-row__media--purple {
  background: linear-gradient(135deg, rgba(235, 228, 255, 1) 0%, rgba(245, 241, 255, 1) 100%);
}
.cap-row__media--cyan {
  background: linear-gradient(135deg, rgba(200, 240, 255, 1) 0%, rgba(230, 248, 255, 1) 100%);
}
.cap-row__media--pink {
  background: linear-gradient(135deg, rgba(255, 238, 235, 1) 0%, rgba(255, 225, 220, 1) 100%);
}
.cap-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.cap-row:hover .cap-row__media {
  box-shadow: 0 24px 70px rgba(87, 109, 255, 0.12);
}
.cap-row:hover .cap-row__media img {
  transform: scale(1.03);
}
.cap-row__txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}
.cap-row__title {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.5;
  color: var(--c-text-1);
}
.cap-row__desc {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.8;
  color: var(--c-text-2);
}

/* ============== 11 · 区块 7：财务 ============== */
.finance {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 60px;
  background: linear-gradient(180deg, rgba(240, 245, 255, 1) 0%, rgba(248, 250, 255, 1) 100%);
}
.finance__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.finance__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}
.finance__lead .desc { text-align: center; }
.finance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1440px;
  width: 100%;
}
.agent {
  width: 100%;
  min-height: 256px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.5) 100%);
  border-radius: 24px;
  box-shadow: 0 8px 20px 0 rgba(224,233,255,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.agent:hover { transform: translateY(-6px); box-shadow: 0 12px 24px 0 rgba(200,213,250,.5); }
.agent__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent__icon img { width: 32px; height: 32px; display: block; }
.agent__txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.agent__title {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.94);
}
.agent__desc {
  margin: 0;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.64);
  word-break: break-word;
}

/* ============== 12 · 区块 8：安全 ============== */
.trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 60px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 1) 0%, rgba(240, 245, 255, 1) 100%);
}
.trust__row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1440px;
}
.trust__badge {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(15%) opacity(.92);
  transition: transform var(--t-base), filter var(--t-base);
}
.trust__badge img { max-width: 100%; max-height: 100%; object-fit: contain; }
.trust__badge:hover { transform: translateY(-6px) scale(1.06); filter: grayscale(0%) opacity(1); }

/* ============== 13 · 区块 9：FAQ ============== */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 40px;
  background: linear-gradient(180deg, rgba(240, 245, 255, 1) 0%, rgba(248, 250, 255, 1) 100%);
}
.faq .title-l { text-align: center; }
.faq__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
}
.faq__item { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.faq__sum {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
}
.faq__sum::-webkit-details-marker { display: none; }
.faq__q {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: #0D0D0D;
  flex: 1;
}
.faq__icon {
  position: relative;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: rgba(0, 0, 0, 0.64);
  border-radius: 1px;
  transition: opacity var(--t-base), transform var(--t-base);
}
.faq__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq__body {
  padding: 0 0 22px 36px;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: clamp(14px, 1vw, 14px);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.64);
  animation: faqOpen .35s cubic-bezier(.4,0,.2,1);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== 14 · 区块 10：CTA ============== */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  background: linear-gradient(180deg, rgba(235, 240, 255, 1) 0%, rgba(245, 248, 255, 1) 100%);
  gap: 32px;
}
.cta__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta__title {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 48px);
  line-height: 1.4;
  color: #1A1A1A;
  text-align: center;
}
.cta__desc {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.64);
  text-align: center;
  max-width: 800px;
}
.cta__btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta__link {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.56);
}
.cta__link-a {
  color: #6B5CF6;
  text-decoration: none;
}
.cta__link-a:hover {
  text-decoration: underline;
}

/* ============== 15 · 滚动渐入 ============== */
.fx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.fx-reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* ============== 16 · 响应式适配 ============== */
@media (max-width: 1440px) {
  .customers__list { grid-template-columns: repeat(3, 1fr); }
  .ai__row { gap: 20px; }
  .ai-card { max-width: 320px; }
  .finance__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 42px;
  }
  .cap-row { flex-direction: column !important; gap: 32px; }
  .cap-row__media { 
    width: 100%; 
    aspect-ratio: 375 / 220;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  }
  .cap-row__txt { 
    padding: 0 !important; 
    /* text-align: center; 
    align-items: center; */
    gap: 16px;
  }
  .cap-row__title { 
    white-space: normal;
    font-size: clamp(24px, 5vw, 30px);
    font-weight: 600;
    line-height: 1.4;
  }
  .cap-row__desc {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .mobile {
    display: inline-block;
  }
  .hero__cta {
    gap: 5px;
  }
  .banner-mo {
    position: relative;
    width: 90%;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 35px;
  }
  .banner-mo img {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 2;
  }
  .hero { padding: 60px 24px 40px; }
  .banner-section { padding: 24px 24px 0; }
  .customers { padding: 60px 24px; position: relative; }
  .customers .title-l {
    font-size: clamp(22px, 5vw, 28px);
    color: var(--c-text-1);
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    position: relative;
  }
  .customers__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .customers__cell { height: 80px; }
  .ai { padding: 60px 24px; }
  .ai__row { flex-direction: column; align-items: center; }
  .ai-card { max-width: 100%; width: 100%; }
  .cap { padding: 60px 24px; }
  .cap__list { gap: 60px; }
  .cap-row__media {
    aspect-ratio: 343 / 200;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  }
  .cap-row__txt {
    max-width: 100%;
  }
  .cap-row__title {
    font-size: clamp(22px, 5.5vw, 28px);
  }
  .cap-row__desc {
    font-size: clamp(14px, 3vw, 15px);
  }
  .finance { padding: 60px 24px; }
  .finance__grid { grid-template-columns: 1fr; gap: 16px; }
  .agent { min-height: auto; }
  .trust { padding: 60px 24px; }
  .trust__row { gap: 24px; }
  .trust__badge { width: 80px; height: 80px; }
  .faq { padding: 60px 24px; }
  .faq__list { width: 100%; }
  .cta { 
    padding: 40px 24px 150px;
    position: relative;
  }
  .cta__btns { 
    gap: 15px;
    flex-direction: column;
    position: absolute;
    bottom: 50px;
  }
  .fx-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero { padding: 40px 16px 32px; gap: 24px; }
  .hero__title { letter-spacing: 1px; }
  .segctl { transform: scale(0.9); }
  .banner-section { padding: 16px 16px 0; }
  .customers,
  .ai,
  .cap,
  .finance,
  .trust,
  .faq { padding: 40px 16px; position: relative; }
  .customers .title-l {
    font-size: clamp(22px, 5vw, 26px);
    color: var(--c-text-1);
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    position: relative;
  }
  .customers__list { gap: 12px; }
  .customers__cell { height: 64px; padding: 16px 8px; }
  .customers__cell img { max-width: 100px; max-height: 32px; }
  .cap__list { gap: 40px; }
  .finance__grid { gap: 12px; }
  .trust__row { gap: 16px; }
  .trust__badge { width: 64px; height: 64px; }
  .cta__btns { gap: 15px; }
}