:root {
  --purple-50: #f5f3ff;
  --purple-100: #ede9fe;
  --purple-200: #ddd6fe;
  --purple-300: #c4b5fd;
  --purple-400: #a78bfa;
  --purple-500: #8b78ff;
  --purple-600: #7c6cf5;
  --purple-700: #6d5ce8;
  --indigo-500: #6366f1;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(99, 102, 241, 0.08);
  --shadow-md: 0 8px 32px rgba(99, 102, 241, 0.12);
  --shadow-lg: 0 16px 48px rgba(99, 102, 241, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --header-h: 72px;
  --font: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --page-bg: linear-gradient(90deg, #f9fbfc 0%, #ecedff 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  min-height: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  min-height: 100%;
  background: var(--page-bg);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #312e81;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--indigo-500));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(139, 120, 255, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(139, 120, 255, 0.5);
}

.btn-outline {
  background: var(--white);
  color: var(--purple-600);
  border: 1.5px solid var(--purple-200);
}

.btn-outline:hover {
  border-color: var(--purple-400);
  background: var(--purple-50);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 120, 255, 0.08);
  transition: box-shadow 0.3s;
}

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

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  color: #1a1a1a;
}

.logo span {
  color: #7c5cff;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  padding: 8px 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color 0.2s;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--purple-600);
}

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--purple-500);
  border-radius: 2px;
}

.header-cta {
  flex-shrink: 0;
  padding: 10px 24px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--purple-50);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple-600);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--purple-50);
  color: var(--purple-600);
}

.hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(196, 181, 253, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-sparkle {
  position: absolute;
  color: var(--purple-300);
  opacity: 0.6;
  font-size: 1rem;
  pointer-events: none;
}

.hero-sparkle:nth-child(1) { top: 18%; left: 12%; }
.hero-sparkle:nth-child(2) { top: 28%; right: 18%; }
.hero-sparkle:nth-child(3) { top: 55%; left: 8%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid > * {
  min-width: 0;
}

.hero-content {
  padding-left: 64px;
  max-width: 100%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0px;
}

.hero-content h1 .highlight {
  display: block;
  background: linear-gradient(135deg, var(--purple-600), var(--indigo-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-tag {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--purple-100);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.hero-tag .icon {
  width: 20px;
  height: 20px;
  color: var(--purple-500);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-wrap {
  position: relative;
  width: min(100%, 420px);
}

.hero-visual-wrap .hero-character {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(124, 108, 245, 0.2));
}

.hero-visual-wrap .hero-love {
  position: absolute;
  left: 6%;
  top: 10%;
  width: clamp(56px, 20vw, 88px);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(139, 120, 255, 0.28));
  pointer-events: none;
}

.stats-card {
  background: #f9faff;
  border-radius: 40px;
  padding: 48px 40px 40px;
  box-shadow: 0 12px 40px rgba(124, 108, 245, 0.1);
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.stats-card .section-header {
  margin-bottom: 36px;
}

.stats-card .section-title {
  color: #5b4cdb;
}

.stats-card .section-subtitle {
  color: #8b8cb8;
}

.stats-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  background: #fefefe;
  border: 1px solid rgba(139, 120, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.06);
  padding: 20px 8px;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 16px;
  min-width: 0;
}

.stat-item:not(:last-child) {
  border-right: 1px solid #ebe9f5;
}

.stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  min-width: 0;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #7c5cff;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: #9496b8;
  line-height: 1.3;
  white-space: nowrap;
}

.features-panel {
  background: var(--white);
  border-radius: 40px;
  padding: 40px 32px 40px;
  box-shadow: 0 12px 40px rgba(124, 108, 245, 0.1);
  margin-bottom: 48px;
}

.features-panel .section-header {
  margin-bottom: 36px;
}

.features-panel .section-title {
  color: #5b4cdb;
}

.features-panel .section-subtitle {
  color: #8b8cb8;
}

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

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(139, 120, 255, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
}

.feature-card-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.feature-card .card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f3f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #4c46a8;
  line-height: 1.35;
}

.feature-card p {
  font-size: 0.8125rem;
  color: #9496b8;
  line-height: 1.75;
  margin: 0;
  text-align: left;
}

.cta-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1830 / 470;
  border-radius: 32px;
  margin: 48px 0;
  overflow: hidden;
  background: url("../assets/img/banner-1.jpg") no-repeat center center;
  background-size: 100% 100%;
  box-shadow: 0 8px 32px rgba(124, 108, 245, 0.1);
}

.cta-banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 54%;
  padding: 0 20%;
  text-align: center;
  box-sizing: border-box;
}

.cta-banner p {
  color: #481edf;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

.qr-wrap {
  flex-shrink: 0;
  text-align: center;
}

.cta-banner .qr-wrap {
  flex-shrink: 0;
}

.cta-banner .qr-code {
  width: 132px;
  height: 132px;
  background: var(--white);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.12);
  position: relative;
}

.qr-code {
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 50%;
  padding: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.qr-code svg {
  width: 100%;
  height: 100%;
}

.qr-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: #07c160;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 16px;
  padding: 24px 40px;
  background: #f9faff;
  border: 1px solid rgba(139, 120, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.trust-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #3d3d50;
  white-space: nowrap;
}

.trust-item .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.trust-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.matrix-section {
  background: transparent;
  position: relative;
  padding-top: 56px;
}

.matrix-header {
  margin-bottom: 12px;
  padding: 40px 24px 48px;
  text-align: center;
  position: relative;
  background: radial-gradient(
    ellipse 80% 120% at 50% 0%,
    rgba(237, 233, 254, 0.95) 0%,
    rgba(248, 247, 255, 0.5) 45%,
    transparent 72%
  );
}

.matrix-header::before {
  content: "✦";
  position: absolute;
  top: 28px;
  left: 8%;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  text-shadow: 0 0 12px rgba(196, 181, 253, 0.8);
  pointer-events: none;
}

.matrix-header::after {
  content: "♥";
  position: absolute;
  top: 32px;
  right: 8%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.25rem;
  opacity: 0.85;
  pointer-events: none;
}

.matrix-section .section-title {
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  font-weight: 700;
  color: #481edf;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.35;
}

.matrix-section .section-subtitle {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  color: #4a4a5c;
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 640px;
  margin-inline: auto;
}

.feature-row-card {
  background: #f5f5ff;
  border-radius: 28px;
  padding: 40px 48px;
  box-shadow: 0 8px 32px rgba(124, 108, 245, 0.1);
  border: 1px solid rgba(139, 120, 255, 0.08);
}

.feature-row-card .feature-row-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.feature-row-card .feature-num-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b78ff, #7c5cff);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
}

.feature-row-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e2a5c;
  line-height: 1.3;
}

.feature-row-card .feature-row-lead {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a5c;
  line-height: 1.6;
  margin: 0 0 8px;
  padding-left: 60px;
}

.feature-row-card .feature-row-desc {
  font-size: 0.875rem;
  color: #9496b8;
  line-height: 1.7;
  margin: 0;
  padding-left: 60px;
}

.feature-row-card .feature-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.06);
  min-height: auto;
}

#feature-02 .feature-visual-voice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#feature-02 .voice-wave-img {
  width: 90%;
  max-width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
}

#feature-02 .avatar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

#feature-02 .avatar-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.12);
  flex-shrink: 0;
}

#feature-02 .avatar-more {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-50);
  color: var(--purple-600);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.12);
}

#feature-01 .dual-q {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

#feature-01 .dual-q-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: left;
}

#feature-01 .dual-q-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

#feature-01 .dual-q-text strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #7c5cff;
  line-height: 1.2;
}

#feature-01 .dual-q-text span {
  display: block;
  font-size: 0.8125rem;
  color: #9496b8;
  margin-top: 4px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.feature-row.feature-row-card {
  grid-template-columns: 0.8fr 1.2fr;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-num {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.feature-row h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #312e81;
  margin-bottom: 16px;
}

.feature-row p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.feature-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dual-q {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.dual-q-item {
  text-align: center;
}

.dual-q-item .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.dual-q-item.eq .icon-circle {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.dual-q-item.iq .icon-circle {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.voice-wave {
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, var(--purple-400), var(--indigo-500), var(--purple-400));
  border-radius: 8px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40'%3E%3Cpath d='M0 20 Q10 5 20 20 T40 20 T60 20 T80 20 T100 20 T120 20 T140 20 T160 20 T180 20 T200 20' fill='none' stroke='white' stroke-width='3'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  opacity: 0.85;
  margin-bottom: 20px;
}

.avatar-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.avatar-row .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-200), var(--purple-400));
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.avatar-row .av.more {
  background: var(--purple-50);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

#feature-03 .skill-icons-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

#feature-03 .skill-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  flex: 1 1 0;
  min-width: 0;
  background: transparent;
  font-size: 0.8125rem;
  color: #9496b8;
  text-align: center;
}

#feature-03 .skill-pill-icon {
  width: min(56px, 100%);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

#feature-03 .skill-pill span {
  line-height: 1.3;
  white-space: nowrap;
  font-size: 0.75rem;
}

#feature-04 .memory-flow {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

#feature-04 .memory-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-align: center;
  padding: 0;
}

#feature-04 .step-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

#feature-04 .memory-step span {
  font-size: 0.75rem;
  color: #9496b8;
  white-space: nowrap;
}

#feature-04 .memory-arrow-img {
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
  margin: 0 2px;
}

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

.memory-step {
  text-align: center;
  padding: 12px;
}

.memory-step .step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  background: var(--purple-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.memory-step span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.memory-arrow {
  color: var(--purple-300);
  font-size: 1.25rem;
}

#feature-05 .framework-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}

#feature-05 .framework-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  background: linear-gradient(180deg, #f0f4ff 0%, #f8f9ff 100%);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  border: 1px solid rgba(139, 120, 255, 0.12);
}

#feature-05 .framework-card h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4c46a8;
  margin: 0 0 8px;
  line-height: 1.3;
}

#feature-05 .framework-card p {
  font-size: 0.6875rem;
  color: #9496b8;
  line-height: 1.55;
  margin: 0;
}

.framework-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.framework-card {
  flex: 1 1 140px;
  max-width: 160px;
  background: linear-gradient(180deg, #eff6ff, #f8fafc);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  border: 1px solid #e0e7ff;
}

.framework-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3730a3;
  margin-bottom: 6px;
}

.framework-card p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

#feature-06 .eco-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

#feature-06 .eco-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  flex: 1 1 0;
  min-width: 0;
  background: transparent;
  text-align: center;
}

#feature-06 .eco-icon {
  width: min(56px, 100%);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

#feature-06 .eco-item span {
  font-size: 0.75rem;
  color: #9496b8;
  line-height: 1.3;
  white-space: nowrap;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.eco-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--purple-50);
  border-radius: var(--radius-md);
}

.eco-item .emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}

.eco-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.evolve-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1986 / 769;
  border-radius: 32px;
  overflow: hidden;
  background: url("../assets/img/banner-3.png") no-repeat center center;
  background-size: 100% 100%;
  box-shadow: 0 8px 32px rgba(124, 108, 245, 0.12);
}

.evolve-banner-text {
  position: absolute;
  left: 9%;
  top: 50%;
  transform: translateY(-100%);
  z-index: 1;
  max-width: 50%;
  text-align: left;
}

.evolve-banner h3 {
  font-size: clamp(50px, 2.65vw, 70px);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.evolve-banner p {
  font-size: clamp(25px, 1.25vw, 35px);
  font-weight: 300;
  color: #ffffff;
  margin: 12px 0 0;
  padding: 0;
  line-height: 1.55;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

#advantages .section-title {
  color: #5b4cdb;
}

#advantages .section-subtitle {
  color: #8b8cb8;
}

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

.reason-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 16px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(139, 120, 255, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
}

.reason-icon {
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.reason-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.reason-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #2e2a5c;
  margin: 0 0 12px;
  line-height: 1.35;
}

.reason-card p {
  font-size: 0.8125rem;
  color: #9496b8;
  line-height: 1.75;
  margin: 0;
}

#feedback .section-title {
  color: #5b4cdb;
}

#feedback .section-subtitle {
  color: #8b8cb8;
}

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

.testimonial-card {
  background: #f5f5ff;
  border-radius: 36px;
  padding: 14px;
  transition: transform 0.25s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card-inner {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 24px 22px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 2.75rem;
  line-height: 0.9;
  color: #a89cf5;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 0px;
}

.testimonial-text {
  flex: 1;
  font-size: 0.875rem;
  color: #3d3d50;
  line-height: 1.75;
  margin: 0 0 22px;
  text-align: left;
  text-indent: 2em;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #2e2a5c;
  line-height: 1.3;
}

.testimonial-meta {
  font-size: 0.8125rem;
  color: #9496b8;
  margin-top: 4px;
  line-height: 1.3;
}

.cta-gradient {
  position: relative;
  width: 100%;
  aspect-ratio: 1819 / 1065;
  border-radius: 40px;
  margin: 56px 0 0;
  overflow: hidden;
  background: url("../assets/img/banner-4.jpg") no-repeat center center;
  background-size: 100% 100%;
  box-shadow: 0 12px 40px rgba(163, 137, 255, 0.35);
}

.cta-gradient-text {
  position: absolute;
  left: 8%;
  top: 12%;
  z-index: 1;
  max-width: 50%;
  text-align: left;
}

.cta-gradient-text h3 {
  font-size: clamp(3.25rem, 3vw, 4.5rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.cta-gradient-text p {
  font-size: clamp(1.65rem, 1.75vw, 2.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 12px 0 0;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

#scenarios .section-title {
  color: #5b4cdb;
}

#scenarios .section-subtitle {
  color: #8b8cb8;
}

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

.scenario-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(139, 120, 255, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
}

.scenario-img {
  aspect-ratio: 3 / 2;
  background: #f0f0f8;
  overflow: hidden;
}

.scenario-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scenario-body {
  padding: 22px 20px 26px;
  text-align: center;
}

.scenario-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.scenario-body p {
  font-size: 0.8125rem;
  color: #9496b8;
  line-height: 1.65;
  margin: 0;
}

#wechat.section {
  padding-top: 0;
}

#wechat .section-title {
  color: #5b4cdb;
}

#wechat .section-subtitle {
  color: #8b8cb8;
}

.wechat-panel {
  background: #ffffff;
  border-radius: 32px;
  padding: 48px 40px 44px;
  box-shadow: 0 8px 40px rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(139, 120, 255, 0.06);
}

.wechat-panel .section-header {
  margin-bottom: 36px;
}

.wechat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.wechat-card {
  background: #fafaff;
  border-radius: 24px;
  padding: 28px 24px 32px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(139, 120, 255, 0.05);
}

.wechat-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.wechat-card-header .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0ff;
}

.wechat-card-header .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.wechat-card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  line-height: 1.35;
}

.wechat-card-header p {
  font-size: 0.8125rem;
  color: #9496b8;
  margin: 0;
  line-height: 1.4;
}

.phone-mockup {
  max-width: 280px;
  margin: 0 auto;
  line-height: 0;
}

.wechat-snap-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(30, 27, 75, 0.14);
}

.companion-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1640 / 606;
  border-radius: 40px;
  margin: 48px 0 0;
  overflow: hidden;
  background: url("../assets/img/banner-5.jpg") no-repeat center center;
  background-size: 100% 100%;
  box-shadow: 0 12px 40px rgba(163, 137, 255, 0.28);
}

.companion-banner-text {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 52%;
  text-align: left;
}

.companion-banner h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.companion-banner p {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.geo-hidden {
  display: none !important;
}

.www-xcx-launch-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  text-align: center;
  padding: 24px 24px 40px;
  background: transparent;
}

.site-footer .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-600);
  margin-bottom: 8px;
}

.site-footer .slogan {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.site-footer .footer-links {
  margin-bottom: 20px;
}

.site-footer .footer-links a {
  color: var(--purple-600);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-footer .footer-links a:hover {
  color: var(--purple-700);
  text-decoration: underline;
}

.site-footer .copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

@media (max-width: 1024px) {
  .features-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    flex-wrap: wrap;
    padding: 16px 12px;
  }

  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    padding: 14px 12px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid #ebe9f5;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid #ebe9f5;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 56px 0 20px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-desktop,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-content {
    padding-left: 0;
    padding-inline: 4px;
  }

  .hero-content h1 {
    font-size: clamp(1.625rem, 6.5vw, 2.125rem);
    line-height: 1.3;
  }

  .hero-tagline {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    padding-inline: 4px;
  }

  .hero-visual {
    order: -1;
    width: 100%;
  }

  .hero-visual-wrap {
    width: min(100%, 300px);
    margin-inline: auto;
  }

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

  .hero-tags {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    padding-inline: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-tags::-webkit-scrollbar {
    display: none;
  }

  .hero-tag {
    flex: 0 0 auto;
    font-size: clamp(0.6875rem, 3.2vw, 0.8125rem);
    padding: 6px 8px;
    gap: 5px;
  }

  .hero-tag .icon {
    width: 18px;
    height: 18px;
    font-size: 1rem;
    line-height: 1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding-inline: 8px;
  }

  .hero-actions .btn {
    width: min(100%, 280px);
    max-width: 100%;
  }

  .stats-card {
    margin-top: 8px;
    padding: 32px 20px 28px;
    border-radius: 24px;
  }

  .stats-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 12px 8px;
  }

  .stat-item {
    flex: 0 0 50%;
    width: 50%;
    box-sizing: border-box;
    border-right: none;
    border-bottom: 1px solid #ebe9f5;
    justify-content: flex-start;
    padding: 14px 12px;
    gap: 10px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid #ebe9f5;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid #ebe9f5;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

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

  .stat-value {
    font-size: 1.125rem;
  }

  .stat-label {
    white-space: normal;
    font-size: 0.75rem;
  }

  .features-grid,
  .reasons-grid,
  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .wechat-panel {
    padding: 32px 20px 28px;
    border-radius: 24px;
  }

  .wechat-panel .section-header {
    margin-bottom: 28px;
  }

  .wechat-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phone-mockup {
    max-width: min(280px, 88vw);
  }

  .feature-row,
  .feature-row.reverse,
  .feature-row.feature-row-card {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }

  .feature-row.feature-row-card {
    padding: 28px 20px;
  }

  .feature-row-card .feature-row-lead,
  .feature-row-card .feature-row-desc {
    padding-left: 0;
  }

  .feature-row-card .feature-visual {
    width: 100%;
    padding: 24px 20px;
  }

  #feature-01 .feature-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #feature-01 .dual-q {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  #feature-01 .dual-q-item {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    gap: 8px;
  }

  #feature-01 .dual-q-icon {
    width: 40px;
    height: 40px;
  }

  #feature-01 .dual-q-text strong {
    font-size: 0.9375rem;
  }

  #feature-01 .dual-q-text span {
    font-size: 0.6875rem;
  }

  #feature-02 .avatar-row {
    gap: 8px;
  }

  #feature-02 .avatar-img,
  #feature-02 .avatar-more {
    width: 48px;
    height: 48px;
  }

  #feature-03 .feature-visual {
    padding: 20px 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  #feature-03 .skill-icons-row {
    gap: 4px;
    max-width: 100%;
  }

  #feature-03 .skill-pill {
    gap: 4px;
    padding: 2px 1px;
  }

  #feature-03 .skill-pill-icon {
    width: 100%;
    max-width: 34px;
    max-height: 34px;
    margin-inline: auto;
  }

  #feature-03 .skill-pill span {
    font-size: clamp(0.5rem, 2.4vw, 0.625rem);
    line-height: 1.25;
  }

  #feature-06 .feature-visual {
    padding: 20px 10px;
    overflow: hidden;
    box-sizing: border-box;
  }

  #feature-06 .eco-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    max-width: 100%;
    justify-content: space-between;
  }

  #feature-06 .eco-item {
    gap: 4px;
    padding: 2px 1px;
  }

  #feature-06 .eco-icon {
    width: 100%;
    max-width: 34px;
    max-height: 34px;
    margin-inline: auto;
  }

  #feature-06 .eco-item span {
    font-size: clamp(0.5rem, 2.4vw, 0.625rem);
    line-height: 1.25;
  }

  .cta-banner,
  .cta-gradient {
    display: none;
  }

  .evolve-banner {
    aspect-ratio: 1986 / 769;
    background-size: cover;
    background-position: center;
  }

  .evolve-banner-text {
    left: 8%;
    top: auto;
    bottom: 22%;
    transform: none;
    max-width: 84%;
    text-align: left;
  }

  .evolve-banner h3 {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .evolve-banner p {
    font-size: clamp(12px, 3.2vw, 14px);
    margin-top: 10px;
  }

  .companion-banner {
    border-radius: 24px;
    margin-top: 32px;
  }

  .companion-banner-text {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 48%;
  }

  .companion-banner h3 {
    font-size: clamp(0.9375rem, 4.2vw, 1.25rem);
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .companion-banner p {
    font-size: clamp(0.6875rem, 3vw, 0.875rem);
    line-height: 1.45;
  }

  #feature-05 .framework-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  #feature-05 .framework-cards::-webkit-scrollbar {
    display: none;
  }

  #feature-05 .framework-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    padding: 10px 4px;
    border-radius: 10px;
  }

  #feature-05 .framework-card h4 {
    font-size: clamp(0.625rem, 2.6vw, 0.75rem);
    margin-bottom: 4px;
  }

  #feature-05 .framework-card p {
    font-size: clamp(0.5rem, 2.2vw, 0.625rem);
    line-height: 1.4;
  }

  .trust-bar {
    justify-content: center;
    padding: 20px 16px;
    gap: 16px 20px;
  }

  .trust-item {
    flex: 1 1 calc(50% - 20px);
    justify-content: flex-start;
  }

  .trust-label {
    font-size: 0.875rem;
    white-space: normal;
  }

  #feature-04 .memory-flow {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  #feature-04 .memory-step {
    flex: 1 1 0;
    min-width: 0;
    gap: 6px;
  }

  #feature-04 .step-icon-img {
    width: clamp(32px, 8vw, 44px);
    height: clamp(32px, 8vw, 44px);
  }

  #feature-04 .memory-step span {
    font-size: clamp(0.5625rem, 2.6vw, 0.6875rem);
    line-height: 1.2;
  }

  #feature-04 .memory-arrow-img {
    width: clamp(18px, 4.5vw, 28px);
    transform: none;
    margin: 0;
    align-self: center;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-visual-wrap {
    width: min(100%, 260px);
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-tags {
    gap: 4px;
  }

  .hero-tag {
    font-size: 0.625rem;
    padding: 5px 6px;
    gap: 4px;
  }

  .hero-tag .icon {
    width: 16px;
    height: 16px;
    font-size: 0.9375rem;
  }

  .stats-card {
    margin-top: 16px;
    padding: 28px 16px 24px;
  }

  .feature-row.feature-row-card {
    padding: 24px 16px;
  }

  #feature-04 .memory-step span {
    font-size: 0.5625rem;
  }

  #feature-04 .step-icon-img {
    width: 30px;
    height: 30px;
  }

  #feature-04 .memory-arrow-img {
    width: 16px;
  }

  #feature-05 .framework-cards {
    gap: 4px;
  }

  #feature-05 .framework-card {
    padding: 8px 3px;
  }

  #feature-05 .framework-card h4 {
    font-size: 0.5625rem;
  }

  #feature-05 .framework-card p {
    font-size: 0.5rem;
    line-height: 1.35;
  }

  #feature-02 .avatar-row {
    gap: 6px;
  }

  #feature-02 .avatar-img,
  #feature-02 .avatar-more {
    width: 46px;
    height: 46px;
    border-width: 2px;
  }

  #feature-03 .feature-visual {
    padding: 16px 8px;
  }

  #feature-03 .skill-icons-row {
    gap: 2px;
  }

  #feature-03 .skill-pill-icon {
    max-width: 28px;
    max-height: 28px;
  }

  #feature-03 .skill-pill span {
    font-size: 0.5rem;
  }

  #feature-06 .feature-visual {
    padding: 16px 8px;
  }

  #feature-06 .eco-grid {
    gap: 2px;
  }

  #feature-06 .eco-icon {
    max-width: 28px;
    max-height: 28px;
  }

  #feature-06 .eco-item span {
    font-size: 0.5rem;
  }

  .companion-banner-text {
    max-width: 46%;
  }

  .companion-banner h3 {
    font-size: 0.875rem;
  }

  .companion-banner p {
    font-size: 0.625rem;
  }
}
