:root {
  --bg: #f8f9ff;
  --bg-soft: #f0f1f8;
  --surface: #ffffff;
  --surface-hover: #fafbff;
  --line: rgba(99, 102, 241, 0.08);
  --line-strong: rgba(99, 102, 241, 0.16);
  --text: #1a1d2e;
  --text-soft: #4b5068;
  --muted: #8b8fa8;
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-soft: rgba(99, 102, 241, 0.06);
  --primary-glow: rgba(99, 102, 241, 0.18);
  --secondary: #ec4899;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient-hero: linear-gradient(135deg, #6366f1 0%, #a855f7 35%, #ec4899 70%, #f97316 100%);
  --gradient-card: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 50%, #ecfeff 100%);
  --gradient-btn: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(99,102,241,0.04);
  --shadow-md: 0 4px 16px rgba(99,102,241,0.06), 0 12px 32px rgba(99,102,241,0.06);
  --shadow-lg: 0 8px 32px rgba(99,102,241,0.08), 0 24px 64px rgba(99,102,241,0.08);
  --shadow-xl: 0 16px 48px rgba(99,102,241,0.1), 0 32px 80px rgba(99,102,241,0.1);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes qrPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes blobMove { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(30px, -20px) scale(1.05); } 50% { transform: translate(-10px, 20px) scale(0.95); } 75% { transform: translate(-30px, -10px) scale(1.02); } }

.animate-fade-in-up { animation: fadeInUp 0.7s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }

html { scroll-behavior: smooth; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: 'DM Sans', 'Noto Sans SC', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ====== Ambient Background ====== */
.page-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: blobMove 20s ease-in-out infinite;
}
.ambient-blob-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
}
.ambient-blob-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  animation-delay: -7s;
}
.ambient-blob-3 {
  width: 400px; height: 400px;
  top: 40%; left: 30%;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  opacity: 0.08;
  animation-delay: -14s;
}

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 249, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 44px; height: 44px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(99,102,241,0.12);
  transition: transform 0.3s;
}
.brand:hover img { transform: scale(1.06) rotate(3deg); }
.brand strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
.brand span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.is-active {
  color: var(--primary);
  background: var(--primary-soft);
}

.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-cta, .btn-primary {
  background: var(--gradient-btn);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 6px 24px var(--primary-glow);
  animation: gradientShift 4s ease infinite;
  position: relative;
  overflow: hidden;
}
.header-cta::before, .btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.header-cta:hover::before, .btn-primary:hover::before { left: 100%; }
.header-cta:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--primary-glow);
}
.btn-secondary {
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}
.btn-block { width: 100%; }

/* ====== Section ====== */
.section-shell { padding: 80px 0; }
.section-shell-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, rgba(168,85,247,0.04) 30%, rgba(236,72,153,0.02) 50%, transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero__badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(16,185,129,0.4);
  animation: float 2s ease-in-out infinite;
}
.hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
}
.hero h1 .gradient-text {
  background: var(--gradient-hero);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
.hero__desc {
  margin: 24px auto 0;
  max-width: 580px;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.hero__stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-hero);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
.hero__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ====== Trust Points ====== */
.trust-strip {
  padding: 28px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gradient-card);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}
.trust-points span::before {
  content: '✓';
  font-weight: 700;
  color: var(--success);
}

/* ====== Section Head ====== */
.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(26px, 3.8vw, 42px);
  color: var(--text);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.section-head p {
  margin: 16px 0 0;
  max-width: 540px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
}
.section-head-center p { margin-left: auto; margin-right: auto; }

/* ====== Tool Categories ====== */
.tools-category { margin-bottom: 56px; }
.tools-category:last-child { margin-bottom: 0; }

.tools-category__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.tools-category__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.tools-category__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.tools-category__desc {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tool-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.35s;
}
.tool-card:hover::after { opacity: 1; }
.tool-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tool-card > * { position: relative; z-index: 1; }
.tool-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.tool-card__body { flex: 1; min-width: 0; }
.tool-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 4px;
}
.tool-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.tool-card__tag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.tool-card__tag--hot { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.tool-card__tag--recommend { background: rgba(99, 102, 241, 0.08); color: var(--primary); }
.tool-card__tag--fun { background: rgba(245, 158, 11, 0.08); color: var(--warning); }

/* Offline / coming-soon card */
.tool-card--offline {
  opacity: 0.65;
  cursor: default;
  position: relative;
}
.tool-card--offline:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}
.tool-card__offline {
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

/* ====== Showcase ====== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.showcase-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.showcase-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-card:hover .showcase-card__media img { transform: scale(1.08); }
.showcase-card__body { padding: 24px; }
.showcase-card__body h3 { margin: 0; font-size: 18px; font-weight: 700; color: var(--text); }
.showcase-card__body p { margin: 8px 0 0; font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ====== Features ====== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--gradient-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.feature-card h3 { margin: 0; font-size: 17px; font-weight: 700; color: var(--text); }
.feature-card p { margin: 10px 0 0; font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* ====== Process ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.35s ease;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px var(--primary-glow);
  animation: gradientShift 4s ease infinite;
}
.process-card h3 { margin: 0; font-size: 17px; font-weight: 700; color: var(--text); }
.process-card p { margin: 8px 0 0; font-size: 13px; color: var(--text-soft); line-height: 1.6; }

/* ====== QR CTA ====== */
.qr-cta-card {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 60px;
  border-radius: var(--radius-xl);
  background: var(--gradient-hero);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}
.qr-cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.qr-cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.qr-cta-content { flex: 1; position: relative; z-index: 1; }
.qr-cta-content .eyebrow {
  color: rgba(255,255,255,0.8);
  -webkit-text-fill-color: rgba(255,255,255,0.8);
}
.qr-cta-content .eyebrow::before { background: rgba(255,255,255,0.5); }
.qr-cta-content h2 {
  margin: 14px 0 0;
  font-size: clamp(26px, 3vw, 34px);
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
}
.qr-cta-content p {
  margin: 14px 0 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.qr-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.qr-cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.qr-cta-feature__check { font-weight: 700; }

.qr-cta-images {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.qr-cta-image { text-align: center; }
.qr-cta-image__wrap {
  width: 148px; height: 148px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  background: #fff;
}
.qr-cta-image__wrap img { width: 100%; height: 100%; object-fit: cover; }
.qr-cta-image__label {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ====== Contact ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-info-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-info-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--gradient-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-info-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.contact-info-item strong {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}
.contact-qr-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-qr-card h3 { margin: 0; font-size: 20px; color: var(--text); font-weight: 700; }
.contact-qr-card p { margin: 10px 0 0; font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.contact-qr-grid { display: flex; gap: 20px; margin-top: 24px; }
.contact-qr-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-qr-item__img {
  width: 110px; height: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-qr-item__img img { width: 100%; height: 100%; object-fit: cover; }
.contact-qr-item__label { font-size: 12px; font-weight: 600; color: var(--text-soft); }

/* ====== FAQ ====== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.faq-item.is-open {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer p {
  margin: 0;
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ====== SEO Content ====== */
.seo-content { max-width: 840px; margin: 0 auto; }
.seo-content h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.seo-content p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.9;
  margin: 0 0 18px;
}
.seo-content p:last-child { margin-bottom: 0; }

/* ====== Footer ====== */
.site-footer {
  padding: 40px 0 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { width: 42px; height: 42px; border-radius: 12px; }
.footer-brand strong {
  font-size: 16px;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 2px;
}
.footer-brand p { margin: 0; font-size: 12px; color: var(--muted); }
.footer-bottom { padding-top: 20px; }
.footer-bottom p { font-size: 12px; color: var(--muted); margin: 0; text-align: center; }

/* ====== Floating QR ====== */
.floating-qr-wrap {
  position: fixed;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  z-index: 100;
}
.floating-qr-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
.floating-qr-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px var(--primary-glow);
}
.floating-qr-btn svg { width: 24px; height: 24px; fill: #fff; }
.floating-qr-btn .qr-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(99, 102, 241, 0.3);
  animation: qrPulse 2s ease-out infinite;
}
.floating-qr-panel {
  position: absolute;
  right: 0; bottom: 68px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s;
  min-width: 180px;
}
.floating-qr-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.floating-qr-panel .qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.floating-qr-panel img {
  width: 148px; height: 148px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.floating-qr-panel .qr-label { font-size: 12px; font-weight: 600; color: var(--text-soft); }
.floating-qr-panel .qr-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 24px; height: 24px;
  border: 0; background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.floating-qr-panel .qr-close:hover { background: var(--primary-soft); }

/* ====== Responsive ====== */
@media (max-width: 1080px) {
  .showcase-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .qr-cta-card { flex-direction: column; padding: 40px; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .site-nav { display: none; }
  .hero { padding: 80px 0 48px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .showcase-grid, .features-grid, .process-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .qr-cta-card { padding: 28px; }
}
@media (max-width: 560px) {
  .container { width: min(100%, calc(100% - 24px)); }
  .section-shell { padding: 48px 0; }
  .hero h1 { font-size: 30px; }
  .hero__desc { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .tools-grid { grid-template-columns: 1fr; }
  .qr-cta-images { flex-wrap: wrap; justify-content: center; }
  .qr-cta-image__wrap { width: 120px; height: 120px; }
  .contact-qr-grid { flex-wrap: wrap; }
  .floating-qr-wrap { right: 14px; }
  .floating-qr-btn { width: 48px; height: 48px; }
}
