.hero {
  position: relative;
  min-height: 10rem;
  padding-top: var(--header-height);
  color: #fff;
}

.hero__visual {
  position: absolute;
  inset: 0 0 0;
  overflow: hidden;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
}

.hero__kicker {
  margin: 0 0 .26rem;
  font-size: .22rem;
  font-weight: 500;
  opacity: 0.96;
}

.hero__title {
  margin: 0 0 .42rem;
  font-size: .44rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-metrics {
  position: absolute;
  left: 50%;
  bottom: -26%;
  z-index: 3;
  padding: .42rem 0;
  border-radius: .26rem;
  box-shadow: 0 30px 80px rgba(198, 0, 0, 0.28);
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.hero-metrics-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 .94rem;
}

.hero-metrics__item {
  position: relative;
  z-index: 1;
  padding: 0 .58rem;
  text-align: center;
}

.hero-metrics__item+.hero-metrics__item {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-metrics__num {
  display: block;
  margin-bottom: .22rem;
  font-size: .32rem;
  font-weight: 800;
}

.hero-metrics h2 {
  margin: 0 0 .22rem;
  font-size: .24rem;
  font-weight: 700;
}

.hero-metrics p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: .16rem;
}

.hero-metrics__caption {
  width: 100%;
  margin: .5rem 0 0;
  text-align: center;
  font-size: .22rem;
}

.about-section {
  padding-top: 4.38rem;
}

.about-intro {
  display: flex;
  align-items: self-start;
  margin-bottom: .96rem;
}

.about-intro__copy {
  width: 5.76rem;
}

.about-intro__copy h3 {
  margin: 0 0 .22rem;
  font-size: .3rem;
  font-weight: 500;
}

.about-intro__copy p {
  color: var(--color-muted);
  font-size: .14rem;
}

.about-intro__image {
  position: relative;
  width: 6.89rem;
  border-radius: .28rem;
  margin-left: auto;
  overflow: hidden;
}

.about-intro__image .image {
  width: 100%;
}

.about-intro__image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .56rem;
  transform: translate(-50%, -50%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stats-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 0.75px;
  background: var(--color-line);
}

.stat-card {
  position: relative;
  padding: .5rem .3rem;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: .75px;
  height: calc(100% - 100px);
  background: var(--color-line);
  transform: translateY(-50%);
}

.stat-card:nth-child(5n+1)::before {
  display: none;
}

.stat-card strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--color-red);
  font-size: .36rem;
  font-weight: 700;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: #4d4d4d;
  font-size: .16rem;
  line-height: 1.8;
}


.choose-section {
  padding-top: .92rem;
}

.choose-layout {
  display: flex;
  width: 100%;
}

.choose-tabs {
  display: flex;
  flex-direction: column;
  width: 5.54rem;
}

.choose-tab {
  border: 0;
  border-radius: .14rem;
  padding: .48rem .44rem;
  text-align: left;
  color: #999;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.choose-tab+.choose-tab {
  margin-top: .15rem;
}

.choose-tab h3 {
  font-size: .26rem;
  line-height: 1;
}

.choose-tab .text-wrap {
  display: none;
  margin-top: .36rem;
  font-size: .12rem;
  line-height: 1.56;
}

.choose-tab.is-active {
  color: #fff;
  /* background: linear-gradient(135deg, var(--color-red), var(--color-red-dark)); */
  background-image: url(../images/choose-bg-small.jpg);
  box-shadow: 0 18px 44px rgba(214, 0, 0, 0.22);
  border: none;
}

.choose-tab.is-active .text-wrap {
  display: block;
}

.choose-media {
  position: relative;
  width: calc(100% - 5.54rem);
  padding-left: 1.18rem;
}

.choose-media .choose-swiper {
  border-radius: .28rem;
}

.choose-media__image {
  border-radius: .18rem;
  width: 100%;
  overflow: hidden;
}

.choose-media__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.services-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* max-height: 10.84rem; */
  padding: .66rem 0 1.08rem;
  overflow: hidden;
}

.services-section__inner {
  /* position: absolute;
  top: 50%;
  left: 50%; */
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* transform: translate(-50%, -50%); */
  color: #fff;
}

.service-copy {
  white-space: nowrap;
}

.line-decor {
  width: 38px;
  height: 1px;
  background: #fff;
}

.service-copy h3 {
  display: block;
  margin-bottom: .26rem;
  color: #dcdcdc;
  font-size: 16px;
}

.service-copy h2 {
  margin: .36rem 0 0;
  font-size: .28rem;
  line-height: 1.65;
}

.services-section__right {
  width: 70%;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .22rem;
}

.service-card {
  min-height: 5.2rem;
  padding: .2rem .26rem .28rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.18);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card__num {
  color: #4d4d4d;
  font-size: .3rem;
}

.service-card h3 {
  margin: .42rem 0 .18rem;
  font-size: .18rem;
  color: #000;
}

.service-card .text-wrap {
  color: #000;
  font-size: 12px;
  line-height: 1.8;
  height: calc(3 * 1.8em);
}

.service-card h4 {
  font-size: .14rem;
  color: #000;
}

.service-card ul {
  margin: .3rem 0 .42rem;
  padding: 0;
  list-style: none;
}

.service-card li .text-wrap {
  margin-top: .15rem;
}

.service-card li+li {
  margin-top: .15rem;
}

.service-card .tips {
  font-size: 12px;
  line-height: 1;
  color: #000;
}

.service-card strong {
  display: block;
  margin-top: 12px;
  font-size: .26rem;
  line-height: 1;
  /* color: var(--color-red); */
  color: #4d4d4d;
}

.service-card.is-featured {
  background: #fff;
}

.service-card.is-featured .service-card__num,
.service-card.is-featured strong {
  color: var(--color-red);
}

.contact-strip {
  display: flex;
  margin-top: .34rem;
  padding: .22rem .28rem;
  border-radius: 10px;
  color: #222;
  background: #fff;
}

.contact-strip__qr {
  display: flex;
  gap: .24rem;
}



.contact-strip-wrapper {
  flex: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding-left: .44rem;
}

.contact-strip-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.contact-strip p {
  color: #000;
  font-size: .14rem;
}

.contact-strip strong {
  color: #202020;
  font-weight: normal;
  font-size: .26rem;
}

.contact-strip-content .pill-button {
  height: auto;
}

.cases-section {
  padding-top: 1.26rem;
}

.case-grid {
  display: flex;
  gap: .22rem;
}

.case-card {
  flex: 1;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
}

.case-card__image {
  position: relative;
  aspect-ratio: 1/1;
  font-size: 0;
  border-radius: 16px;
  overflow: hidden;
}

.case-card__image .label {
  position: absolute;
  top: .2rem;
  left: .26rem;
  max-width: 1.16rem;
  padding: 10px .34rem;
  border-radius: 99px;
  font-size: .12rem;
  color: #fff;
  background: rgba(255, 255, 255, .3);
}

.case-card__image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__metrics {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .28rem .12rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(240, 20, 10, 0.92), transparent);
}

.case-card__metrics .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: .4rem;
}

.case-card__metrics span {
  font-size: .3rem;
  font-weight: 700;
}

.case-card__metrics small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.case-card__metrics .bf-font {
  font-size: 40px;
  line-height: 1;
  color: #fff;
}

.case-card__metrics .wrap .item {
  padding: 0 .26rem;
  border-right: 1px solid rgba(255, 255, 255, 0.65);
}

.case-card__metrics .wrap .item:last-child {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  border-right: 0;
}

.case-card__body {
  padding: .26rem .24rem .34rem;
}

.case-card__body strong {
  color: var(--color-red);
  font-size: 12px;
}

.case-card__body h3 {
  margin: .14rem 0 .45rem;
  font-size: .16rem;
}

.case-card__body .text-wrap {
  color: #1A1A1A;
  font-size: 12px;
  line-height: 1.8;
}

.case-card--large {
  position: relative;
  flex: none;
  width: 6.52rem;
}

.case-card--large .case-card__image {
  aspect-ratio: auto;
  height: 100%;
}

.case-card--large .case-card__body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
}

.case-card--large .case-card__body .tit {
  margin: 0;
  padding: 0 .26rem;
  font-size: .16rem;
  color: #fff;
}

.voice-section {
  padding-top: 1.1rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  gap: 18px;
  font-size: 0;
}

.voice-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  font-size: 0;
}

.voice-card .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.voice-card:not(:first-child) {
  aspect-ratio: 1 / 0.946;
}

.voice-card .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-card--large {
  grid-row: span 2;
}

.voice-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: .86rem;
  height: .28rem;
  border-radius: 999px;
  color: #fff;
  background: var(--color-red);
  font-size: 12px;
}

.voice-card__text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .26rem;
  z-index: 1;
  color: #fff;
}

.voice-card__text .name {
  font-size: .18rem;
}

.voice-card__text .line {
  width: 100%;
  height: 1px;
  margin: .24rem 0 .18rem;
  background: #fff;
}

.voice-card__text .txt {
  font-size: .18rem;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .58rem;
  height: .58rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  top: .18rem;
  left: .23rem;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(0, 0, 0, 0.42);
}

.social-proof {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .54rem;
  padding-top: .46rem;
  padding-left: .48rem;
  padding-right: .26rem;
  border-radius: 8px;
  background: #f5f5f5;
}

.social-proof__copy {
  position: absolute;
  top: .58rem;
  left: .7rem;
}

.social-proof__copy strong {
  color: var(--color-red);
  font-size: .2rem;
}

.social-proof__copy p {
  margin: .18rem 0 0;
  color: #777;
  font-size: .14rem;
  line-height: 1.8;
}

.message-shot {
  border-radius: .18rem;
  overflow: hidden;
}

.phone-shot {
  border-radius: .24rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-band__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
  transform: translate(-50%, -50%);
}

.cta-band h2 {
  font-size: .48rem;
  line-height: 1;
}

.cta-band__action {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .hero {
    min-height: 8.8rem;
  }

  .hero__content {
    padding-top: 1.7rem;
  }

  .hero-metrics {
    bottom: -18%;
  }

  .hero-metrics-list {
    padding: 0 .36rem;
  }

  .hero-metrics__item {
    padding: 0 .28rem;
  }

  .about-section {
    padding-top: 2.8rem;
  }

  .about-intro {
    gap: .44rem;
  }

  .about-intro__copy,
  .about-intro__image {
    width: calc(50% - .22rem);
  }

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

  .stats-grid::after {
    display: none;
  }

  .stat-card:nth-child(5n+1)::before {
    display: block;
  }

  .stat-card:nth-child(3n+1)::before {
    display: none;
  }

  .services-section__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: .48rem;
  }

  .service-copy {
    white-space: normal;
  }

  .services-section__right {
    width: 100%;
  }

  .service-cards {
    grid-template-columns: repeat(3, minmax(2.4rem, 1fr));
    overflow-x: auto;
    padding-bottom: .08rem;
  }

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

  .case-card--large {
    width: auto;
    grid-column: 1 / -1;
  }

  .case-card--large .case-card__image {
    aspect-ratio: 1.9 / 1;
  }

  .social-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .18rem;
  }

  .social-proof__copy {
    position: static;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: .42rem;
    background: #111;
  }

  .hero__visual {
    height: 6.4rem;
  }

  .hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
  }

  .hero__content {
    padding-top: 1.28rem;
  }

  .hero__kicker {
    font-size: .28rem;
  }

  .hero__title {
    margin-bottom: .32rem;
    font-size: .48rem;
    line-height: 1.35;
  }

  .hero-metrics {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1.2rem;
    padding: .28rem 0;
    border-radius: .18rem;
    transform: none;
  }

  .hero-metrics-list {
    grid-template-columns: 1fr;
    padding: 0 .28rem;
  }

  .hero-metrics__item {
    padding: .22rem 0;
  }

  .hero-metrics__item+.hero-metrics__item {
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-left: 0;
  }

  .hero-metrics__num {
    margin-bottom: .12rem;
    font-size: .42rem;
  }

  .hero-metrics h2 {
    margin-bottom: .14rem;
    font-size: .32rem;
  }

  .hero-metrics p {
    margin: .06rem 0;
    font-size: .24rem;
  }

  .hero-metrics__caption {
    margin-top: .22rem;
    padding: 0 .2rem;
    font-size: .26rem;
  }

  .about-section {
    padding-top: .68rem;
  }

  .about-intro {
    flex-direction: column;
    gap: .32rem;
    margin-bottom: .48rem;
  }

  .about-intro__copy,
  .about-intro__image {
    width: 100%;
  }

  .about-intro__copy p {
    font-size: .24rem;
    line-height: 1.9;
  }

  .about-intro__image {
    border-radius: .18rem;
  }

  .about-intro__image .icon {
    width: .72rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(77, 77, 77, 0.28);
  }

  .stat-card {
    padding: .3rem .18rem;
    border-bottom: 1px solid rgba(77, 77, 77, 0.28);
  }

  .stat-card::before,
  .stat-card:nth-child(3n+1)::before {
    display: block;
    height: calc(100% - .36rem);
    background: rgba(77, 77, 77, .28);
  }

  .stat-card:nth-child(2n+1)::before {
    display: none;
  }

  .stat-card strong {
    font-size: .42rem;
  }

  .stat-card p {
    font-size: .24rem;
  }

  .choose-layout {
    flex-direction: column;
    gap: .28rem;
  }

  .choose-tabs,
  .choose-media {
    width: 100%;
  }

  .choose-media {
    padding-left: 0;
  }

  .choose-tab {
    padding: .26rem .24rem;
    border-radius: .14rem;
  }

  .choose-tab h3 {
    font-size: .32rem;
  }

  .choose-tab .text-wrap {
    margin-top: .18rem;
    font-size: .24rem;
  }

  .services-section {
    padding: .62rem 0 .72rem;
  }

  .service-copy h3 {
    font-size: .24rem;
  }

  .service-copy h2 {
    font-size: .36rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .service-card {
    min-height: auto;
    padding: .28rem;
  }

  .service-card__num {
    font-size: .42rem;
  }

  .service-card h3 {
    margin-top: .28rem;
    font-size: .32rem;
  }

  .service-card h4,
  .service-card .text-wrap,
  .service-card .tips {
    font-size: .24rem;
  }

  .service-card .text-wrap {
    height: auto;
    max-height: calc(3 * 1.8em);
  }

  .service-card strong {
    font-size: .34rem;
  }

  .contact-strip,
  .contact-strip-content {
    flex-direction: column;
    align-items: flex-start;
    gap: .22rem;
  }

  .contact-strip-wrapper {
    width: 100%;
    padding-left: 0;
  }

  .contact-strip__qr {
    width: 100%;
  }

  .contact-strip p {
    font-size: .24rem;
  }

  .contact-strip strong {
    font-size: .36rem;
  }

  .contact-strip__qr .qr-box {
    width: 100%;
    height: auto;
  }

  .cases-section {
    padding-top: .68rem;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    border-radius: .16rem;
  }

  .case-card__image,
  .case-card--large .case-card__image {
    aspect-ratio: 1.2 / 1;
    border-radius: .16rem;
  }

  .case-card__image .label {
    max-width: none;
    padding: .08rem .18rem;
    font-size: .22rem;
  }

  .case-card__metrics .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: .18rem 0;
  }

  .case-card__metrics span {
    font-size: .32rem;
  }

  .case-card__metrics small,
  .case-card__body strong,
  .case-card__body .text-wrap {
    font-size: .22rem;
  }

  .case-card__metrics .wrap .item:nth-child(2n) {
    border-right: 0;
  }

  /* .case-card__metrics .wrap .item:last-child {
    display: none;
  } */

  .case-card__body h3,
  .case-card--large .case-card__body .tit {
    font-size: .28rem;
  }

  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .16rem;
  }

  .voice-card--large {
    grid-column: 1 / -1;
  }

  .voice-card__tag {
    top: .14rem;
    left: .14rem;
    padding: .1rem .2rem;
    min-width: auto;
    height: auto;
    font-size: .22rem;
  }

  .voice-card__text {
    padding: .2rem;
  }

  .voice-card__text .name,
  .voice-card__text .txt {
    font-size: .24rem;
  }

  .voice-card .icon {
    width: .72rem;
  }

  .social-proof {
    grid-template-columns: 1fr;
    padding: .24rem;
  }

  .social-proof__copy strong {
    font-size: .32rem;
  }

  .cta-band {
    height: 40vh;
  }

  .cta-band .decor-arc,
  .cta-band .decor-arc .image {
    height: 100%;
  }

  .cta-band .decor-arc .image {
    width: 100%;
    object-fit: cover;
    object-position: 70% center;
  }

  .cta-band__inner {
    gap: .28rem;
    padding: .28rem 0;
  }

  .cta-band h2 {
    padding-left: 0;
    font-size: .42rem;
    line-height: 1.35;
    text-align: center;
  }
}