@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif, serif;
  color: #00201B;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(clamp(36px, 20%, 80px));
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.audio-wave {
  position: relative;
  width: 68px;
  height: 17px;
}

.audio-wave span {
  position: absolute;
  left: var(--x);
  width: 2px;
  height: 100%; /* 统一基准高度 */
  border-radius: 1.005px;
  background: #fff;
  transform: scaleY(var(--scale));
  animation: wave 1s ease-in-out var(--s, infinite);
  animation-delay: var(--d);
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(var(--scale));
  }
  50% {
    transform: scaleY(calc(var(--scale) * 0.45));
  }
}
.highlight-bg {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.highlight-bg::before {
  content: "";
  position: absolute;
  inset: var(--inset, -2px -12px);
  background: linear-gradient(135deg, rgba(170, 252, 223, 0.8) 0%, rgba(140, 222, 226, 0.8) 100%);
  border-radius: 100px;
  transform: rotate(-1deg) skewX(-6deg);
  z-index: -1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 189, 161, 0.1);
}
.header__inner {
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__logo-name {
  font-family: Aclonica;
  font-size: 28px;
  font-weight: 700;
  color: #00201B;
  letter-spacing: -0.5px;
  color: #00BDA1;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav-link {
  font-size: 16px;
  color: #516964;
  padding: 6px;
  transition: color 0.2s;
}
.header__nav-link:hover {
  color: #00201B;
}
.header__nav-cta {
  display: inline-block;
  background: #00BDA1;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px -12px rgba(0, 138, 93, 0.18);
  transition: background 0.2s, transform 0.15s;
}
.header__nav-cta:hover {
  background: #00a88e;
  transform: translateY(-1px);
}

.s1 {
  position: relative;
  height: 860px;
  padding-top: 77px;
  min-width: 1440px;
  background: url("./images/1-bg.webp") center top no-repeat;
  overflow: hidden;
}
.s1__inner {
  padding: 96px 30px;
  display: flex;
  align-items: center;
}
.s1__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.s1__title {
  position: relative;
}
.s1__title h1 {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.15;
  color: #00201B;
  letter-spacing: -1.5px;
}
.s1__title h1 em {
  font-family: Aclonica;
  font-style: normal;
  font-weight: 400;
  color: #00BDA1;
  position: relative;
}
.s1__title .highlight-bg::before {
  inset: -2px -16px;
}
.s1__qr {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.51);
  border-radius: 20px;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: default;
}
.s1__qr p {
  font-size: 18px;
  color: #0C4E3C;
  line-height: 1.4;
  letter-spacing: -0.09px;
}
.s1__qr-icon {
  flex-shrink: 0;
}
.s1__visual {
  flex-shrink: 0;
  width: 720px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.s1__robot {
  position: absolute;
  bottom: -50px;
  right: -45px;
  width: 160px;
  z-index: 3;
}
.s1__robot img {
  width: 100%;
}
.s1__robot {
  animation: robotFloat 3s ease-in-out infinite;
}
@keyframes robotFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.s1__carousel {
  position: relative;
  width: 560px;
  height: 560px;
  border-radius: 40px;
  border: 1px solid rgba(0, 189, 161, 0.2);
  overflow: hidden;
  box-shadow: 0 38px 102px -38px rgba(0, 88, 74, 0.3);
  flex-shrink: 0;
}
.s1__carousel-track {
  position: relative;
  height: 100%;
}
.s1__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.s1__slide--active {
  opacity: 1;
}
.s1__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s1__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.25s, width 0.25s;
}
.s1__dot--active {
  background: #FFFFFF;
  width: 24px;
  border-radius: 4px;
}
.s1__dl-btn {
  position: absolute;
  bottom: 19px;
  right: 19px;
  background: #FFFFFF;
  color: #00BDA1;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 9999px;
  box-shadow: 0 4px 5px rgba(38, 110, 87, 0.1);
  z-index: 5;
  transition: transform 0.15s;
}
.s1__dl-btn:hover {
  transform: translateY(-1px);
}
.s1__phones {
  position: absolute;
  bottom: -50px;
  left: 40px;
  width: 217px;
  height: 369px;
  z-index: 4;
}
.s1__phone {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  filter: drop-shadow(0 10px 25px rgba(0, 138, 93, 0.25));
  transform: translateX(-20%);
}
.s1__phone img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.s1__phone--active {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.s2 {
  min-width: 1440px;
  padding: 100px 0;
  background: #FFFFFF;
}
.s2__inner {
  display: flex;
  align-items: center;
  gap: 70px;
}
.s2__image {
  flex-shrink: 0;
  width: 640px;
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 88, 74, 0.3);
}
.s2__image img, .s2__image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s2__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.s2__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  color: #00201B;
}
.s2__title em {
  font-size: 56px;
  font-family: Aclonica;
  font-style: normal;
  font-weight: 400;
  color: #00BDA1;
}
.s2__desc {
  font-size: 22px;
  color: #516964;
  line-height: 1.5;
}

.s3 {
  min-width: 1440px;
  padding: 80px 0;
  background: #F2FBFA;
  border-top: 1px solid rgba(0, 189, 161, 0.1);
}
.s3__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.s3__heading {
  text-align: center;
}
.s3__title {
  font-size: 48px;
  font-weight: 700;
  color: #00201B;
  display: inline-block;
}
.s3__cards {
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
.s3__card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(150, 237, 199, 0.4);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px -12px rgba(0, 138, 93, 0.18);
  display: flex;
  flex-direction: column;
  height: 550px;
  transition: transform 0.5s, box-shadow 0.5s, opacity 0.5s;
}
.s3__card.reveal-hidden {
  opacity: 0;
  transform: scale(0.8);
  transition-duration: 0.5s;
}
.s3__card.reveal-visible {
  opacity: 1;
  transform: scale(1);
}
.s3__card:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px -15px rgba(0, 138, 93, 0.35);
}
.s3__card-img {
  height: 350px;
  position: relative;
  flex-shrink: 0;
}
.s3__card-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s3__card-img--1 > img {
  position: absolute;
  inset: 0;
}
.s3__badge-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #AAFCDF 0%, #8CDEE2 100%);
  border: 4px solid #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 138, 93, 0.2);
}
.s3__badge-circle svg, .s3__badge-circle img {
  flex-shrink: 0;
}
.s3__badge-circle span {
  font-size: 20px;
  font-weight: 700;
  color: #004C33;
  text-align: center;
  line-height: 1.2;
}
.s3__card-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s3__card-body h3 {
  font-size: 26px;
  font-weight: 700;
  color: #00201B;
  line-height: 1.3;
}
.s3__card-body p {
  font-size: 20px;
  color: #516964;
  line-height: 1.5;
}

.s4 {
  min-width: 1440px;
  padding: 80px 0;
  background: #FFFFFF;
}
.s4__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.s4__heading {
  text-align: center;
}
.s4__title {
  font-size: 48px;
  font-weight: 700;
  color: #00201B;
}
.s4__carousel {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}
.s4__carousel-track {
  position: relative;
  margin: 0 165px;
  height: 100%;
}
.s4__carousel-track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
.s4__card {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 370px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center bottom;
}
.s4__card img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s4__card[data-pos=center] {
  transform: translateX(-50%) scale(1);
  filter: brightness(1);
  z-index: 3;
}
.s4__card[data-pos=left] {
  transform: translateX(-110%) scale(0.85);
  filter: brightness(0.75);
}
.s4__card[data-pos=right] {
  transform: translateX(10%) scale(0.85);
  filter: brightness(0.75);
}
.s4__card[data-prev=true] {
  z-index: 2;
}
.s4__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 88, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00201B;
  transition: all 0.2s;
}
.s4__btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 88, 74, 0.22);
  color: #FFFFFF;
  background: #00BDA1;
}
.s4__btn--prev {
  left: 100px;
}
.s4__btn--next {
  right: 100px;
}
.s4__btn svg {
  width: 32px;
  height: 32px;
}
.s4__desc-cards {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  height: 200px;
}
.s4__desc-card {
  position: absolute;
  background: rgba(0, 189, 161, 0.05);
  border: 1px solid rgba(0, 189, 161, 0.2);
  border-radius: 32px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -12px rgba(0, 138, 93, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.s4__desc-card--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
  transition-delay: 0.25s;
}
.s4__desc-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.s4__desc-card-head img {
  width: 86px;
  height: 86px;
  flex-shrink: 0;
}
.s4__desc-card-head h3 {
  font-size: 30px;
  font-weight: 700;
  color: #00201B;
  line-height: 1.3;
}
.s4__desc-card p {
  font-size: 17px;
  color: #516964;
  line-height: 1.65;
  padding: 0 10px 5px;
}

.s5 {
  min-width: 1440px;
  padding: 80px 0 60px;
  background: #F2FBFA;
  border-top: 1px solid rgba(0, 189, 161, 0.1);
}
.s5__inner {
  display: flex;
  flex-direction: column;
  padding: 0 70px;
  gap: 60px;
}
.s5__heading {
  text-align: center;
}
.s5__title {
  font-size: 48px;
  font-weight: 700;
  color: #00201B;
}
.s5__layout {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}
.s5__tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 30px;
}
.s5__tab {
  padding: 26px;
  border-radius: 40px;
  border: 2px solid rgba(150, 237, 199, 0.4);
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
}
.s5__tab--active {
  background: #D4FDEA;
  border-color: #008A5D;
  box-shadow: 0 20px 25px rgba(0, 138, 93, 0.15);
}
.s5__tab--active .s5__tab-icon {
  color: #FFFFFF;
  background: #008A5D;
}
.s5__tab:hover:not(.s5__tab--active) {
  background: #e8f8f1;
  border-color: #96edc7;
}
.s5__tab h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #00201B;
  margin-bottom: 15px;
}
.s5__tab p {
  font-size: 17px;
  color: #516964;
}
.s5__tab-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #008A5D;
  background: #D4FDEA;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.s5__phone-wrap {
  position: relative;
  width: 432px;
  height: 680px;
}
.s5__phone-slides {
  width: 540px;
  height: 800px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  transform: scale(0.8);
  transform-origin: left top;
  box-shadow: 0 20px 20px rgba(0, 138, 93, 0.15);
}
.s5__phone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.s5__phone-slide--active {
  opacity: 1;
  pointer-events: auto;
}
.s5__phone-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.s5__phone-bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s5__chatbox {
  position: absolute;
  top: 28px;
  left: 29px;
  width: 244px;
  max-width: 740px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5.5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.s5__chatbox-right {
  right: 29px;
  left: auto;
}
.s5__chat-header {
  flex-shrink: 0;
  padding: 6px 0 3px;
  display: flex;
  justify-content: center;
}
.s5__chat-header img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 44px;
}
.s5__chat-footer {
  flex-shrink: 0;
  padding: 6px;
  display: flex;
  justify-content: center;
}
.s5__chat-footer img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 50px;
}
.s5__chat-messages {
  flex: 1;
  overflow: hidden;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s5__chat-msg {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 14px;
  font-size: 10px;
  line-height: 1.7;
  color: #14151A;
}
.s5__chat-msg .audio-wave span {
  animation-name: none;
}
.s5__chat-msg pre {
  font-family: inherit;
  white-space: pre-line;
}
.s5__chat-msg--visible {
  opacity: 1;
  transform: translateY(0);
}
.s5__chat-msg--visible .audio-wave span {
  animation-name: "wave";
}
.s5__chat-msg--ai {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(243, 243, 243, 0.6);
  padding: 9px;
}
.s5__chat-msg--user {
  display: flex;
  align-self: flex-end;
  background: #08AE95;
  color: #FFFFFF;
  padding: 9px 9px 9px 9px;
  max-width: 87%;
}
.s5__chat-msg em {
  color: #00BDA1;
  font-style: normal;
  font-weight: 700;
}
.s5__chat-voice {
  display: flex;
  align-items: center;
  gap: 6px;
}
.s5__chat-title {
  color: #00BDA1;
  font-weight: 700;
  font-size: 11px;
  display: block;
  margin-bottom: 4px;
}
.s5__chat-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 8px;
}
.s5__dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.s5__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(150, 237, 199, 0.6);
  transition: background 0.25s, width 0.25s;
  cursor: pointer;
}
.s5__dot--active {
  background: #008A5D;
  width: 48px;
  border-radius: 6px;
}

.s6 {
  min-width: 1440px;
  padding: 80px 0;
  background: #FFFFFF;
}
.s6__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.s6__heading {
  text-align: center;
}
.s6__title {
  font-size: 48px;
  font-weight: 700;
  color: #00201B;
}
.s6__article {
  background: #FFFFFF;
  border: 1px solid rgba(150, 237, 199, 0.4);
  border-radius: 40px;
  box-shadow: 0 10px 30px -12px rgba(0, 138, 93, 0.18);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.s6__article--reverse {
  flex-direction: row-reverse;
}
.s6__article-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.s6__article-copy h3 {
  font-size: 36px;
  font-weight: 700;
  color: #00201B;
  line-height: 1.25;
}
.s6__article-copy p {
  font-size: 22px;
  color: #516964;
  line-height: 1.5;
}
.s6__article-img {
  flex-shrink: 0;
  width: 550px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0, 138, 93, 0.2);
}
.s6__article-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.s7 {
  min-width: 1440px;
  padding: 80px 0;
  background: #F2FBFA;
  border-top: 1px solid rgba(0, 189, 161, 0.1);
}
.s7__inner {
  display: flex;
  flex-direction: column;
}
.s7__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.s7__title {
  font-size: 48px;
  font-weight: 700;
  color: #00201B;
  line-height: 1.2;
}
.s7__sub {
  font-size: 22px;
  color: #516964;
}
.s7__wall {
  position: relative;
  width: 100%;
  padding: 80px 0;
}
.s7__wall-track {
  display: flex;
  justify-content: space-between;
  transform: translateX(0);
  transition: transform 0.15s ease-out;
  will-change: transform;
  white-space: nowrap;
}
.s7__wall.scroll::before, .s7__wall.scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.s7__wall.scroll::before {
  left: 0;
  background: linear-gradient(to right, #F2FBFA, rgba(242, 251, 250, 0));
}
.s7__wall.scroll::after {
  right: 0;
  background: linear-gradient(to left, #F2FBFA, rgba(242, 251, 250, 0));
}
.s7__photo {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 445px;
  cursor: pointer;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.s7__photo.blur {
  opacity: 0.8;
  filter: brightness(0.75);
}
.s7__photo img,
.s7__photo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  border-radius: 30px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.s7__photo:hover {
  z-index: 10;
  box-shadow: 0 30px 60px -15px rgba(0, 138, 93, 0.35);
}
.s7__photo:hover video {
  transform: scale(1.2);
}
.s7__photo:nth-child(odd) {
  margin-top: 60px;
}
.s7__photo:last-child {
  margin-right: 0;
}
.s7__testimonials {
  display: flex;
  gap: 24px;
}
.s7__testimonial {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(150, 237, 199, 0.4);
  border-radius: 40px;
  box-shadow: 0 10px 10px rgba(0, 138, 93, 0.1);
  padding: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  height: 200px;
}
.s7__testimonial blockquote p {
  font-size: 16px;
  color: #00201B;
  line-height: 24px;
}
.s7__testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.s7__testimonial strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #00201B;
  line-height: 20px;
}
.s7__testimonial span {
  display: block;
  font-size: 14px;
  color: #516964;
}
.s7__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.s7__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  vertical-align: middle;
}

.footer {
  min-width: 1440px;
  position: relative;
  padding: 70px 0;
  background: #E4FCF0 url("./images/footer-bg.webp") no-repeat;
  overflow: hidden;
}
.footer__blur {
  position: absolute;
  width: 346px;
  height: 77px;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.footer__blur--left {
  background: rgba(170, 252, 223, 0.9);
  top: 0;
  left: -40px;
}
.footer__blur--right {
  background: rgba(150, 232, 236, 0.7);
  top: 40px;
  right: -40px;
}
.footer__inner {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 150px;
}
.footer__brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__logo span {
  font-size: 65px;
  font-weight: 700;
  color: #00201B;
  line-height: 70px;
}
.footer__tagline {
  font-size: 18px;
  color: #516964;
  line-height: 1.5;
}
.footer__links {
  padding-top: 32px;
  width: 645px;
  display: flex;
  gap: 40px;
}
.footer__col {
  flex: 1;
}
.footer__col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #00201B;
  line-height: 20px;
  margin-bottom: 16px;
  text-transform: capitalize;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col li a {
  font-size: 16px;
  color: #516964;
  line-height: 20px;
  text-transform: capitalize;
  transition: color 0.2s;
}
.footer__col li a:hover {
  color: #00201B;
}
.footer__social-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 30px;
  flex: 1;
  align-items: center;
}
.footer__social-link {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s;
}
.footer__social-link:hover {
  transform: scale(1.08);
}
.footer__social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__appstore {
  display: block;
  transition: transform 0.2s, opacity 0.2s;
}
.footer__appstore img {
  height: 70px;
  width: auto;
}
.footer__appstore:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.footer__divider {
  height: 2px;
  background: rgba(0, 189, 161, 0.2);
  border-radius: 1px;
}
.footer__copy p {
  font-size: 12px;
  color: #516964;
}

.qr-trigger {
  position: relative;
}

.s1__qr.qr-trigger {
  position: relative;
}

.qr-popup {
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border-radius: 14px;
  padding: 5px;
  box-shadow: 0 8px 36px rgba(0, 32, 27, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 300;
  white-space: nowrap;
}
.qr-popup img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  vertical-align: middle;
}
.qr-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #FFFFFF;
}
.qr-popup--below {
  bottom: auto;
  top: calc(100% + 12px);
}
.qr-popup--below::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: #FFFFFF;
}

.qr-trigger:hover .qr-popup {
  opacity: 1;
}