:root {
  --color-primary: #a67352;
  --color-primary-dark: #8b5e42;
  --color-gold: #c5a073;
  --color-dark: #2c2c2e;
  --color-dark-footer: #1f1f1f;
  --color-text: #333;
  --color-text-muted: #666;
  --color-bg-gray: #f5f5f5;
  --color-border: #e0e0e0;
  --container-width: 1200px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.22s var(--ease-out);
  --transition-base: 0.3s var(--ease-out);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 36px rgba(166, 115, 82, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header .container,
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.site-nav-toggle:hover {
  background: #faf8f5;
  border-color: var(--color-primary);
}

.site-nav-toggle__icon {
  display: block;
}

.site-nav-toggle__icon--close {
  display: none;
}

body.is-nav-open .site-nav-toggle__icon--menu {
  display: none;
}

body.is-nav-open .site-nav-toggle__icon--close {
  display: block;
}

.site-nav__contact {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 20px 0 8px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
}

.site-nav__contact a {
  color: inherit;
  text-decoration: none;
}

.site-nav__contact strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}

.site-nav-backdrop {
  display: none;
}

.site-logo {
  display: inline-flex;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.site-logo:hover {
  opacity: 0.88;
  transform: scale(1.03);
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 36px;
}

.site-nav a {
  position: relative;
  font-size: 15px;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width var(--transition-fast);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-primary);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.site-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.site-contact:hover {
  background: rgba(166, 115, 82, 0.08);
}

.site-contact strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.site-contact:hover strong {
  color: var(--color-primary);
}

.site-contact img {
  width: 12px;
  height: 12px;
}

/* Page hero */
.page-hero {
  background: var(--color-dark);
  color: #fff;
  padding: 48px 0;
}

.page-hero--brown {
  background: linear-gradient(135deg, #5c3d2e 0%, #8b5e42 50%, #a67352 100%);
}

.page-hero--blue {
  background: linear-gradient(180deg, #e8f4fc 0%, #d4ebf7 100%);
  color: var(--color-text);
}

.page-hero--blacklist {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 64px 0;
  color: var(--color-text);
  background: transparent;
}

.page-hero--blacklist .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/images/j.png") center center / cover no-repeat;
}

.page-hero--blacklist .container {
  position: relative;
  z-index: 1;
}

.page-hero--blacklist .page-hero__title {
  color: var(--color-text);
  font-size: 32px;
}

.page-hero--blacklist .page-hero__subtitle {
  color: var(--color-text-muted);
  font-size: 18px;
}

.page-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-hero__title {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.page-hero--blue .page-hero__title {
  color: var(--color-text);
  font-size: 32px;
}

.page-hero__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
}

.page-hero--blue .page-hero__subtitle {
  color: var(--color-text-muted);
  font-size: 18px;
}

.page-hero__line {
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  margin: 16px 0;
}

.page-hero__icon img {
  max-height: 100px;
}

/* Footer */
.site-footer {
  background: var(--color-dark-footer);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 24px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}

.site-footer__brand img {
  height: 48px;
}

.site-footer__slogan {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  color: var(--color-gold);
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.site-footer__title {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.site-footer__contacts {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 48px;
}

.site-footer__contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.site-footer__contacts img {
  width: 16px;
  opacity: 0.7;
}

.site-footer__qrcodes {
  display: flex;
  gap: 24px;
}

.site-footer__qrcodes figure {
  text-align: center;
}

.site-footer__qrcodes img {
  width: 88px;
  height: 88px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}

.site-footer__qrcodes figcaption {
  margin-top: 8px;
  font-size: 12px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Forms */
.form-section {
  padding: 48px 0 64px;
  background: var(--color-bg-gray);
}

.form-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 40px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-row label {
  width: 120px;
  flex-shrink: 0;
  padding-top: 10px;
  font-size: 14px;
  text-align: right;
  padding-right: 16px;
}

.form-row label .required {
  color: #e53935;
  margin-right: 4px;
}

.form-row .form-control {
  flex: 1;
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
  border-color: var(--color-primary);
}

.form-control textarea {
  min-height: 100px;
  resize: vertical;
}

.form-region {
  display: flex;
  gap: 12px;
}

.form-region select {
  flex: 1;
  min-width: 0;
}

.form-captcha img {
  cursor: pointer;
  height: 36px;
  width: auto;
  background: #f5f5f5;
}

.form-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-captcha img {
  height: 36px;
  cursor: pointer;
}

.form-captcha a {
  color: #1976d2;
  font-size: 13px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(166, 115, 82, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(166, 115, 82, 0.25);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Two column layout */
.layout-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.info-panel {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.info-panel:hover {
  transform: translateX(4px);
}

.info-panel__highlight {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.info-panel__highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(166, 115, 82, 0.3);
}

.info-panel dl {
  margin: 16px 0;
}

.info-panel dt {
  font-weight: 600;
  color: var(--color-text);
  margin-top: 12px;
}

/* Section titles */
.section-title {
  text-align: center;
  padding: 48px 0 32px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title p {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-bar {
  background: #2b2b2e;
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.section-bar--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 24px;
}

.section-bar__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.section-bar__subtitle {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}

.section-bar__subtitle--cn {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.92;
}

/* Home */
.home-hero-wrap {
  position: relative;
}

.home-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3840 / 900;
  min-height: 520px;
  overflow: hidden;
}

.home-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}

.home-hero__slide {
  flex-shrink: 0;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -100px;
  margin-bottom: 50px;
}

.home-hero__text {
  max-width: 520px;
}

.home-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 16px;
}

.home-hero__en {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 36px;
}

.home-hero__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.home-hero__apps a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 28px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.home-hero__apps a:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mission-section {
  padding: 72px 0;
  text-align: center;
  background: #f8f8f8;
}

.mission-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.mission-section .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.mission-section .content {
  max-width: 960px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--color-text);
  line-height: 2.2;
  text-align: justify;
}

.service-process {
  padding: 56px 0 64px;
  background: #fff;
}

.service-process .container > img {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.service-process .container > img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.process-hotline {
  text-align: center;
  margin-top: 24px;
  font-size: 18px;
}

.process-hotline strong {
  display: inline-block;
  color: var(--color-primary);
  font-size: 22px;
  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}

.process-hotline:hover strong {
  transform: scale(1.05);
  color: var(--color-primary-dark);
}

.map-section {
  padding: 56px 0 64px;
  text-align: center;
}

.map-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.map-section > .container > p {
  color: var(--color-text-muted);
  font-size: 15px;
}

.map-section__link {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-primary);
  font-size: 15px;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.map-section__link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.map-section .map-img {
  margin-top: 36px;
  overflow: hidden;
  border-radius: 8px;
}

.map-section .map-img img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.map-section .map-img:hover img {
  transform: scale(1.03);
}

.home-mid-section {
  background: #fff;
}

.stats-section {
  background: #f5f5f5;
}

.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-section .stat-item {
  padding: 28px 16px;
  text-align: center;
}

.stats-section .stat-label,
.stats-section .stat-sublabel {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.stats-section .stat-num {
  margin: 6px 0;
  font-size: 44px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.happiness-section {
  padding: 56px 0 72px;
  background: #fff;
}

.happiness-section__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.happiness-section__title {
  padding: 0 0 28px;
}

.happiness-section__title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
}

.happiness-section__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 2;
  text-align: justify;
  text-align-last: center;
  margin: 0 auto 36px;
}

.happiness-section__figure {
  display: flex;
  justify-content: center;
  margin: 8px 0 28px;
}

.happiness-section__figure img {
  max-width: 100%;
  width: auto;
  max-height: 560px;
  object-fit: contain;
}

.happiness-section__footer {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
}

.happiness-section__footer strong {
  font-weight: 700;
}

.section-title--left {
  text-align: left;
  padding: 0 0 24px;
}

.service-tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.service-tags__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}

.service-tags span {
  padding: 8px 22px;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  font-size: 14px;
  color: var(--color-text);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    background-color var(--transition-fast);
}

.service-tags span:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: #fffaf7;
  box-shadow: 0 8px 20px rgba(166, 115, 82, 0.18);
}

.service-tags span:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(166, 115, 82, 0.14);
}

.cta-section {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

/* Enterprise VIP / Franchise */
.franchise-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 56px 0;
  overflow: hidden;
}

.franchise-hero--community {
  min-height: 400px;
  padding: 65px 0;
}

.franchise-hero__bg {
  position: absolute;
  background-image: url(../assets/images/d.png);
  background-repeat: no-repeat;
  inset: 0;
  z-index: 0;
}

.franchise-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.franchise-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.franchise-hero__card {
  width: min(100%, 420px);
  padding: 40px 48px 36px;
  background: #cca27b99;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  text-align: center;
}

.franchise-hero__card-logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
}

.franchise-hero__card h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.franchise-hero__card .btn-primary {
  min-width: 160px;
  padding: 10px 32px;
  border-radius: 4px;
}

.franchise-panel {
  background: #f7f7f7;
}

.feature-cards-section {
  padding-bottom: 56px;
}

.feature-cards-section--advantage {
  background: #fff;
}

.feature-cards-section--revenue {
  background: #f8f8f8;
}

.feature-cards-section__title {
  padding: 56px 0 40px;
}

.feature-cards-section__title h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.feature-card {
  grid-column: span 2;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 28px 24px 26px;
  text-align: left;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.feature-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.feature-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-card__icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(197, 168, 142, 0.5);
}

.feature-card:hover .feature-card__icon img {
  transform: scale(1.08);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.franchise-process__block {
  padding: 56px 0 64px;
}

.franchise-process__block--with-store {
  background: #fff;
}

.franchise-process__block--no-store {
  background: #f7f8fa;
}

.franchise-process__header {
  padding: 0 0 40px;
}

.franchise-process__header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.franchise-process__track {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  min-height: 260px;
}

.franchise-process__path {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 140px;
  pointer-events: none;
  z-index: 0;
}

.franchise-process__steps {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.franchise-process__step {
  flex: 1;
  max-width: 200px;
  min-width: 0;
}

.franchise-process__step--down {
  margin-top: 72px;
}

.franchise-process__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 168px;
  padding: 20px 16px 18px;
  background: #fff;
  border: 1px solid #d9c4ad;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.franchise-process__step--down .franchise-process__card {
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 16px;
}

.franchise-process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #c5a88e;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.franchise-process__step--up .franchise-process__num {
  margin-bottom: 14px;
}

.franchise-process__step--down .franchise-process__num {
  margin-top: 14px;
}

.franchise-process__step:hover .franchise-process__card {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-color: #c5a88e;
}

.franchise-process__cn {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 10px;
}

.franchise-process__en {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.flow-section {
  padding: 48px 0 56px;
  background: #f7f7f7;
}

.flow-block {
  max-width: 1000px;
  margin: 0 auto 48px;
}

.flow-block:last-child {
  margin-bottom: 0;
}

.flow-block h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 28px;
  color: #1a1a1a;
}

.flow-chart {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: auto;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 4px;
}

.flow-steps__img {
  display: block;
  width: auto;
  max-width: 190px;
  height: auto;
}

.flow-steps .arrow {
  width: 28px;
  flex-shrink: 0;
}

.franchise-perks {
  padding-bottom: 56px;
  background: #fff;
}

.franchise-perks__header {
  padding: 56px 0 40px;
}

.franchise-perks__header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 0 8px;
}

.perk-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #f8f4ef;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  min-height: 180px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.perk-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.perk-card:hover > img {
  transform: scale(1.05);
}

.perk-card__body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.perk-card__label-en {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.perk-card__body h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #1a1a1a;
  font-weight: 700;
}

.perk-card__desc-cn {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 10px;
}

.perk-card__desc-en {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.store-gallery {
  padding: 40px 0 48px;
  background: #fff;
}

.store-gallery--flagship {
  padding: 40px 0 64px;
  background: #fff;
}

.store-gallery--flagship .flagship-video {
  margin-top: 0;
  border-radius: 16px;
}

.flagship-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  margin-top: 48px;
}

.flagship-feature {
  transition: transform var(--transition-base);
}

.flagship-feature:hover {
  transform: translateY(-4px);
}

.flagship-feature__text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.flagship-feature__text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.flagship-feature__media {
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.flagship-feature:hover .flagship-feature__media {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.flagship-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform var(--transition-base);
}

.flagship-feature:hover .flagship-feature__media img {
  transform: scale(1.03);
}

.staff-showcase {
  margin-top: 56px;
  padding-top: 8px;
}

.staff-carousel {
  position: relative;
  padding: 0 52px;
}

.staff-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.staff-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.staff-carousel__track {
  display: flex;
  gap: 20px;
  padding: 4px 2px 8px;
}

.staff-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 180px;
  margin: 0;
  cursor: pointer;
}

.staff-card__photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.staff-card__photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.staff-card__overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
  pointer-events: none;
}

.staff-card__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.staff-card__role {
  font-size: 13px;
  color: var(--color-text-muted);
}

.staff-card.is-active .staff-card__photo,
.staff-card:hover .staff-card__photo {
  border-color: #4a90d9;
  box-shadow: 0 10px 28px rgba(74, 144, 217, 0.22);
  transform: translateY(-4px);
}

.staff-card.is-active .staff-card__overlay,
.staff-card:hover .staff-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.staff-showcase__bio {
  margin: 24px 52px 0;
  padding: 22px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  min-height: 72px;
  transition: opacity var(--transition-fast);
}

.staff-showcase__bio p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin: 0;
}

.staff-showcase__bio.is-empty {
  opacity: 0.4;
}

.staff-carousel__btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.staff-carousel__btn img {
  width: 14px;
  height: auto;
}

.staff-carousel__btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.staff-carousel__btn--prev {
  left: 0;
  transform: translateY(-50%);
}

.staff-carousel__btn--next {
  right: 0;
  transform: translateY(-50%);
}

.staff-carousel__btn--prev:hover,
.staff-carousel__btn--next:hover {
  transform: translateY(-50%) scale(1.08);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.community-grid .grid-item {
  padding: 32px 36px;
  font-size: 14px;
  line-height: 1.85;
  cursor: default;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    filter var(--transition-base);
}

.community-grid .grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  z-index: 1;
  position: relative;
}

.community-grid .grid-item--light:hover {
  filter: brightness(1.02);
}

.community-grid .grid-item--tan:hover {
  filter: brightness(1.06);
}

.community-grid .grid-item--light {
  background: #f5f5f5;
}

.community-grid .grid-item--tan {
  background: #c5a88e;
}

.community-grid h4 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.community-grid .grid-item--light h4 {
  color: #1a1a1a;
}

.community-grid .grid-item--light p {
  color: #666;
}

.community-grid .grid-item--tan h4,
.community-grid .grid-item--tan p {
  color: #fff;
}

.store-gallery .video-wrap {
  position: relative;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.store-gallery .video-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.store-gallery .video-wrap img:first-child {
  transition: transform var(--transition-base);
}

.store-gallery .video-wrap:hover img:first-child {
  transform: scale(1.03);
}

.store-gallery .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.store-gallery .video-wrap:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

/* FAQ */
.faq-section {
  padding: 48px 0 64px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.faq-item {
  position: relative;
  padding: 20px 20px 20px 56px;
  margin: -20px;
  border-radius: 10px;
  transition:
    background-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.faq-item:hover {
  background-color: #faf8f5;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(166, 115, 82, 0.1);
}

.faq-item__num {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  transition: transform var(--transition-base);
}

.faq-item:hover .faq-item__num {
  transform: scale(1.06);
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.faq-deco {
  text-align: right;
  margin-top: 24px;
}

.faq-deco img {
  max-width: 200px;
}

/* Recruitment / Master join */
.recruit-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.recruit-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/assets/images/e.png") center center / cover no-repeat;
  z-index: 0;
}

.recruit-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 72px 0;
}

.recruit-hero__text {
  max-width: 480px;
}

.recruit-hero__text h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.recruit-hero__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
}

.recruit-requirements {
  padding: 72px 0;
  text-align: center;
  background: #f5f5f5;
}

.recruit-requirements h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.recruit-requirements ul {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: left;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.recruit-requirements li {
  padding: 6px 0;
  font-size: 15px;
  line-height: 1.8;
  list-style: disc;
  margin-left: 22px;
  color: #333;
}

.recruit-process {
  padding: 72px 0;
  background: #fff;
}

.recruit-process .section-title {
  padding: 0 0 40px;
}

.recruit-process .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.recruit-process .section-title p {
  margin-top: 8px;
  color: #999;
  letter-spacing: 0.12em;
}

.process-flow {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}

.process-flow__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 48px;
}

.process-flow__row:last-child {
  margin-bottom: 0;
}

.process-flow__arrow {
  width: 32px;
  flex-shrink: 0;
  align-self: flex-start;
  margin: 54px 2px 0;
  opacity: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 0;
}

.process-step {
  flex: 0 0 160px;
  text-align: center;
  padding: 0;
}

.process-step img {
  display: block;
  width: 141px;
  height: 141px;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  max-width: 150px;
  margin: 0 auto;
}

.recruit-knowledge {
  padding: 72px 0 80px;
  background: #fff;
}

.recruit-knowledge .section-title {
  padding: 0 0 40px;
}

.recruit-knowledge .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.recruit-knowledge .section-title p {
  margin-top: 8px;
  color: #999;
  letter-spacing: 0.12em;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
}

.knowledge-card {
  background: #f7f7f7;
  border-radius: 4px;
  padding: 24px 20px;
  min-height: 220px;
}

.knowledge-card .stars {
  color: #222;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.knowledge-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.knowledge-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
}

/* Store apply */
.store-hero img {
  width: 100%;
  display: block;
}

.store-form-section {
  padding: 64px 0;
}

.store-form {
  max-width: 560px;
  margin: 0 auto;
}

.store-form .form-row label {
  width: 100px;
}

/* Blacklist */
.blacklist-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin: 0px auto 64px;
  position: relative;
  z-index: 2;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.blacklist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.blacklist-card__top {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.blacklist-desc h4 {
  font-size: 15px;
  margin: 16px 0 8px;
}

.blacklist-desc p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.blacklist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.blacklist-table th,
.blacklist-table td {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.blacklist-table th {
  background: #f5f5f5;
  font-weight: 600;
}

.blacklist-table tbody tr {
  transition: background-color var(--transition-fast);
}

.blacklist-table tbody tr:hover {
  background: #faf8f5;
}

/* Interactive hover — shared across pages */
.flow-steps img:not(.arrow) {
  transition: transform var(--transition-base);
  border-radius: 8px;
}

.flow-steps img:not(.arrow):hover {
  transform: translateY(-5px) scale(1.02);
}

.mission-section .container {
  transition: transform var(--transition-base);
}

.mission-section .container:hover {
  transform: translateY(-2px);
}

.cta-section .container {
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.cta-section:hover .container {
  transform: scale(1.02);
}

.cta-section .container p {
  transition: letter-spacing var(--transition-base);
}

.cta-section:hover .container p {
  letter-spacing: 0.02em;
}

.site-footer__contacts li {
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.site-footer__contacts li:hover {
  transform: translateX(4px);
  opacity: 1;
}

.site-footer__qrcodes figure {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.site-footer__qrcodes figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.site-footer__qrcodes img {
  transition: transform var(--transition-fast);
}

.site-footer__qrcodes figure:hover img {
  transform: scale(1.05);
}

.form-captcha a {
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast);
}

.form-captcha a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.form-captcha img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.form-captcha img {
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

@media (max-width: 992px) {
  .site-nav-toggle {
    display: inline-flex;
  }

  .site-contact--desktop {
    display: none;
  }

  .site-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    z-index: 98;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--transition-base),
      visibility var(--transition-base);
  }

  body.is-nav-open .site-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(300px, 86vw);
    height: calc(100dvh - var(--header-height));
    margin: 0;
    padding: 16px 0 24px;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform var(--transition-base),
      visibility var(--transition-base);
  }

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

  body.is-nav-open .site-nav {
    visibility: visible;
    transform: translateX(0);
  }

  .site-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active {
    background: #faf8f5;
    color: var(--color-primary);
    font-weight: 600;
  }

  .site-nav__contact {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 24px 8px;
    margin-top: auto;
  }

  .layout-two-col,
  .faq-grid,
  .blacklist-card__top,
  .perks-grid,
  .knowledge-grid,
  .process-grid,
  .stats-section__grid {
    grid-template-columns: 1fr;
  }
  .recruit-hero {
    min-height: 360px;
  }
  .recruit-hero__bg {
    background-position: 75% center;
  }
  .recruit-hero__text {
    max-width: none;
  }
  .process-flow__row {
    flex-wrap: wrap;
    gap: 16px 8px;
    justify-content: center;
  }
  .process-flow__arrow {
    display: none;
  }
  .process-step {
    flex: 0 0 calc(50% - 16px);
    max-width: 160px;
  }
  .home-hero {
    min-height: 0;
    aspect-ratio: 750 / 500;
  }
  .home-hero__slide {
    background-size: 100% 100%;
    background-position: center center;
  }
  .home-hero__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 2;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .home-hero__apps {
    justify-content: center;
    gap: 12px;
  }
  .home-hero__apps a {
    min-width: 120px;
    padding: 10px 22px;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }
  .home-hero__text {
    max-width: none;
  }
  .service-tags__row {
    gap: 10px;
  }
  .service-tags span {
    padding: 7px 16px;
    font-size: 13px;
  }
  .stats-section .stat-item {
    padding: 22px 12px;
  }
  .stats-section .stat-num {
    font-size: 36px;
  }
  .feature-cards-section__title {
    padding: 40px 0 28px;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: auto;
  }

  .franchise-process__block {
    padding: 40px 0 48px;
  }

  .franchise-process__header {
    padding-bottom: 28px;
  }

  .franchise-process__path {
    display: none;
  }

  .franchise-process__track {
    min-height: 0;
  }

  .franchise-process__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .franchise-process__step,
  .franchise-process__step--down {
    margin-top: 0;
    max-width: none;
  }

  .franchise-process__card {
    min-height: 0;
  }

  .franchise-process__step--up .franchise-process__num,
  .franchise-process__step--down .franchise-process__num {
    margin: 0 0 12px;
  }

  .franchise-process__step--down .franchise-process__num {
    margin: 12px 0 0;
  }

  .perk-card {
    grid-template-columns: 1fr;
  }

  .perk-card > img {
    max-height: 200px;
  }

  .flagship-features {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 32px;
  }

  .staff-carousel {
    padding: 0 44px;
  }

  .staff-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 160px;
  }

  .staff-showcase__bio {
    margin-left: 44px;
    margin-right: 44px;
  }

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

  .franchise-hero__card {
    padding: 32px 24px 28px;
  }

  .franchise-hero__card h1 {
    font-size: 24px;
  }

  .flow-steps__img {
    max-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
