:root {
  --orange: #ff7a00;
  --orange-strong: #f26100;
  --orange-soft: #fff1e4;
  --orange-pale: #fff8f2;
  --blue: #0b2d86;
  --blue-deep: #071d50;
  --ink: #101522;
  --muted: #667085;
  --line: #e9ebf0;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --shadow: 0 24px 70px rgba(22, 36, 70, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --page: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(16, 21, 34, 0.07);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(27, 36, 62, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--page);
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img,
.footer-brand img {
  width: 158px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: 54px;
}

.main-nav a {
  position: relative;
  color: #343a49;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -10px;
  left: 50%;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--orange);
  transition: left 0.2s ease, right 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.button-lg {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 14px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #ff8a00, var(--orange-strong));
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.32);
}

.button-ghost {
  border-color: #dcdfe6;
  color: #242a37;
  background: rgba(255, 255, 255, 0.7);
}

.button-dark {
  min-height: 50px;
  padding: 0 22px;
  color: white;
  background: var(--blue-deep);
}

.play-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 9px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--surface-soft);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 4px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding-top: 152px;
  padding-bottom: 50px;
  background:
    radial-gradient(circle at 75% 10%, rgba(255, 165, 68, 0.18), transparent 31%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 78%);
}

.hero::before {
  position: absolute;
  top: 110px;
  right: -130px;
  width: 720px;
  height: 720px;
  content: "";
  opacity: 0.5;
  background: url("./assets/hero-bg.png") center/cover no-repeat;
  mix-blend-mode: multiply;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-glow-one {
  top: 180px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: rgba(255, 222, 190, 0.32);
}

.hero-glow-two {
  top: 90px;
  right: 27%;
  width: 200px;
  height: 200px;
  background: rgba(255, 150, 30, 0.14);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 52px;
}

.hero-slider {
  position: relative;
  z-index: 2;
}

.hero-slides {
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(26px);
  transition: opacity 0.62s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.62s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-controls {
  position: absolute;
  z-index: 12;
  bottom: 14px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 122, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(58, 48, 37, 0.09);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  display: grid;
  width: 25px;
  height: 25px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #9a7354;
  background: transparent;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow:hover {
  color: #fff;
  background: var(--orange);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9d9dd;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 20px;
  background: var(--orange);
}

.hero-copy,
.hero-visual,
.visual-card,
.visual-workspace > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  letter-spacing: 0;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.11);
}

.hero h1 {
  max-width: 580px;
  margin: 28px 0 22px;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: var(--orange);
  background: linear-gradient(90deg, #ff7200 0%, #ff9a16 55%, #f35a0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.hero-proof {
  display: flex;
  align-items: center;
  margin-top: 42px;
}

.proof-item {
  display: grid;
  gap: 6px;
}

.proof-item strong {
  font-size: 18px;
}

.proof-item span {
  color: #7b8190;
  font-size: 12px;
}

.proof-divider {
  width: 1px;
  height: 32px;
  margin: 0 22px;
  background: #dfe2e8;
}

.hero-visual {
  position: relative;
  width: calc(100% + 42px);
  min-width: 0;
  margin-left: -42px;
  padding: 54px 0 64px;
}

.hero-banner-card {
  position: relative;
  z-index: 3;
  aspect-ratio: 3 / 2;
  overflow: visible;
  background: transparent;
}

.hero-banner-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 15% 9% 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 52% 48%, rgba(255, 233, 204, 0.75), rgba(255, 243, 230, 0.3) 48%, transparent 76%);
  filter: blur(26px);
}

.hero-banner-card > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.hero-banner-card:hover > img {
  transform: scale(1.018);
  filter: saturate(1.04);
}

.canvas-slide .hero-copy {
  padding-right: 6px;
}

.canvas-eyebrow {
  color: #f05d0b;
  background: rgba(255, 250, 246, 0.9);
}

.canvas-visual {
  width: calc(100% + 20px);
  margin-left: -20px;
  padding: 30px 0 62px;
}

.canvas-image-shell {
  position: relative;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 0, 0.14);
  border-radius: 30px;
  background: #fffaf6;
  box-shadow: 0 30px 75px rgba(191, 98, 13, 0.15);
}

.canvas-image-shell::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.canvas-image-shell > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.canvas-image-shell:hover > img {
  transform: scale(1.025);
}

.canvas-float-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px 9px 9px;
  border: 1px solid rgba(255, 122, 0, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(127, 68, 18, 0.12);
  backdrop-filter: blur(12px);
}

.canvas-float-badge span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #ff9a16, #f25c00);
  font-size: 12px;
  font-weight: 900;
}

.canvas-float-badge strong {
  font-size: 11px;
}

.banner-engine-mark {
  position: absolute;
  z-index: 3;
  bottom: 13%;
  left: 41%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 137, 28, 0.18);
  border-radius: 14px;
  color: #171a24;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(191, 98, 13, 0.13);
  backdrop-filter: blur(14px);
}

.banner-engine-mark > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #ff9a16, #f25c00);
  font-size: 13px;
  font-weight: 900;
}

.banner-engine-mark > div {
  display: grid;
  gap: 3px;
}

.banner-engine-mark small {
  color: #a26a38;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.banner-engine-mark strong {
  font-size: 11px;
}

.banner-live-dot {
  position: absolute;
  z-index: 3;
  top: 15%;
  right: 12%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 137, 28, 0.2);
  border-radius: 999px;
  color: #a15a19;
  background: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.banner-live-dot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8a00;
  box-shadow: 0 0 0 5px rgba(255, 138, 0, 0.14);
}

.visual-card {
  position: relative;
  z-index: 3;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 0, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 40px 100px rgba(80, 49, 19, 0.16);
  backdrop-filter: blur(18px);
}

.visual-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 134, 22, 0.12);
  filter: blur(4px);
}

.visual-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.visual-card-head > div {
  display: grid;
  gap: 6px;
}

.visual-card-head strong {
  font-size: 16px;
}

.card-kicker {
  color: #9b6c40;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.status-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #9a4e00;
  background: #fff1df;
  font-size: 11px;
  font-weight: 700;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.visual-workspace {
  display: grid;
  grid-template-columns: 0.72fr 60px 1.25fr;
  align-items: center;
  margin-top: 22px;
}

.upload-tile,
.result-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ebe2d8;
  border-radius: 18px;
  background: #fbf8f5;
}

.upload-tile {
  height: 272px;
  padding: 14px;
}

.result-tile {
  height: 320px;
  box-shadow: 0 16px 32px rgba(120, 77, 32, 0.1);
}

.result-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #6e5842;
  background: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(7px);
}

.product-cutout {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  border-radius: 13px;
  background:
    linear-gradient(45deg, #f2f0ec 25%, transparent 25%) -8px 0/16px 16px,
    linear-gradient(-45deg, #f2f0ec 25%, transparent 25%) -8px 0/16px 16px,
    linear-gradient(45deg, transparent 75%, #f2f0ec 75%) -8px 0/16px 16px,
    linear-gradient(-45deg, transparent 75%, #f2f0ec 75%) -8px 0/16px 16px,
    #faf9f7;
}

.chair-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 22px;
  color: white;
  background: linear-gradient(145deg, #7b482d, #c78b58);
  box-shadow: 0 18px 35px rgba(96, 53, 26, 0.22);
  font-size: 32px;
}

.product-cutout small {
  color: #8a8278;
}

.process-arrow {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--orange);
}

.process-arrow span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 10px;
  background: var(--orange-soft);
  font-size: 11px;
  font-weight: 900;
}

.process-arrow i {
  font-size: 22px;
  font-style: normal;
}

.visual-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.visual-tags span,
.solution-chips span {
  padding: 7px 10px;
  border: 1px solid #eee7df;
  border-radius: 9px;
  color: #6e6155;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(35, 30, 24, 0.12);
  backdrop-filter: blur(14px);
}

.floating-chip div {
  display: grid;
  gap: 3px;
}

.floating-chip small {
  color: #8a8f9b;
  font-size: 9px;
}

.floating-chip strong {
  font-size: 11px;
}

.chip-icon {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 10px;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 15px;
}

.chip-platform {
  right: -5px;
  bottom: 20px;
}

.chip-speed {
  top: 18px;
  left: -8px;
}

.visual-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 122, 0, 0.17);
  border-radius: 50%;
}

.orbit-one {
  top: 10px;
  right: -40px;
  width: 520px;
  height: 520px;
}

.orbit-two {
  top: 62px;
  right: 18px;
  width: 410px;
  height: 410px;
}

.platform-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 44px;
  margin-top: 40px;
  padding: 22px 28px;
  border: 1px solid #f0e8e0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(30, 37, 55, 0.05);
  backdrop-filter: blur(12px);
}

.strip-title {
  flex: 0 0 auto;
  color: #777e8b;
  font-size: 12px;
  font-weight: 600;
}

.platform-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.platform-list > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3a404c;
  font-size: 13px;
  font-weight: 700;
}

.platform-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.temu { background: #ff620f; }
.shein { background: #111; }
.amazon { background: #171717; color: #ffb400; }
.tiktok { background: #101114; }
.ozon { background: #186cf0; }
.mercado { background: #ffd600; color: #203b89; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 42px;
}

.section-heading > div {
  max-width: 680px;
}

.section-heading h2,
.showcase-copy h2,
.about-copy h2,
.cta-card h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.section-heading.centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 54px;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  max-width: 620px;
}

.features {
  background: #fff;
}

.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.feature-tab {
  min-height: 48px;
  border: 0;
  border-radius: 11px;
  color: #676d79;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.feature-tab.active {
  color: var(--orange-strong);
  background: white;
  box-shadow: 0 8px 22px rgba(29, 34, 48, 0.08);
}

.feature-stage {
  display: grid;
  min-height: 500px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #eceef2;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffaf5, #f7f8fb 72%);
}

.feature-content {
  padding: 60px 52px;
}

.feature-index {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-content h3 {
  margin: 16px 0;
  font-size: 34px;
  line-height: 1.3;
}

.feature-content > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #424957;
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 11px;
  font-weight: 900;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-strong);
  font-size: 14px;
  font-weight: 800;
}

.inline-link span {
  transition: transform 0.2s ease;
}

.inline-link:hover span {
  transform: translateX(4px);
}

.feature-media {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 34px;
  background: radial-gradient(circle at 50% 50%, #fff0dd, #fff8f1 68%, transparent 69%);
}

.feature-media img {
  width: 100%;
  height: auto;
  max-height: 432px;
  border: 1px solid rgba(255, 127, 0, 0.12);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(139, 77, 23, 0.18);
}

.media-badge {
  position: absolute;
  right: 64px;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  color: #6d430d;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(64, 40, 16, 0.12);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.media-badge span {
  color: var(--orange);
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.mini-feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mini-feature-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.22);
  box-shadow: 0 18px 45px rgba(31, 38, 60, 0.08);
}

.mini-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--orange);
  background: var(--orange-soft);
  font-weight: 900;
}

.mini-feature-grid h3 {
  margin: 18px 0 8px;
  font-size: 16px;
}

.mini-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.solutions,
.pricing {
  background: var(--surface-soft);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.solution-card {
  position: relative;
  min-height: 420px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  border-radius: 26px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.solution-card-large {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1fr 0.8fr;
  min-height: 390px;
  align-items: center;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 150, 30, 0.34), transparent 30%),
    linear-gradient(135deg, #091f55, #0b2d86 55%, #123c9f);
}

.solution-card-large .solution-label,
.solution-video .solution-label {
  color: #ffbf75;
  background: rgba(255, 255, 255, 0.1);
}

.solution-label,
.plan-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--orange-strong);
  background: var(--orange-soft);
  font-size: 11px;
  font-weight: 800;
}

.solution-card h3 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1.28;
}

.solution-card p {
  max-width: 560px;
  margin: 0;
  color: #737b8b;
  line-height: 1.8;
}

.solution-card-large p,
.solution-video p {
  color: rgba(255, 255, 255, 0.7);
}

.solution-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.solution-card-large .solution-chips span {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.platform-wheel {
  position: relative;
  width: 290px;
  height: 290px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.platform-wheel::before {
  position: absolute;
  inset: 38px;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.wheel-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 94px;
  height: 94px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: linear-gradient(145deg, #ff9a16, #ff6500);
  box-shadow: 0 20px 50px rgba(255, 105, 0, 0.35);
  font-size: 30px;
  font-weight: 900;
}

.wheel-item {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  font-style: normal;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.wi-1 { top: 5px; left: 122px; }
.wi-2 { top: 122px; right: 5px; }
.wi-3 { bottom: 5px; left: 122px; color: #ffad20; }
.wi-4 { top: 122px; left: 5px; }

.solution-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 220px;
}

.model-visual {
  background: linear-gradient(180deg, transparent, #fff4e9);
}

.model-card {
  position: absolute;
  bottom: -28px;
  width: 185px;
  height: 230px;
  border: 8px solid #fff;
  border-radius: 90px 90px 24px 24px;
  box-shadow: 0 18px 40px rgba(59, 44, 32, 0.13);
}

.model-a {
  left: 100px;
  transform: rotate(-7deg);
  background:
    radial-gradient(circle at 50% 27%, #d69b7b 0 17%, transparent 18%),
    linear-gradient(135deg, transparent 44%, #c9a1ff 45% 66%, transparent 67%),
    linear-gradient(145deg, #ffe1cf, #edb08c);
}

.model-b {
  right: 100px;
  transform: rotate(6deg);
  background:
    radial-gradient(circle at 50% 27%, #b87959 0 17%, transparent 18%),
    linear-gradient(135deg, transparent 44%, #ff9c63 45% 66%, transparent 67%),
    linear-gradient(145deg, #e9c2ad, #b88269);
}

.spark {
  position: absolute;
  color: var(--orange);
}

.spark-a { top: 34px; left: 56px; font-size: 28px; }
.spark-b { top: 90px; right: 66px; font-size: 18px; }

.sku-visual {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 24px;
  padding-bottom: 28px;
  background: linear-gradient(180deg, transparent, #f3f6fb);
}

.sku-product {
  width: 136px;
  height: 158px;
  border-radius: 26px 26px 42px 42px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255,255,255,.5) 45% 55%, transparent 56%),
    linear-gradient(145deg, #081e54, #2453be);
  box-shadow: 0 24px 45px rgba(13, 42, 109, 0.25);
}

.swatches {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(34, 42, 64, 0.1);
}

.swatches i {
  width: 23px;
  height: 23px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #0b2d86;
  box-shadow: 0 0 0 1px #d9dde6;
}

.swatches i:nth-child(2) { background: #ff7a00; }
.swatches i:nth-child(3) { background: #8d58de; }
.swatches i:nth-child(4) { background: #222; }

.sku-tag {
  position: absolute;
  right: 84px;
  bottom: 65px;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--orange-strong);
  background: #fff;
  box-shadow: 0 10px 25px rgba(34, 42, 64, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.solution-video {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 50px;
  min-height: 420px;
  color: #fff;
  border: 0;
  background: linear-gradient(130deg, #121827, #101d3c 70%, #152b60);
}

.video-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.video-preview img {
  width: 100%;
  height: 292px;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 122, 0, 0.86);
  box-shadow: 0 14px 34px rgba(255, 105, 0, 0.35);
  backdrop-filter: blur(12px);
}

.product-showcase {
  overflow: hidden;
  background: #fff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 54px;
}

.showcase-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.number-list {
  display: grid;
  gap: 4px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eceef2;
}

.number-list li > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.number-list div {
  display: grid;
  gap: 5px;
}

.number-list strong {
  font-size: 14px;
}

.number-list small {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e3e6ed;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(35, 47, 78, 0.16);
}

.browser-bar {
  display: grid;
  height: 38px;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 10px;
  color: #8a909b;
  font-size: 10px;
  text-align: center;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5e7ec;
}

.browser-dots i:first-child { background: #ff8b7b; }
.browser-dots i:nth-child(2) { background: #ffd169; }
.browser-dots i:nth-child(3) { background: #66d293; }

.secure {
  color: #42a66c;
  text-align: right;
}

.dashboard-frame > img {
  width: 100%;
  border: 1px solid #edf0f4;
  border-radius: 18px;
}

.dashboard-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(28, 39, 68, 0.15);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.dashboard-float span {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.float-one { right: -18px; bottom: 68px; }
.float-two { top: 96px; left: -26px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 710px;
  padding: 32px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e4e7ed;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(33, 39, 55, 0.055);
}

.price-card.featured {
  transform: translateY(-12px);
  border: 1px solid rgba(255, 122, 0, 0.62);
  box-shadow: 0 28px 68px rgba(255, 122, 0, 0.15);
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.popular-tag.soft {
  color: #5e4be9;
  background: #eeeaff;
}

.popular-tag.dark {
  background: #403851;
}

.price-card h3 {
  margin: 22px 0 8px;
  font-size: 27px;
}

.plan-desc {
  min-height: 46px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.plan-price {
  display: grid;
  gap: 3px;
  margin: 24px 0 16px;
}

.plan-price > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.plan-price strong {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--orange);
}

.plan-price strong em {
  font-size: 38px;
  font-style: normal;
  line-height: 1;
}

.plan-price strong small {
  color: #20242e;
  font-size: 13px;
}

.plan-price del {
  color: #a5a9b2;
  font-size: 12px;
}

.plan-price span {
  color: #979ca7;
  font-size: 11px;
}

.quota-panel {
  position: relative;
  margin-bottom: 24px;
  padding: 24px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff8ef, #fffdfb);
}

.plan-mini .quota-panel {
  background: linear-gradient(145deg, #f4f2ff, #fffaff);
}

.plan-max .quota-panel {
  background: linear-gradient(145deg, #f5f2fa, #fffbf6);
}

.quota-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 12px;
  border-radius: 20px 0 12px 0;
  color: #fff;
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.plan-mini .quota-label { background: #6c5cf4; }
.plan-max .quota-label { background: #403851; }

.quota {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 18px;
}

.quota strong {
  color: var(--orange);
  font-size: 31px;
  line-height: 1;
}

.plan-mini .quota strong { color: #5b48ee; }
.plan-max .quota strong { color: #403851; }

.quota span {
  color: #444a58;
  font-size: 12px;
}

.quota-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(116, 102, 89, 0.11);
}

.quota-stats > span {
  display: grid;
  gap: 3px;
  padding-top: 14px;
  text-align: center;
}

.quota-stats > span + span {
  border-left: 1px solid rgba(116, 102, 89, 0.11);
}

.quota-stats strong {
  font-size: 13px;
}

.quota-stats small {
  color: #8b909b;
  font-size: 10px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: #49505d;
  font-size: 12px;
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.button-plan {
  min-height: 48px;
  margin-top: auto;
  border-color: #dde0e7;
  color: #292f3c;
  background: #fff;
}

.price-card .button-primary {
  min-height: 48px;
  margin-top: auto;
}

.max-button {
  border-color: #403851;
  color: #fff;
  background: #403851;
}

.about {
  background: #fff;
}

.about-card {
  position: relative;
  display: grid;
  min-height: 470px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  overflow: hidden;
  padding: 70px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 142, 23, 0.42), transparent 26%),
    linear-gradient(135deg, #071c4d, #0b2d86 58%, #153f99);
}

.section-kicker.light {
  color: #ffb45d;
}

.about-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.product-matrix {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.product-matrix > span {
  display: grid;
  gap: 4px;
  min-width: 112px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.product-matrix small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 500;
}

.product-matrix i {
  color: rgba(255, 255, 255, 0.34);
  font-style: normal;
}

.about-symbol {
  position: relative;
  width: 320px;
  height: 320px;
  margin-inline: auto;
}

.symbol-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.ring-a { inset: 0; }
.ring-b { inset: 48px; border-style: dashed; }

.symbol-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%) rotate(-8deg);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  background: linear-gradient(145deg, #ff9f27, #ff6300);
  box-shadow: 0 30px 80px rgba(255, 109, 0, 0.4);
  font-size: 42px;
  font-weight: 900;
}

.cta-section {
  padding: 0 0 112px;
  background: #fff;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 46px 52px;
  border: 1px solid #f1e6dc;
  border-radius: 26px;
  background: linear-gradient(120deg, #fff8f1, #fff 62%, #fff3e6);
}

.cta-card h2 {
  font-size: 34px;
}

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

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-number {
  display: grid;
  flex: 0 0 auto;
  gap: 4px;
}

.contact-number small {
  color: #8a909b;
  font-size: 10px;
}

.contact-number strong {
  font-size: 16px;
}

.floating-wechat {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 28px;
  display: grid;
  width: 172px;
  justify-items: center;
  padding: 15px 14px 13px;
  border: 1px solid rgba(255, 122, 0, 0.16);
  border-radius: 20px;
  color: #20242e;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 55px rgba(27, 38, 65, 0.16), 0 4px 14px rgba(255, 122, 0, 0.08);
  backdrop-filter: blur(16px);
}

.wechat-title {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.wechat-title i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20bf6b;
  box-shadow: 0 0 0 4px rgba(32, 191, 107, 0.12);
}

.floating-wechat > strong {
  margin: 6px 0 10px;
  font-size: 12px;
}

.wechat-qr-wrap {
  padding: 7px;
  border: 1px solid #edf0f4;
  border-radius: 13px;
  background: #fff;
}

.wechat-qr-wrap img {
  display: block;
  width: 122px;
  height: 122px;
  object-fit: contain;
}

.floating-wechat > small {
  margin-top: 8px;
  color: #9297a2;
  font-size: 9px;
}

.site-footer {
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: #071638;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 12px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.53);
  line-height: 1.7;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

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

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

.reveal-delay {
  transition-delay: 0.12s;
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 36px, 980px);
  }

  .main-nav {
    gap: 24px;
    margin-left: 20px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .floating-chip {
    display: none;
  }

  .platform-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .dashboard-frame {
    width: 100%;
  }
}

@media (max-width: 880px) {
  .section-pad {
    padding: 84px 0;
  }

  .main-nav,
  .nav-actions .text-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.mobile-open {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 32px 24px;
    background: #fff;
  }

  .main-nav.mobile-open a {
    width: 100%;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .hero {
    padding-top: 130px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .feature-stage,
  .solution-card-large,
  .solution-video,
  .about-card {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 420px;
  }

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

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

  .price-card.featured {
    transform: none;
  }

  .about-symbol {
    display: none;
  }

  .cta-card,
  .cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  .nav-shell {
    height: 66px;
  }

  .brand img {
    width: 126px;
  }

  .nav-actions .button {
    display: none;
  }

  .main-nav.mobile-open {
    top: 66px;
  }

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

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .proof-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .hero-visual {
    padding-right: 0;
    padding-left: 0;
  }

  .visual-card {
    padding: 16px;
    border-radius: 20px;
  }

  .visual-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-workspace {
    grid-template-columns: 0.85fr 38px 1.15fr;
  }

  .upload-tile,
  .result-tile {
    height: 210px;
  }

  .product-cutout small {
    display: none;
  }

  .platform-strip {
    padding: 20px;
  }

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

  .section-heading h2,
  .showcase-copy h2,
  .about-copy h2,
  .cta-card h2 {
    font-size: 32px;
  }

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

  .feature-content,
  .solution-card,
  .about-card,
  .cta-card {
    padding: 30px 24px;
  }

  .feature-content h3 {
    font-size: 27px;
  }

  .feature-media {
    min-height: auto;
    padding: 20px;
  }

  .feature-media img {
    min-height: 300px;
  }

  .media-badge {
    right: 32px;
    bottom: 34px;
  }

  .mini-feature-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card-large,
  .solution-video {
    grid-column: span 1;
  }

  .platform-wheel {
    width: 250px;
    height: 250px;
    margin-top: 36px;
  }

  .wi-1 { left: 102px; }
  .wi-2 { top: 102px; }
  .wi-3 { left: 102px; }
  .wi-4 { top: 102px; }

  .model-a { left: 34px; }
  .model-b { right: 34px; }

  .video-preview img {
    height: 240px;
  }

  .dashboard-float {
    display: none;
  }

  .product-matrix {
    align-items: stretch;
    flex-direction: column;
  }

  .product-matrix i {
    display: none;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .floating-wechat {
    right: 12px;
    bottom: 14px;
    width: 118px;
    padding: 10px 9px 9px;
    border-radius: 16px;
  }

  .floating-wechat > strong {
    margin: 5px 0 7px;
    font-size: 10px;
  }

  .wechat-title {
    font-size: 10px;
  }

  .wechat-qr-wrap {
    padding: 5px;
    border-radius: 10px;
  }

  .wechat-qr-wrap img {
    width: 88px;
    height: 88px;
  }

  .floating-wechat > small {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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