:root {
  --ink: #0b0c12;
  --muted: #667085;
  --line: #e9edf6;
  --blue: #075bff;
  --deep-blue: #044ee8;
  --purple: #6400c8;
  --lime: #b9ff27;
  --soft-blue: #eaf4ff;
  --soft: #f6f8fc;
  --paper: #ffffff;
  --warm: #f6f0ec;
  --shadow: 0 22px 60px rgba(25, 45, 96, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 20px clamp(18px, 7vw, 110px);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.header-light.is-scrolled,
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(20, 35, 80, 0.11);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 18px;
  font-weight: 900;
}

.brand::before {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  place-items: center;
  content: "QF";
  color: #06122c;
  background: var(--lime);
  border-radius: 50%;
  font-size: 13px;
  vertical-align: middle;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav-button,
.mini-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #06122c;
  background: var(--lime);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #06122c;
}

.mobile-nav {
  position: fixed;
  top: 74px;
  right: 18px;
  z-index: 31;
  display: none;
  min-width: 210px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.page-kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 98px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

/* Home page */
.home-hero {
  min-height: 620px;
  padding: 118px 20px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.55), transparent 17%),
    radial-gradient(circle at 74% 42%, #d414ff 0, transparent 34%),
    linear-gradient(133deg, #04081d 0%, #16105a 45%, #b800ff 100%);
}

.home-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-hero .page-kicker {
  color: #fff;
  opacity: 0.68;
}

.home-hero h1 {
  max-width: 740px;
  margin-left: 42px;
  font-size: clamp(48px, 7vw, 86px);
}

.home-team-image {
  width: min(860px, 82vw);
  height: 310px;
  margin: 34px auto -118px;
  background-image: url("./微信图片_20260522095524_73_512.jpg");
  background-repeat: no-repeat;
  background-position: center 14%;
  background-size: 155% auto;
  border: 0;
}

.home-intro {
  padding-top: 170px;
}

.slim-section {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.slim-section p {
  color: #1e2533;
  font-size: 18px;
  font-weight: 600;
}

.service-band {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 60px;
  color: #fff;
  background: linear-gradient(135deg, #6b00c9, #3d00a0);
}

.service-band h2 {
  font-size: 24px;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-cloud span {
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  font-weight: 800;
}

.blue-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 62px;
  color: #fff;
  background: var(--deep-blue);
}

.blue-split h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.round-link {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  color: #06122c;
  background: var(--lime);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.works-section {
  width: min(940px, calc(100% - 40px));
  margin: 80px auto 0;
}

.work-row {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 58px;
  align-items: center;
  margin: 62px 0;
}

.work-row.reverse {
  grid-template-columns: 0.78fr 1fr;
}

.work-row.reverse img {
  order: 2;
}

.work-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}

.circle-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  margin-top: 16px;
  place-items: center;
  color: #fff;
  background: #000;
  border-radius: 50%;
  font-weight: 900;
}

.belief-card {
  width: min(760px, calc(100% - 40px));
  margin: 96px auto;
  padding: 38px 56px;
  text-align: center;
  background: #f3f6fb;
  border-radius: 8px;
}

.belief-card h2 {
  font-size: 28px;
}

.belief-card p {
  font-size: 20px;
  font-weight: 900;
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 76px;
  padding: 70px 20px;
  color: #fff;
  background: #5c79e8;
}

.bottom-cta h2 {
  margin: 0;
}

.bottom-cta a {
  padding: 8px 20px;
  color: #06122c;
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  padding: 46px clamp(20px, 7vw, 110px);
  color: #fff;
  background: #5c79e8;
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
}

/* FAQ page */
.page-blue {
  background: linear-gradient(180deg, #1e91ff 0, #eaf6ff 720px, #fff 100%);
}

.panel-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 46px 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.panel-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.panel-hero img {
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.faq-card {
  width: min(1040px, calc(100% - 40px));
  margin: 76px auto;
  padding: 70px clamp(24px, 6vw, 100px);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-card details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-card summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: center;
  width: min(900px, calc(100% - 40px));
  margin: 100px auto;
}

.testimonial-feature {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.testimonial-feature img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

/* About page */
.about-cover {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(24px, 14vw, 260px) 90px;
  color: #fff;
  background:
    linear-gradient(rgba(1, 40, 92, 0.2), rgba(1, 40, 92, 0.18)),
    url("./微信图片_20260522095526_75_512.jpg") center top / cover;
}

.about-cover h1 {
  font-size: clamp(56px, 9vw, 110px);
}

.about-cover p {
  font-size: 26px;
  font-weight: 900;
}

.article-section {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.center-title {
  margin-bottom: 62px;
  text-align: center;
}

.center-title h2 {
  margin-bottom: 0;
}

.center-title span {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.article-section p {
  color: #2c3342;
  font-size: 18px;
}

.article-section h3 {
  margin-top: 44px;
}

.future-banner {
  padding: 130px 20px 160px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), #fff),
    repeating-linear-gradient(90deg, rgba(21, 212, 255, 0.18) 0 2px, transparent 2px 12px);
}

/* Services page */
.solution-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  padding: 140px clamp(20px, 7vw, 110px) 0;
  color: #fff;
  background: var(--deep-blue);
}

.solution-hero img {
  grid-column: 1 / -1;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 35%;
}

.solution-hero p {
  font-size: 18px;
  font-weight: 800;
}

.number-row {
  display: flex;
  gap: 34px;
  font-size: 30px;
}

.satisfaction,
.tech-section,
.why-section,
.order-case,
.plans {
  padding: 88px clamp(20px, 7vw, 110px);
  text-align: center;
}

.purple-solution {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 40px;
  align-items: center;
  margin-top: 54px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #5b1bd1, #8f43e9);
}

.purple-solution img {
  height: 430px;
  width: 100%;
  object-fit: cover;
}

.purple-solution span {
  display: block;
  margin: 14px 0;
  padding: 12px;
  color: var(--deep-blue);
  background: #fff;
  font-size: 22px;
  font-weight: 900;
}

.tech-heading {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 40px;
  text-align: left;
}

.tech-grid,
.why-grid,
.case-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  text-align: left;
}

.tech-grid img,
.case-strip img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.tech-grid p,
.why-grid p,
.case-strip p {
  color: var(--muted);
}

/* Design page */
.warm-page {
  background: var(--warm);
}

.palette-section,
.design-copy,
.professional-section,
.speed-section {
  padding: 90px clamp(20px, 7vw, 110px);
}

.palette-section {
  padding-top: 140px;
  text-align: center;
}

.palette-section h1 {
  font-size: clamp(44px, 6vw, 72px);
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(700px, 100%);
  margin: 38px auto 0;
}

.palette-grid div {
  min-height: 160px;
  padding: 18px;
  color: var(--a);
  background: linear-gradient(180deg, var(--a) 0 45%, var(--b) 45% 100%);
  text-align: left;
}

.palette-grid span {
  display: block;
  color: var(--b);
  font-weight: 900;
}

.palette-grid strong {
  display: block;
  margin-top: 30px;
  font-size: 42px;
  line-height: 1;
}

.design-copy,
.professional-section {
  text-align: center;
}

.season-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.season-row div {
  display: grid;
  min-height: 260px;
  place-items: end center;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, #66b8c2, #0f5b55);
  font-weight: 900;
  writing-mode: vertical-rl;
}

.metric-grid,
.speed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.metric-grid div,
.speed-grid div {
  padding: 26px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(56, 34, 18, 0.08);
}

.metric-grid strong,
.speed-grid strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
}

.speed-section {
  color: #fff;
  background: #432093;
}

.speed-grid div {
  color: #fff;
  background: #242329;
}

/* Platform page */
.business-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 130px clamp(20px, 7vw, 110px) 72px;
  color: #fff;
  background: linear-gradient(135deg, #064bd9, #2d8df5);
}

.business-hero h1 {
  font-size: clamp(40px, 5vw, 70px);
}

.business-hero img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid article,
.case-strip article,
.plan-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(25, 45, 96, 0.08);
}

.blue-platform {
  padding: 88px clamp(20px, 7vw, 110px);
  color: #fff;
  background: var(--deep-blue);
  text-align: center;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 360px));
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
}

.plan-grid strong {
  display: block;
  font-size: 40px;
}

.plan-grid span {
  display: block;
  margin: 8px 0 22px;
}

.plan-grid a {
  display: inline-flex;
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.plan-grid .featured {
  color: #fff;
  background: linear-gradient(135deg, #516ff0, #8d60e9);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .nav-button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .panel-hero,
  .trust-section,
  .solution-hero,
  .purple-solution,
  .tech-heading,
  .business-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .tech-grid,
  .why-grid,
  .case-strip,
  .palette-grid,
  .metric-grid,
  .speed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-row,
  .work-row.reverse {
    grid-template-columns: 1fr;
  }

  .work-row.reverse img {
    order: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 14px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 104px;
  }

  .home-hero h1 {
    margin-left: 0;
    font-size: 38px;
  }

  .home-team-image {
    width: 100%;
    height: 230px;
    background-position: center 13%;
    background-size: 178% auto;
    margin-bottom: -80px;
  }

  .home-intro {
    padding-top: 120px;
  }

  .service-band,
  .blue-split,
  .belief-card {
    width: calc(100% - 28px);
    padding: 34px 22px;
  }

  .blue-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .round-link {
    width: 78px;
    height: 78px;
  }

  .bottom-cta {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .panel-hero,
  .faq-card,
  .article-section,
  .satisfaction,
  .tech-section,
  .why-section,
  .order-case,
  .plans,
  .palette-section,
  .design-copy,
  .professional-section,
  .speed-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .panel-hero {
    width: calc(100% - 28px);
    padding-top: 110px;
  }

  .about-cover,
  .solution-hero,
  .business-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tech-grid,
  .why-grid,
  .case-strip,
  .palette-grid,
  .metric-grid,
  .speed-grid,
  .season-row,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .solution-hero img,
  .purple-solution img,
  .business-hero img {
    height: 260px;
  }
}

/* Screenshot-matched home top */
.home-page {
  min-height: 100vh;
  background: #fff;
}

.top-design-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 84px;
  margin: 0;
  padding: 0 10%;
  color: #fff;
  background: #627ceb;
}

.top-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.top-design-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  font-weight: 700;
}

.top-contact {
  justify-self: end;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: #5173ed;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.top-design-hero {
  position: relative;
  width: 100%;
  height: 586px;
  margin: 0;
  overflow: hidden;
  background: #2f5fb5;
}

.top-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 100%;
  width: min(100%, 1920px);
  max-width: 100%;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.top-hero-copy {
  position: absolute;
  top: 116px;
  left: 10%;
  z-index: 2;
  display: grid;
  gap: 0;
  width: min(46%, 460px);
  color: #fff;
  text-align: left;
  line-height: 1.2;
  pointer-events: none;
}

.top-hero-copy h1 {
  margin: 0 0 58px;
  font-size: 44px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(8, 28, 72, 0.35);
}

.top-hero-copy p {
  margin: 0 0 26px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(8, 28, 72, 0.35);
}

.top-hero-copy a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #2569df;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(12, 36, 88, 0.18);
  font-size: 22px;
  font-weight: 900;
  pointer-events: auto;
}

.why-top-section {
  width: 80%;
  margin: 0 auto;
  padding: 104px 20px 66px;
  text-align: center;
  background: #fff;
}

.why-top-section h2 {
  margin: 0;
  color: #111;
  font-size: clamp(44px, 3.4vw, 58px);
  line-height: 1.36;
  font-weight: 900;
}

.top-card-section {
  width: 80%;
  margin: 0 auto;
  padding: 128px 50px 62px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.84)),
    repeating-linear-gradient(90deg, rgba(0, 198, 255, 0.18) 0 2px, transparent 2px 12px);
}

.top-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
}

.top-card-grid article {
  min-height: 240px;
  padding: 34px 22px 26px;
  color: #fff;
  background: linear-gradient(180deg, #c8a8f2 0%, #8b4fd9 48%, #4a1599 100%);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.top-card-section.is-revealed .top-card-grid article {
  animation: topCardReveal 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.top-card-section.is-revealed .top-card-grid article:nth-child(1) {
  animation-delay: 0.05s;
}

.top-card-section.is-revealed .top-card-grid article:nth-child(2) {
  animation-delay: 0.25s;
}

.top-card-section.is-revealed .top-card-grid article:nth-child(3) {
  animation-delay: 0.45s;
}

.top-card-section.is-revealed .top-card-grid article:nth-child(4) {
  animation-delay: 0.65s;
}

@keyframes topCardReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

.more-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
  color: #2a3142;
  font-size: 15px;
  font-weight: 800;
}

.more-button span {
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .top-card-grid article {
    opacity: 1;
    transform: none;
  }

  .top-card-section.is-revealed .top-card-grid article {
    animation: none;
  }
}

.top-card-grid h3 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
}

.top-card-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.46;
  font-weight: 800;
}

.service-classify {
  width: 80%;
  margin: 0 auto;
  padding: 108px 0 72px;
  text-align: center;
  background: transparent;
}

.service-classify h2 {
  margin: 0 0 76px;
  color: #17181d;
  font-size: clamp(44px, 3.4vw, 58px);
  line-height: 1.15;
  font-weight: 900;
}

.chip-marquee {
  display: grid;
  gap: 26px;
  overflow: hidden;
  padding: 0 12px;
}

.chip-row {
  display: flex;
  width: max-content;
  gap: 14px;
}

.chip-row-left {
  animation: marqueeLeft 36s linear infinite;
}

.chip-row-right {
  animation: marqueeRight 34s linear infinite;
}

.chip-track {
  display: flex;
  gap: 14px;
}

.service-chip {
  display: inline-flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  color: #1c4441;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(20, 30, 60, 0.08);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-chip.is-accent {
  color: #ffffff;
  background: linear-gradient(90deg, #ff1657, #ff7430);
}

.order-system-case {
  width: 80%;
  margin: 0 auto 90px;
  padding: 70px 34px 62px;
  background:
    linear-gradient(180deg, #f4f4f6 0 60%, #5d85d6 60% 100%),
    radial-gradient(circle at 70% 18%, rgba(0, 0, 0, 0.04) 0 14%, transparent 14%);
  position: relative;
  overflow: hidden;
}

.order-case-inner {
  position: relative;
}

.case-accent {
  display: block;
  width: 34px;
  height: 34px;
  background: #31e58f;
  margin: 0 auto 26px;
}

.order-case-inner > h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(46px, 4vw, 72px);
  line-height: 1.12;
}

.order-case-inner > p {
  width: min(760px, 100%);
  margin: 0 auto 52px;
  text-align: center;
  color: #424a5c;
  font-size: 24px;
  line-height: 1.65;
  font-weight: 600;
}

.order-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.order-card {
  background: #fff;
  box-shadow: 0 20px 40px rgba(16, 36, 90, 0.16);
}

.order-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.order-card-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 40%, #1a4a8c 0%, #071428 72%);
}

.order-card-flow-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.order-card-flow-track {
  position: absolute;
  top: -8%;
  left: -40%;
  width: 180%;
  height: 116%;
  background: url("./images/flow-lines.png") repeat-x center / 520px auto;
  opacity: 0.92;
  animation: orderFlowSlide 14s linear infinite;
  will-change: transform;
}

.order-card-flow-track--alt {
  top: -12%;
  opacity: 0.55;
  animation-duration: 20s;
  animation-direction: reverse;
  filter: blur(1px) brightness(1.15);
}

.order-card-device {
  position: relative;
  z-index: 2;
  display: block;
  width: 118%;
  height: 118%;
  margin: -9% -9%;
  object-fit: contain;
  object-position: center center;
  clip-path: inset(6% 14% 10% 14% round 6px);
  filter: drop-shadow(0 10px 22px rgba(0, 20, 60, 0.45));
}

.order-card--flow .order-card-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(7, 20, 40, 0.35) 0%,
    rgba(7, 20, 40, 0.05) 42%,
    rgba(7, 20, 40, 0.05) 58%,
    rgba(7, 20, 40, 0.35) 100%
  );
  content: "";
  pointer-events: none;
}

@keyframes orderFlowSlide {
  from {
    transform: translateX(0) translateY(0);
  }

  to {
    transform: translateX(-28%) translateY(-2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-card-flow-track {
    animation: none;
  }
}

.order-card-body {
  padding: 18px 22px 22px;
}

.order-no {
  display: block;
  margin-bottom: 8px;
  color: #f03e5f;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}

.order-card:nth-child(2) .order-no {
  color: #33cb8f;
}

.order-card:nth-child(3) .order-no {
  color: #56c8f3;
}

.order-card h3 {
  margin: 0 0 12px;
  color: #1c202a;
  font-size: 50px;
  line-height: 1.22;
}

.order-card p {
  margin: 0;
  color: #50586a;
  font-size: 28px;
  line-height: 1.55;
  font-weight: 600;
}

.growth-support,
.ops-guarantee {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.growth-support {
  padding: 78px 38px 54px;
  background: #f4f4f6;
}

.growth-head {
  text-align: center;
  position: relative;
}

.growth-head h2 {
  margin: 0 0 20px;
  font-size: clamp(46px, 4vw, 72px);
  line-height: 1.16;
}

.growth-head p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #4a4f5f;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.decor {
  position: absolute;
  display: block;
}

.decor-violet-left {
  top: -8px;
  left: -40px;
  width: 120px;
  height: 150px;
  background: linear-gradient(135deg, #6f48ef, #4a2ee2);
}

.decor-yellow-left {
  top: 130px;
  left: 72px;
  width: 30px;
  height: 30px;
  background: #ffd400;
}

.decor-red-right {
  top: 195px;
  right: 0;
  width: 44px;
  height: 44px;
  background: #fe184f;
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.growth-card {
  padding: 24px 26px 16px;
  background: #efeff2;
}

.growth-card-dark {
  color: #fff;
  background: #2c2e59;
}

.growth-icon {
  display: inline-grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  margin-bottom: 12px;
  color: #f3355a;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
}

.growth-card:nth-child(3) .growth-icon {
  color: #ffc700;
}

.growth-card:nth-child(4) .growth-icon {
  color: #6f4ef0;
}

.growth-card h3 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.25;
}

.growth-card p {
  margin: 0 0 16px;
  color: #4e5568;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.growth-card-dark p {
  color: rgba(255, 255, 255, 0.86);
}

.growth-card small {
  display: flex;
  justify-content: space-between;
  color: #6f7382;
  font-size: 12px;
  font-weight: 700;
}

.growth-card-dark small {
  color: rgba(255, 255, 255, 0.8);
}

.ops-guarantee {
  padding: 64px 38px 72px;
  margin-bottom: 56px;
  overflow: visible;
  background: #fff;
}

.ops-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.ops-head h2 {
  margin: 0;
  font-size: clamp(44px, 3.9vw, 66px);
  line-height: 1.18;
}

.ops-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.ops-points li {
  position: relative;
  padding-left: 22px;
  color: #2f3648;
  font-size: 16px;
  font-weight: 700;
}

.ops-points li::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: #32d56b;
}

.ops-points li:nth-child(2)::before {
  background: #59c8ff;
}

.ops-points li:nth-child(3)::before {
  background: #ffd63b;
}

.ops-points li:nth-child(4)::before {
  background: #8756ff;
}

.ops-points li:nth-child(5)::before {
  background: #6f4ee9;
}

.ops-points li:nth-child(6)::before {
  background: #1f2536;
}

.ops-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  margin-top: 42px;
  position: relative;
}

.ops-visual-img {
  display: block;
  width: 100%;
  height: clamp(280px, 28vw, 400px);
  object-fit: cover;
  object-position: center;
}

.ops-years {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  box-sizing: border-box;
  width: clamp(200px, 22vw, 260px);
  height: clamp(148px, 17vw, 188px);
  padding: 18px 16px 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 40, 88, 0.14);
  pointer-events: none;
  perspective: 900px;
}

.ops-years strong {
  color: #6a49e8;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
  display: inline-block;
  margin-top: clamp(14px, 2.4vw, 26px);
  pointer-events: auto;
  cursor: pointer;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@keyframes ops-years-float {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes ops-years-flip {
  0% {
    transform: translateY(-6px) rotateY(0deg);
  }

  100% {
    transform: translateY(-6px) rotateY(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ops-years strong {
    animation: ops-years-float 3.2s ease-in-out infinite;
  }

  .ops-years strong:hover {
    animation: ops-years-flip 0.72s cubic-bezier(0.4, 0.15, 0.2, 1);
  }
}

.ops-years span {
  color: #2f3648;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  margin-top: auto;
}

.ops-footnote {
  margin: 32px auto 0;
  padding-bottom: 8px;
  text-align: center;
  color: #4d5362;
  font-size: 14px;
  line-height: 1.8;
  width: min(980px, 100%);
}

.decor-violet-mid {
  top: 26px;
  left: 12px;
  width: 22px;
  height: 22px;
  background: #6345eb;
}

.decor-cyan-right {
  top: -6px;
  right: 18px;
  width: 24px;
  height: 24px;
  background: #5ed0f5;
}

.decor-green-right {
  top: 44px;
  right: 18px;
  width: 48px;
  height: 9px;
  background: #31d580;
}

.decor-red-bottom-left {
  bottom: -46px;
  left: 0;
  width: 30px;
  height: 30px;
  background: #ff174f;
}

.decor-yellow-bottom-left {
  bottom: -58px;
  left: 28px;
  width: 42px;
  height: 42px;
  background: #ffd400;
}

.decor-violet-bottom-right {
  right: 0;
  bottom: -52px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #6b49ef, #4b2de2);
}

.finance-platform {
  width: 100%;
  margin: 0 0 84px;
  padding: 64px clamp(32px, 10vw, 140px) 64px;
  box-sizing: border-box;
  color: #fff;
  background: #0055ff;
}

.finance-platform h2 {
  margin: 0 0 52px;
  text-align: center;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.finance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(52px, 6.5vw, 96px);
  align-items: center;
  margin-top: 0;
}

.finance-cards {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 400px;
  justify-self: start;
}

.finance-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(6, 21, 64, 0.22);
}

.finance-card-top {
  top: 0;
  left: 0;
  width: min(100%, 360px);
  padding: 20px 22px;
}

.finance-top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.finance-card-top small {
  display: block;
  margin-bottom: 4px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.finance-card-top strong {
  color: #111827;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.progress-ring {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  border: 7px solid #b8f028;
  border-left-color: #e5e7eb;
  background: #fff;
}

.progress-ring span {
  color: #1f2937;
  font-size: 13px;
  font-weight: 900;
}

.finance-card-left {
  left: 0;
  bottom: 0;
  width: min(100%, 300px);
  padding: 16px 16px 14px;
}

.finance-card-right {
  right: 0;
  bottom: 6px;
  width: min(100%, 300px);
  padding: 16px 16px 12px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2f43;
}

.window-dots span:nth-child(2) {
  background: #ffc400;
}

.window-dots span:nth-child(3) {
  background: #30d772;
}

.finance-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.finance-card-row--foot {
  margin-top: 4px;
}

.finance-card h4 {
  margin: 10px 0 10px;
  color: #252939;
  font-size: 15px;
  font-weight: 800;
}

.finance-card-row h4 {
  margin: 10px 0 0;
}

.line-bars {
  display: grid;
  gap: 8px;
}

.line-bars span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e2e3e7;
}

.line-bars span:nth-child(1) {
  width: 94%;
}

.line-bars span:nth-child(2) {
  width: 88%;
}

.line-bars span:nth-child(3) {
  width: 72%;
}

.chip-row-mini {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 6px 8px;
  margin: 12px 0 12px;
  color: #32384b;
  font-size: 11px;
  font-weight: 700;
}

.chip-row-mini .active {
  padding: 5px 12px;
  color: #1a2e00;
  background: #b8f028;
  border-radius: 999px;
}

.switch-line {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
}

.switch-line i {
  display: inline-block;
  width: 30px;
  height: 16px;
  border-radius: 999px;
  background: #b8f028;
  position: relative;
}

.switch-line i::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
}

.finance-card-right svg {
  width: 100%;
  height: 140px;
  fill: none;
}

.finance-card-right polyline {
  stroke: #1f57e6;
  stroke-width: 3;
}

.finance-card-right .dashed {
  stroke: #c0c3cd;
  stroke-dasharray: 7 6;
}

.x-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #6e7588;
  font-size: 9px;
  font-weight: 700;
}

.finance-copy {
  max-width: 440px;
}

.finance-copy h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 900;
}

.finance-copy p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.finance-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  color: #1a1a1a;
  background: #b8f028;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.chip-marquee.is-paused .chip-row {
  animation-play-state: paused;
}

.service-chip.is-breathing {
  animation: chipBreath 1.4s ease-in-out infinite;
  box-shadow: 0 14px 36px rgba(255, 94, 76, 0.35);
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(calc(-50% - 7px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes chipBreath {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 920px) {
  .top-design-header {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding: 0 4%;
  }

  .top-design-nav,
  .top-contact {
    display: none;
  }

  .top-menu {
    display: block;
  }

  .top-design-hero {
    width: 100%;
  }

  .why-top-section,
  .top-card-section,
  .service-classify,
  .order-system-case,
  .growth-support,
  .ops-guarantee {
    width: 92%;
  }

  .finance-platform {
    width: 100%;
  }

  .why-top-section h2 {
    font-size: 46px;
  }

  .top-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-classify {
    padding: 84px 0 56px;
  }

  .service-classify h2 {
    margin-bottom: 52px;
  }

  .service-chip {
    min-height: 62px;
    padding: 0 28px;
    font-size: 26px;
  }

  .order-system-case {
    padding: 56px 20px 46px;
  }

  .order-case-inner > p {
    font-size: 17px;
  }

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

  .order-card img {
    height: 190px;
  }

  .order-no {
    font-size: 34px;
  }

  .order-card h3 {
    font-size: 32px;
  }

  .order-card p {
    font-size: 18px;
  }

  .growth-support,
  .ops-guarantee {
    padding-left: 18px;
    padding-right: 18px;
  }

  .growth-cards {
    grid-template-columns: 1fr;
  }

  .ops-head {
    grid-template-columns: 1fr;
  }

  .ops-points {
    grid-template-columns: 1fr 1fr;
  }

  .finance-platform {
    padding: 56px 20px;
  }

  .finance-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 52px;
  }

  .finance-cards {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .finance-card {
    position: static;
    width: 100%;
  }

  .finance-platform h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .finance-copy h3 {
    font-size: 28px;
  }

  .finance-copy p {
    font-size: 15px;
  }

  .finance-copy a {
    min-height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .top-design-header,
  .why-top-section,
  .top-card-section,
  .service-classify,
  .order-system-case,
  .growth-support,
  .ops-guarantee {
    width: 100%;
  }

  .finance-platform {
    width: 100%;
  }

  .top-design-header {
    margin-top: 0;
  }

  .top-logo {
    font-size: 16px;
  }

  .top-design-hero {
    height: 520px;
  }

  .top-hero-copy {
    top: 74px;
    left: 22px;
    width: 58%;
  }

  .top-hero-copy h1 {
    margin-bottom: 34px;
    font-size: 31px;
  }

  .top-hero-copy p {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .top-hero-copy a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 17px;
  }

  .why-top-section {
    padding: 64px 18px 42px;
  }

  .why-top-section h2 {
    font-size: 30px;
  }

  .top-card-section {
    padding: 70px 18px 44px;
  }

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

  .top-card-grid article {
    min-height: 180px;
    padding: 26px 18px;
  }

  .service-classify {
    padding: 62px 0 40px;
  }

  .service-classify h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .chip-marquee {
    gap: 16px;
    padding: 0 8px;
  }

  .service-chip {
    min-height: 48px;
    padding: 0 20px;
    font-size: 18px;
  }

  .order-system-case {
    margin-bottom: 48px;
    padding: 46px 14px 34px;
  }

  .case-accent {
    width: 20px;
    height: 20px;
    margin-bottom: 14px;
  }

  .order-case-inner > h2 {
    font-size: 34px;
  }

  .order-case-inner > p {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
  }

  .order-card-body {
    padding: 14px 14px 16px;
  }

  .order-card h3 {
    font-size: 24px;
  }

  .order-card p {
    font-size: 15px;
  }

  .growth-support,
  .ops-guarantee {
    padding: 44px 14px 32px;
  }

  .ops-guarantee {
    margin-bottom: 36px;
  }

  .decor-red-bottom-left {
    bottom: -32px;
  }

  .decor-yellow-bottom-left {
    bottom: -42px;
  }

  .decor-violet-bottom-right {
    bottom: -36px;
  }

  .growth-head h2 {
    font-size: 34px;
  }

  .growth-head p {
    font-size: 14px;
  }

  .growth-card {
    padding: 14px;
  }

  .growth-card h3 {
    font-size: 24px;
  }

  .growth-card p {
    font-size: 14px;
  }

  .ops-head h2 {
    font-size: 34px;
  }

  .ops-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ops-points li {
    font-size: 14px;
  }

  .ops-visual {
    grid-template-columns: 1fr;
    row-gap: 14px;
    column-gap: 0;
  }

  .ops-visual-img {
    height: 200px;
  }

  .ops-years {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(220px, 68vw);
    height: 112px;
  }

  .ops-years strong {
    font-size: 36px;
  }

  .ops-years span {
    font-size: 14px;
  }

  .ops-footnote {
    font-size: 13px;
  }

  .decor {
    opacity: 0.6;
  }

  .finance-platform {
    padding: 44px 14px;
    margin-bottom: 42px;
  }

  .finance-platform h2 {
    font-size: 28px;
    line-height: 1.45;
    margin-bottom: 32px;
  }

  .finance-top-line {
    gap: 10px;
  }

  .finance-card-top strong {
    font-size: 28px;
  }

  .progress-ring {
    width: 58px;
    height: 58px;
  }

  .finance-copy h3 {
    font-size: 24px;
  }

  .finance-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .finance-copy a {
    padding: 0 22px;
    font-size: 14px;
  }
}

/* Home: process + pricing (screenshot sections) */
.home-process-section {
  width: 80%;
  margin: 0 auto;
  padding: 96px 0 88px;
  background: #fff;
}

.home-process-inner {
  width: 100%;
}

.home-process-head {
  margin-bottom: 54px;
  text-align: center;
}

.home-process-head h2 {
  margin: 0 0 18px;
  color: #12141c;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1.22;
  font-weight: 900;
}

.home-process-head p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: #6b7285;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.home-process-stage {
  --process-gap: 22px;
  --process-col: calc((100% - 2 * var(--process-gap)) / 3);
}

.home-process-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--process-gap);
  align-items: end;
  position: relative;
  margin-bottom: 20px;
  min-height: 64px;
  padding-top: 10px;
}

.home-process-track .home-process-node:nth-child(1) {
  grid-column: 1;
  justify-self: center;
}

.home-process-track .home-process-node:nth-child(2) {
  grid-column: 2;
  justify-self: center;
}

.home-process-track .home-process-node:nth-child(3) {
  grid-column: 3;
  justify-self: center;
}

.home-process-node {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #4f7df5 0%, #3f6cf0 100%);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(63, 108, 240, 0.28);
  font-size: 15px;
  font-weight: 900;
  z-index: 2;
}

.home-process-arc {
  position: absolute;
  bottom: 10px;
  height: 52px;
  width: calc(var(--process-col) + var(--process-gap));
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.home-process-arc--12 {
  left: calc(var(--process-col) / 2 + 26px);
}

.home-process-arc--23 {
  left: calc(var(--process-col) * 1.5 + var(--process-gap) + 26px);
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--process-gap);
}

.home-process-card {
  min-height: 320px;
  padding: 34px 28px 30px;
  text-align: center;
  background: #fff;
  border: 2px solid #d8e4ff;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(34, 58, 120, 0.06);
}

.home-process-icon {
  display: inline-grid;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  place-items: center;
  color: #3f6cf0;
}

.home-process-icon img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.home-process-card h3 {
  margin: 0 0 16px;
  color: #141824;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.home-process-card p {
  margin: 0;
  color: #5f6678;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}

.home-pricing-section {
  width: 80%;
  margin: 0 auto 96px;
  padding: 0 0 12px;
  background: #fff;
}

.home-pricing-inner {
  position: relative;
}

.home-pricing-head {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
  text-align: center;
}

.home-pricing-head h2 {
  margin: 0 0 18px;
  color: #12141c;
  font-size: clamp(40px, 3.8vw, 60px);
  line-height: 1.24;
  font-weight: 900;
}

.home-pricing-head p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #6b7285;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.home-pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.home-pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  min-height: 300px;
  padding: 34px 34px 34px 38px;
  border-radius: 22px;
}

.home-pricing-card--basic {
  background: #fff;
  border: 1px solid #e8edf8;
  box-shadow: 0 18px 48px rgba(30, 50, 100, 0.1);
}

.home-pricing-card--paid {
  color: #fff;
  background: linear-gradient(135deg, #4a6cf7 0%, #6f4ef0 52%, #8b5cf6 100%);
  box-shadow: 0 18px 48px rgba(30, 50, 100, 0.12);
}

.home-pricing-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.home-pricing-badge--outline {
  color: #3f6cf0;
  border: 1.5px solid #3f6cf0;
  background: #fff;
}

.home-pricing-badge--light {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

.home-pricing-price {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.home-pricing-price strong {
  font-size: clamp(42px, 3.4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.home-pricing-card--basic .home-pricing-price {
  color: #12141c;
}

.home-pricing-desc {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.home-pricing-card--basic .home-pricing-desc {
  color: #4a5162;
}

.home-pricing-card--paid .home-pricing-desc {
  color: rgba(255, 255, 255, 0.9);
}

.home-pricing-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.home-pricing-cta--primary {
  color: #fff;
  background: #3f6cf0;
  box-shadow: 0 10px 24px rgba(63, 108, 240, 0.32);
}

.home-pricing-cta--light {
  color: #3f6cf0;
  background: #fff;
}

.home-pricing-features {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-pricing-features li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.home-pricing-card--basic .home-pricing-features li {
  color: #2a3142;
}

.home-pricing-card--paid .home-pricing-features li {
  color: #fff;
}

.home-pricing-features li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.home-pricing-card--basic .home-pricing-features li::before {
  color: #fff;
  background: #3f6cf0;
}

.home-pricing-card--paid .home-pricing-features li::before {
  color: #4a6cf7;
  background: #fff;
}

@media (max-width: 920px) {
  .home-process-section,
  .home-pricing-section {
    width: 92%;
  }

  .home-process-stage {
    --process-gap: 18px;
  }

  .home-process-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }

  .home-process-track {
    display: none;
  }

  .home-process-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .home-pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-pricing-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .home-process-section,
  .home-pricing-section {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-process-section {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .home-process-head h2,
  .home-pricing-head h2 {
    font-size: 30px;
  }

  .home-process-head p,
  .home-pricing-head p {
    font-size: 14px;
  }

  .home-process-card h3 {
    font-size: 22px;
  }

  .home-pricing-section {
    margin-bottom: 48px;
  }

  .home-pricing-price strong {
    font-size: 36px;
  }

  .home-pricing-features li {
    font-size: 14px;
  }
}

/* Home: features + voices */
.home-features-section {
  width: 80%;
  margin: 0 auto;
  padding: 88px 0 72px;
  background: #fff;
}

.home-features-inner {
  text-align: center;
}

.home-features-head {
  margin-bottom: 52px;
}

.home-features-head h2 {
  margin: 0 0 16px;
  color: #12141c;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1.22;
  font-weight: 900;
}

.home-features-head p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: #6b7285;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
  text-align: center;
}

.home-feature-card {
  min-height: 280px;
  padding: 32px 22px 28px;
  background: #fff;
  border: 2px solid #e6ebf5;
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-feature-card:hover,
.home-feature-card.is-active {
  border-color: #3f6cf0;
  box-shadow: 0 16px 40px rgba(63, 108, 240, 0.12);
}

.home-feature-icon {
  display: inline-grid;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  place-items: center;
  color: #3f6cf0;
}

.home-feature-icon img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.home-feature-card h3 {
  margin: 0 0 14px;
  color: #141824;
  font-size: 24px;
  font-weight: 900;
}

.home-feature-card p {
  margin: 0;
  color: #5f6678;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
}

.home-features-more {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  color: #fff;
  background: #3f6cf0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(63, 108, 240, 0.28);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.home-features-more:hover {
  transform: translateY(-2px);
  background: #4a7aff;
  box-shadow: 0 16px 34px rgba(63, 108, 240, 0.38);
}

.home-features-more:active {
  transform: translateY(0);
  background: #3560e8;
  box-shadow: 0 6px 16px rgba(63, 108, 240, 0.22);
}

.home-voices-section {
  width: 80%;
  margin: 0 auto 100px;
  padding: 0 0 20px;
  background: #fff;
}

.home-voices-inner {
  position: relative;
  overflow: hidden;
}

.home-voices-glow {
  position: absolute;
  top: 40px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(79, 125, 245, 0.18) 48%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.home-voices-head {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
  text-align: center;
}

.home-voices-head h2 {
  margin: 0 0 16px;
  color: #12141c;
  font-size: clamp(40px, 3.6vw, 58px);
  line-height: 1.22;
  font-weight: 900;
}

.home-voices-head p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: #6b7285;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.home-voices-stage {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 72px;
}

.home-voices-tip {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 10px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8edf8;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(30, 50, 100, 0.12);
  transform: translateX(-50%);
  transition: left 0.28s ease, opacity 0.2s ease;
}

.home-voices-tip::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1px solid #e8edf8;
  border-bottom: 1px solid #e8edf8;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.home-voices-tip[hidden] {
  display: none;
}

.home-voices-tip strong {
  color: #12141c;
  font-size: 14px;
  font-weight: 900;
}

.home-voices-tip span {
  color: #6b7285;
  font-size: 12px;
  font-weight: 700;
}

.home-voices-avatars {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
  margin-bottom: 36px;
}

.home-voices-avatar {
  position: relative;
  width: clamp(52px, 6vw, 72px);
  height: clamp(52px, 6vw, 72px);
  padding: 0;
  border: 3px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-voices-avatar.is-active {
  border-color: #3f6cf0;
  transform: scale(1.06);
}

.home-voices-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.home-voices-photo--a {
  background-image: linear-gradient(160deg, #f6d7c3 0%, #c88462 100%);
}

.home-voices-photo--b {
  background-image: linear-gradient(160deg, #d8e8ff 0%, #6f8fd4 100%);
}

.home-voices-photo--c {
  background-image: linear-gradient(160deg, #ffe2ef 0%, #d46f9b 100%);
}

.home-voices-photo--d {
  background-image: linear-gradient(160deg, #e8f0ff 0%, #4a6cf7 100%);
}

.home-voices-photo--e {
  background-image: linear-gradient(160deg, #dff6ea 0%, #3f9f74 100%);
}

.home-voices-photo--f {
  background-image: linear-gradient(160deg, #fff0d6 0%, #d49b3f 100%);
}

.home-voices-panel {
  padding: 42px clamp(28px, 5vw, 56px) 36px;
  text-align: center;
  background: #fff;
  border: 1px solid #edf1f8;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(30, 50, 100, 0.1);
}

.home-voices-panel p {
  margin: 0 0 28px;
  color: #4a5162;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}

.home-voices-company {
  display: block;
  color: #3f6cf0;
  font-size: 20px;
  font-weight: 900;
}

.home-voices-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.home-voices-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8d8ff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-voices-dot.is-active {
  background: #3f6cf0;
  transform: scale(1.15);
}

@media (max-width: 920px) {
  .home-features-section,
  .home-voices-section {
    width: 92%;
  }

  .home-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-voices-stage {
    padding-top: 64px;
  }
}

@media (max-width: 640px) {
  .home-features-section,
  .home-voices-section {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-features-section {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .home-features-head h2,
  .home-voices-head h2 {
    font-size: 30px;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-feature-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .home-voices-section {
    margin-bottom: 56px;
  }

  .home-voices-panel {
    padding: 28px 18px 24px;
  }

  .home-voices-panel p {
    font-size: 14px;
  }

  .home-voices-company {
    font-size: 17px;
  }

  .home-voices-glow {
    right: -60px;
    width: 200px;
    height: 200px;
  }
}

/* Home: contact, afterservice faq, footer */
.home-contact-capture {
  width: 80%;
  margin: 0 auto 66px;
}

.home-contact-capture-inner {
  padding: 54px 64px 48px;
  color: #fff;
  background: linear-gradient(120deg, #7b56d9 0%, #4f7df5 54%, #5574e3 100%);
  border-radius: 22px;
  box-shadow: 0 22px 56px rgba(70, 95, 200, 0.28);
}

.home-contact-capture-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.2;
}

.home-contact-capture-inner p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
}

.home-contact-capture-form {
  display: flex;
  gap: 14px;
  max-width: 620px;
}

.home-contact-capture-form input {
  flex: 1;
  height: 48px;
  padding: 0 18px;
  color: #eef2ff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.home-contact-capture-form input:focus,
.home-contact-capture-form input:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.home-contact-capture-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.home-contact-capture-form button {
  height: 48px;
  padding: 0 22px;
  color: #3964ec;
  background: #fff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(12, 36, 88, 0.2);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.home-contact-capture-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(12, 36, 88, 0.28);
}

.home-contact-capture-form button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(12, 36, 88, 0.16);
  background: #f5f7ff;
}

.home-afterservice-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 44px 0 86px;
  background: #eeeff9;
  overflow: hidden;
}

.home-afterservice-glow {
  position: absolute;
  bottom: 148px;
  left: -62px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, #4f7df5 0%, #6d5de2 68%, rgba(109, 93, 226, 0) 100%);
}

.home-afterservice-inner {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.home-afterservice-head {
  margin-bottom: 38px;
}

.home-afterservice-head h2 {
  margin: 0 0 12px;
  color: #161a25;
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.24;
}

.home-afterservice-head p {
  margin: 0;
  color: #666f86;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}

.home-afterservice-faq {
  width: min(1040px, 100%);
  margin: 0 auto 34px;
  padding: 30px 38px;
  text-align: left;
  background: #fff;
  border-radius: 16px;
}

.home-afterservice-faq details {
  padding: 14px 0;
  border-bottom: 1px solid #edf1fa;
}

.home-afterservice-faq details:last-child {
  border-bottom: 0;
}

.home-afterservice-faq summary {
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  color: #21283a;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.home-afterservice-faq summary::-webkit-details-marker {
  display: none;
}

.home-afterservice-faq summary::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4f7df5;
  content: "";
}

.home-afterservice-faq p {
  margin: 12px 0 0;
  color: #667189;
  font-size: 13px;
  line-height: 1.85;
}

.home-afterservice-more {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: #fff;
  background: #4f7df5;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
}

.home-big-footer {
  background: #fff;
}

.home-big-footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 46px;
  width: 80%;
  margin: 0 auto;
  padding: 72px 0 58px;
}

.home-big-footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: #4f7df5;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
}

.home-big-footer-brand p {
  margin: 0 0 26px;
  color: #5f6780;
  font-size: 14px;
}

.home-big-footer-socials {
  display: flex;
  gap: 10px;
}

.home-big-footer-socials a {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #4f7df5;
}

.home-big-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-big-footer-links h3 {
  margin: 0 0 16px;
  color: #4f7df5;
  font-size: 18px;
}

.home-big-footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #3f485f;
  font-size: 14px;
  font-weight: 600;
}

.home-big-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 10%;
  color: rgba(255, 255, 255, 0.9);
  background: #5c79e8;
  font-size: 12px;
}

.home-big-footer-bottom div {
  display: flex;
  gap: 24px;
}

.home-big-footer-bottom a {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 920px) {
  .home-contact-capture,
  .home-afterservice-inner,
  .home-big-footer-main {
    width: 92%;
  }

  .home-contact-capture-inner {
    padding: 36px 28px;
  }

  .home-afterservice-faq {
    padding: 22px 20px;
  }

  .home-big-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-big-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .home-contact-capture {
    width: 100%;
    margin-bottom: 44px;
    padding: 0 14px;
  }

  .home-contact-capture-inner {
    padding: 24px 18px;
  }

  .home-contact-capture-inner h2 {
    font-size: 30px;
  }

  .home-contact-capture-form {
    flex-direction: column;
  }

  .home-contact-capture-form button {
    width: 100%;
  }

  .home-afterservice-section {
    padding: 36px 0 58px;
  }

  .home-afterservice-inner {
    width: 100%;
    padding: 0 14px;
  }

  .home-afterservice-head h2 {
    font-size: 30px;
  }

  .home-afterservice-head p {
    font-size: 13px;
  }

  .home-afterservice-faq {
    padding: 16px 14px;
  }

  .home-afterservice-faq summary {
    font-size: 14px;
  }

  .home-afterservice-glow {
    width: 130px;
    height: 130px;
    bottom: 102px;
    left: -46px;
  }

  .home-big-footer-main {
    width: 100%;
    padding: 44px 14px 34px;
  }

  .home-big-footer-brand strong {
    font-size: 28px;
  }

  .home-big-footer-links {
    grid-template-columns: 1fr;
  }

  .home-big-footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 14px;
  }

  .home-big-footer-bottom div {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========== PC Home Motion ========== */
@media (prefers-reduced-motion: no-preference) {
  .home-page {
    scroll-behavior: smooth;
  }

  @keyframes pc-fade-up {
    from {
      opacity: 0;
      transform: translateY(24px);
    }

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

  @keyframes pc-breathe {
    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.04);
    }
  }

  @keyframes pc-breathe-soft {
    0%,
    100% {
      transform: translateY(0);
      box-shadow: 0 4px 16px rgba(12, 36, 88, 0.16);
    }

    50% {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(12, 36, 88, 0.26);
    }
  }

  @keyframes pc-float {
    0%,
    100% {
      transform: translateY(0);
    }

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

  @keyframes pc-glow-pulse {
    0%,
    100% {
      opacity: 0.42;
      transform: scale(1);
    }

    50% {
      opacity: 0.72;
      transform: scale(1.1);
    }
  }

  @keyframes pc-draw-line {
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes pc-shimmer {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  body.pc-page-loaded .top-hero-copy h1,
  body.pc-page-loaded .top-hero-copy p,
  body.pc-page-loaded .top-hero-copy a {
    opacity: 0;
    animation: pc-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  body.pc-page-loaded .top-hero-copy h1 {
    animation-delay: 0.1s;
  }

  body.pc-page-loaded .top-hero-copy p {
    animation-delay: 0.22s;
  }

  body.pc-page-loaded .top-hero-copy a {
    animation:
      pc-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards,
      pc-breathe-soft 3.2s ease-in-out 1.2s infinite;
  }

  .top-contact {
    animation: pc-breathe-soft 3.4s ease-in-out infinite 0.8s;
  }

  .pc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--pc-reveal-delay, 0s);
  }

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

  .top-design-hero.pc-reveal {
    opacity: 1;
    transform: none;
  }

  .why-top-section.is-visible h2 {
    animation: pc-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .more-button {
    animation: pc-breathe-soft 3.2s ease-in-out infinite;
  }

  .order-system-case.is-visible .order-cards > .order-card {
    animation: pc-fade-up 0.65s ease backwards;
  }

  .order-system-case.is-visible .order-cards > .order-card:nth-child(1) {
    animation-delay: 0.05s;
  }

  .order-system-case.is-visible .order-cards > .order-card:nth-child(2) {
    animation-delay: 0.14s;
  }

  .order-system-case.is-visible .order-cards > .order-card:nth-child(3) {
    animation-delay: 0.23s;
  }

  .growth-support.is-visible .growth-cards > .growth-card {
    animation: pc-fade-up 0.6s ease backwards;
  }

  .growth-support.is-visible .growth-cards > .growth-card:nth-child(1) {
    animation-delay: 0.04s;
  }

  .growth-support.is-visible .growth-cards > .growth-card:nth-child(2) {
    animation-delay: 0.11s;
  }

  .growth-support.is-visible .growth-cards > .growth-card:nth-child(3) {
    animation-delay: 0.18s;
  }

  .growth-support.is-visible .growth-cards > .growth-card:nth-child(4) {
    animation-delay: 0.25s;
  }

  .growth-support .decor {
    animation: pc-float 5s ease-in-out infinite;
  }

  .home-process-section.is-visible .home-process-node {
    animation: pc-breathe 3s ease-in-out infinite;
  }

  .home-process-section.is-visible .home-process-grid > .home-process-card {
    animation: pc-fade-up 0.6s ease backwards;
  }

  .home-process-section.is-visible .home-process-grid > .home-process-card:nth-child(1) {
    animation-delay: 0.05s;
  }

  .home-process-section.is-visible .home-process-grid > .home-process-card:nth-child(2) {
    animation-delay: 0.13s;
  }

  .home-process-section.is-visible .home-process-grid > .home-process-card:nth-child(3) {
    animation-delay: 0.21s;
  }

  @keyframes home-process-icon-float {
    0%,
    100% {
      transform: translateY(0);
    }

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

  .home-process-icon img {
    animation: home-process-icon-float 3.2s ease-in-out infinite;
  }

  .home-process-grid > .home-process-card:nth-child(1) .home-process-icon img {
    animation-delay: 0s;
  }

  .home-process-grid > .home-process-card:nth-child(2) .home-process-icon img {
    animation-delay: 0.45s;
  }

  .home-process-grid > .home-process-card:nth-child(3) .home-process-icon img {
    animation-delay: 0.9s;
  }

  .home-afterservice-glow,
  .home-voices-glow {
    animation: pc-glow-pulse 5.5s ease-in-out infinite;
  }

  .home-pricing-section.is-visible .home-pricing-grid > .home-pricing-card {
    animation: pc-fade-up 0.65s ease backwards;
  }

  .home-pricing-section.is-visible .home-pricing-grid > .home-pricing-card:nth-child(1) {
    animation-delay: 0.06s;
  }

  .home-pricing-section.is-visible .home-pricing-grid > .home-pricing-card:nth-child(2) {
    animation-delay: 0.14s;
  }

  .home-pricing-section.is-visible .home-pricing-cta {
    animation: pc-breathe-soft 3.2s ease-in-out infinite 0.35s;
  }

  .home-features-section.is-visible .home-features-grid > .home-feature-card {
    animation: pc-fade-up 0.55s ease backwards;
  }

  .home-features-section.is-visible .home-features-grid > .home-feature-card:nth-child(1) {
    animation-delay: 0.04s;
  }

  .home-features-section.is-visible .home-features-grid > .home-feature-card:nth-child(2) {
    animation-delay: 0.1s;
  }

  .home-features-section.is-visible .home-features-grid > .home-feature-card:nth-child(3) {
    animation-delay: 0.16s;
  }

  .home-features-section.is-visible .home-features-grid > .home-feature-card:nth-child(4) {
    animation-delay: 0.22s;
  }

  .home-feature-icon img {
    animation: home-process-icon-float 3.2s ease-in-out infinite;
  }

  .home-features-grid > .home-feature-card:nth-child(1) .home-feature-icon img {
    animation-delay: 0s;
  }

  .home-features-grid > .home-feature-card:nth-child(2) .home-feature-icon img {
    animation-delay: 0.4s;
  }

  .home-features-grid > .home-feature-card:nth-child(3) .home-feature-icon img {
    animation-delay: 0.8s;
  }

  .home-features-grid > .home-feature-card:nth-child(4) .home-feature-icon img {
    animation-delay: 1.2s;
  }

  .home-voices-section.is-visible [data-voice-avatar] {
    transition: transform 0.35s ease;
  }

  .home-voices-section.is-visible [data-voice-avatar].is-active {
    animation: pc-breathe 2.8s ease-in-out infinite;
  }

  .home-contact-capture.is-visible .home-contact-capture-inner {
    animation: pc-fade-up 0.7s ease backwards;
  }

  .home-afterservice-section.is-visible .home-afterservice-faq > details {
    animation: pc-fade-up 0.5s ease backwards;
  }

  .home-afterservice-section.is-visible .home-afterservice-faq > details:nth-child(1) {
    animation-delay: 0.04s;
  }

  .home-afterservice-section.is-visible .home-afterservice-faq > details:nth-child(2) {
    animation-delay: 0.1s;
  }

  .home-afterservice-section.is-visible .home-afterservice-faq > details:nth-child(3) {
    animation-delay: 0.16s;
  }

  .home-afterservice-section.is-visible .home-afterservice-faq > details:nth-child(4) {
    animation-delay: 0.22s;
  }

  .home-afterservice-more {
    animation: pc-breathe-soft 3s ease-in-out infinite;
  }

  .home-big-footer.is-visible .home-big-footer-brand strong {
    animation: pc-fade-up 0.65s ease backwards;
  }
}

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

  .pc-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
