:root {
  --color-primary: #24b47e;
  --color-primary-dark: #12845f;
  --color-primary-light: #e9fff5;
  --color-text-main: #17212b;
  --color-text-sub: #5f6b7a;
  --color-bg-main: #ffffff;
  --color-bg-soft: #f6faf8;
  --color-border: #e5eaf0;
  --radius-button: 999px;
  --radius-card: 24px;
  --shadow-header: 0 12px 32px rgba(25, 80, 55, 0.08);
  --shadow-card: 0 16px 40px rgba(25, 80, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-main);
  background: var(--color-bg-main);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 顶部导航栏 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 234, 240, 0.82);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 138px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  color: var(--color-text-sub);
  font-size: 16px;
  font-weight: 600;
}

.site-nav a,
.site-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-button);
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  outline: none;
}

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

main {
  background: var(--color-bg-soft);
}

.section-full {
  width: 100%;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-size: 20px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-text-main);
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
}

/* Banner 首屏 */
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(36, 180, 126, 0.3), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(84, 190, 238, 0.26), transparent 32%),
    linear-gradient(135deg, #ebfbf3 0%, #dff6ec 54%, #eef8ff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 180, 126, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 180, 126, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  align-items: start;
  gap: 64px;
  min-height: 620px;
  padding-top: 62px;
  padding-bottom: 52px;
}

.hero-content {
  max-width: 660px;
  padding-top: 14px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--color-primary-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(22px);
  animation: heroTextReveal 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

.hero-content h1 {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(28px);
  animation: heroTextReveal 1.18s cubic-bezier(0.2, 0.8, 0.2, 1) 0.48s forwards;
}

.hero-description {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--color-text-sub);
  font-size: 18px;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextReveal 1.18s cubic-bezier(0.2, 0.8, 0.2, 1) 0.86s forwards;
}

.hero-feature-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 180, 126, 0.15);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  color: var(--color-text-main);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.hero-feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(292px, 72vw);
  aspect-ratio: 9 / 18.8;
  padding: 16px;
  border: 1px solid rgba(18, 132, 95, 0.22);
  background: linear-gradient(145deg, #ffffff, #d2efe4);
  border-radius: 44px;
  box-shadow:
    0 32px 70px rgba(18, 132, 95, 0.23),
    inset 0 0 0 7px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  animation: phoneFloat 5.8s ease-in-out infinite;
  transition: box-shadow 0.24s ease, filter 0.24s ease;
}

.phone-shell:hover,
.phone-shell:focus-visible {
  outline: none;
  filter: saturate(1.04);
  box-shadow:
    0 38px 82px rgba(18, 132, 95, 0.24),
    inset 0 0 0 7px rgba(255, 255, 255, 0.88);
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 4;
  width: 78px;
  height: 8px;
  background: rgba(23, 33, 43, 0.16);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eefaf4;
  border-radius: 32px;
}

.phone-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.phone-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.orbit-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(36, 180, 126, 0.38);
  border-radius: 999px;
  pointer-events: none;
}

.orbit-ring-one {
  width: 372px;
  height: 438px;
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-two {
  width: 440px;
  height: 500px;
  border-style: dashed;
  opacity: 0.66;
  animation: orbitSpin 24s linear infinite reverse;
}

.orbit-ring-one::before,
.orbit-ring-one::after,
.orbit-ring-two::before,
.orbit-ring-two::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(36, 180, 126, 0.26);
  border-radius: 50%;
}

.orbit-ring-one::before,
.orbit-ring-two::before {
  transform: scaleX(0.42);
}

.orbit-ring-one::after,
.orbit-ring-two::after {
  transform: scaleY(0.42);
}

.floating-icon {
  position: absolute;
  z-index: 4;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 12px 18px rgba(25, 80, 55, 0.16));
  animation: iconBreathFloat 4.8s ease-in-out infinite;
}

.floating-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-icon::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 6;
  min-width: max-content;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(18, 132, 95, 0.72);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(25, 80, 55, 0.16);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-icon:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.floating-icon-clock {
  top: 86px;
  left: 26px;
  width: 54px;
  height: 54px;
}

.floating-icon-target {
  top: 104px;
  right: 22px;
  width: 70px;
  height: 70px;
  animation-delay: -1.2s;
}

.floating-icon-book {
  bottom: 120px;
  left: 24px;
  width: 62px;
  height: 62px;
  animation-delay: -2.4s;
}

.floating-icon-star {
  right: 28px;
  bottom: 92px;
  width: 52px;
  height: 52px;
  animation-delay: -3.1s;
}

.floating-icon-calendar {
  top: 232px;
  left: 12px;
  width: 76px;
  height: 76px;
  animation-delay: -1.8s;
}

.floating-icon-growth {
  top: 242px;
  right: 12px;
  width: 58px;
  height: 58px;
  animation-delay: -3.8s;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes iconBreathFloat {
  0%,
  100% {
    transform: translateY(0) scale(0.94);
  }

  50% {
    transform: translateY(-12px) scale(1.08);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes valueImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* 产品核心价值 */
.value-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.value-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(233, 255, 245, 0.88), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.value-container {
  position: relative;
  padding-top: 68px;
  padding-bottom: 54px;
}

.value-heading {
  margin-bottom: 30px;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.value-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: end;
  gap: 18px;
  min-height: 196px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.value-item:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.value-item:nth-child(even) .value-copy {
  order: initial;
}

.value-item:nth-child(even) .value-image {
  order: initial;
}

.value-item:last-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 240px;
  min-height: 172px;
  align-items: center;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #f7fffb, #e9fff5);
  border: 1px solid rgba(36, 180, 126, 0.16);
  border-radius: 18px;
  animation: iconFloat 5.2s ease-in-out infinite;
}

.value-item:nth-child(2) .value-icon {
  animation-delay: -0.8s;
}

.value-item:nth-child(3) .value-icon {
  animation-delay: -1.6s;
}

.value-item:nth-child(4) .value-icon {
  animation-delay: -2.4s;
}

.value-item:nth-child(5) .value-icon {
  animation-delay: -3.2s;
}

.value-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.value-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.value-image {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(25, 80, 55, 0.1);
  animation: valueImageFloat 6.4s ease-in-out infinite;
}

.value-item:nth-child(2) .value-image {
  animation-delay: -1.2s;
}

.value-item:nth-child(3) .value-image {
  animation-delay: -2.4s;
}

.value-item:nth-child(4) .value-image {
  animation-delay: -3.6s;
}

.value-item:nth-child(5) .value-image {
  animation-delay: -4.8s;
}

.value-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.value-item:last-child .value-image img {
  aspect-ratio: 1.45 / 1;
}

.value-item:hover .value-image img {
  transform: scale(1.035);
}

.value-copy h3 {
  margin: 0;
  color: var(--color-text-main);
  font-size: 21px;
  line-height: 1.28;
}

.value-copy p {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.58;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

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

/* 用户评价 */
.testimonial-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.testimonial-container {
  padding-top: 56px;
  padding-bottom: 82px;
}

.testimonial-heading {
  margin-bottom: 28px;
}

.testimonial-quote {
  max-width: 1040px;
  min-height: 92px;
  margin: 0 auto 32px;
  text-align: center;
}

.testimonial-quote p {
  margin: 0 auto;
  color: var(--color-text-sub);
  font-size: 19px;
  line-height: 1.65;
}

.testimonial-quote strong {
  display: block;
  color: var(--color-text-main);
  font-size: 24px;
  line-height: 1.3;
}

.testimonial-quote span {
  display: block;
  margin-top: 8px;
  color: var(--color-text-light);
  font-size: 15px;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 22px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.testimonial-arrow {
  width: 54px;
  height: 54px;
  color: #73808a;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 54px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: var(--color-primary-dark);
  outline: none;
  transform: translateY(-2px);
}

.testimonial-track {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  overflow-x: auto;
  min-height: 136px;
  padding: 18px 8px 12px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-avatar {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 112px;
  min-height: 116px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.testimonial-avatar img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(23, 33, 43, 0.12);
}

.testimonial-avatar span {
  display: block;
  width: 112px;
  color: var(--color-text-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.testimonial-avatar.is-active {
  opacity: 1;
  transform: translateY(-4px);
}

.testimonial-avatar.is-active img {
  transform: scale(1.18);
}

.testimonial-avatar.is-active span {
  opacity: 1;
}

.testimonial-avatar:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* 底部 Footer */
.site-footer {
  background:
    radial-gradient(circle at 14% 10%, rgba(36, 180, 126, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fffb 0%, #ffffff 100%);
  border-top: 1px solid var(--color-border);
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  align-items: start;
  justify-items: start;
  gap: 56px;
  max-width: 1200px;
  padding-top: 30px;
  padding-bottom: 28px;
}

.footer-brand-block,
.footer-qrcode,
.footer-links {
  width: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 132px;
  height: auto;
  margin-top: 0;
  margin-bottom: 12px;
}

.footer-meta-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--color-text-light);
  font-size: 14px;
}

.footer-meta-row span:first-child {
  color: var(--color-text-sub);
  font-weight: 700;
}

.footer-meta-row span:nth-child(2) {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.footer-meta-row a,
.footer-copy a,
.footer-links a {
  color: var(--color-text-sub);
  transition: color 0.2s ease;
}

.footer-meta-row a:hover,
.footer-copy a:hover,
.footer-links a:hover {
  color: var(--color-primary-dark);
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.qr-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 30, 24, 0.46);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.qr-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 34px 32px 32px;
  border: 1px solid rgba(229, 234, 240, 0.92);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(21, 70, 52, 0.22);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.qr-modal.is-open .qr-dialog {
  transform: translateY(0) scale(1);
}

.qr-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--color-text-sub);
  background: var(--color-bg-soft);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.qr-dialog-close:hover,
.qr-dialog-close:focus-visible {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  outline: none;
}

.qr-dialog-logo {
  width: 142px;
  height: auto;
  margin: 0 auto 18px;
}

.qr-dialog h2 {
  margin: 0;
  color: var(--color-text-main);
  font-size: 24px;
  line-height: 1.25;
}

.qr-dialog p {
  margin: 12px 0 22px;
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.7;
}

.qr-dialog-code {
  width: 210px;
  height: 210px;
  margin: 0 auto;
  border: 10px solid #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(21, 70, 52, 0.12);
  object-fit: cover;
}

.footer-copy {
  margin: 0;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.8;
}

.footer-qrcode {
  display: grid;
  justify-items: start;
  align-content: start;
  text-align: left;
}

.footer-qrcode h3,
.footer-links h3 {
  margin: 0 0 12px;
  color: var(--color-text-main);
  font-size: 18px;
  font-weight: 800;
}

.footer-qrcode img {
  width: 126px;
  height: 126px;
  border: 8px solid #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(25, 80, 55, 0.1);
}

.footer-qrcode p {
  margin: 14px 0 0;
  color: var(--color-text-light);
  font-size: 14px;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: end;
  justify-self: end;
  text-align: right;
  gap: 9px;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  font-size: 15px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .header-container {
    min-height: 56px;
    gap: 16px;
  }

  .brand-logo {
    width: 118px;
    height: auto;
  }

  .site-nav {
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 14px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a,
  .site-nav button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 10px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .hero-kicker {
    font-size: 18px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-feature-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 500px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .value-container {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .value-heading {
    margin-bottom: 24px;
  }

  .value-item,
  .value-item:nth-child(even) {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: none;
    padding: 26px 22px;
    text-align: center;
  }

  .value-image {
    width: min(260px, 100%);
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-item:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .value-item:nth-child(even) .value-copy,
  .value-item:nth-child(even) .value-image {
    order: initial;
  }

  .value-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .value-title-row {
    justify-content: center;
  }

  .value-copy h3 {
    font-size: 21px;
  }

  .value-copy p {
    font-size: 16px;
  }

  .testimonial-container {
    padding-top: 42px;
    padding-bottom: 62px;
  }

  .testimonial-quote {
    margin-bottom: 24px;
  }

  .testimonial-quote p {
    font-size: 16px;
    line-height: 1.65;
  }

  .testimonial-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
    font-size: 42px;
  }

  .testimonial-track {
    gap: 20px;
    min-height: 122px;
  }

  .testimonial-avatar {
    width: 88px;
    min-height: 106px;
  }

  .testimonial-avatar img {
    width: 64px;
    height: 64px;
  }

  .testimonial-avatar span {
    width: 88px;
    font-size: 13px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 26px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer-qrcode {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-items: start;
    justify-self: start;
    text-align: left;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
  }

  .orbit-ring-one {
    width: 300px;
    height: 350px;
  }

  .orbit-ring-two {
    width: 350px;
    height: 410px;
  }

  .floating-icon-clock {
    left: 28px;
  }

  .floating-icon-target {
    right: 28px;
  }

  .floating-icon-book {
    left: 28px;
  }

  .floating-icon-star {
    right: 28px;
  }

  .floating-icon-calendar {
    left: 22px;
  }

  .floating-icon-growth {
    right: 22px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 104px;
    height: auto;
  }

  .site-nav a,
  .site-nav button {
    padding: 0 8px;
  }

  .qr-dialog {
    padding: 30px 22px 28px;
  }

  .qr-dialog h2 {
    font-size: 21px;
  }

  .qr-dialog-code {
    width: 188px;
    height: 188px;
  }

  .hero-feature-icons {
    gap: 12px;
  }

  .hero-feature-item {
    min-height: 104px;
    font-size: 14px;
  }

  .hero-feature-item img {
    width: 46px;
    height: 46px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .value-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .value-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-content h1,
  .hero-description {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }
}
