:root {
  --bg: #fafbff;
  --bg-soft: #f3f4f8;
  --surface: #ffffff;
  --surface-hover: #fafbff;
  --line: rgba(139, 92, 246, 0.1);
  --line-strong: rgba(139, 92, 246, 0.2);
  --text: #1e293b;
  --text-soft: #475569;
  --muted: #94a3b8;
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-soft: rgba(124, 58, 237, 0.08);
  --primary-glow: rgba(124, 58, 237, 0.2);
  --secondary: #ec4899;
  --secondary-light: #f472b6;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient-hero: linear-gradient(135deg, #7c3aed 0%, #a78bfa 40%, #ec4899 100%);
  --gradient-card: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 100%);
  --gradient-btn: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.06);
  --shadow-md: 0 8px 24px rgba(124, 58, 237, 0.08);
  --shadow-lg: 0 16px 48px rgba(124, 58, 237, 0.12);
  --shadow-xl: 0 24px 64px rgba(124, 58, 237, 0.16);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  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(-8px); }
}
@keyframes qrPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.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;
}

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;
}

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 251, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 42px; height: 42px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.brand:hover img { transform: scale(1.05) rotate(2deg); }
.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.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: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}
.header-cta, .btn-primary {
  background: var(--gradient-btn);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 6px 20px var(--primary-glow);
  animation: gradientShift 4s ease infinite;
}
.header-cta:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--primary-glow);
}
.btn-secondary {
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.12);
}
.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);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--gradient-btn);
  border-radius: 2px;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  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: 28px;
}
.hero__badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: float 2s ease-in-out infinite;
}
.hero h1 {
  margin: 0;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  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: 20px auto 0;
  max-width: 560px;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero__stat-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

/* ====== Trust Points ====== */
.trust-strip {
  padding: 24px 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: 8px 18px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}
.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: 48px; }
.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.section-head p {
  margin: 14px 0 0;
  max-width: 520px;
  font-size: 15px;
  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: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.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: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.tool-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tool-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.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: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.tool-card__tag--hot {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.tool-card__tag--recommend {
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
}
.tool-card__tag--fun {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

/* ====== 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(-6px);
  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.5s 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: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.feature-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: 24px;
  margin-bottom: 16px;
}
.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: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.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: 56px;
  border-radius: var(--radius-xl);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.qr-cta-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 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(24px, 3vw, 32px);
  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: 24px;
}
.qr-cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  color: #fff;
}
.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: 140px; height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px 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: 10px;
  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: 32px;
  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: 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;
}
.contact-info-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-item strong {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}
.contact-qr-card {
  padding: 32px;
  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: 20px;
}
.contact-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-qr-item__img {
  width: 100px; height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--line);
  background: #fff;
}
.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: 780px;
  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;
}
.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: 20px 24px;
  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: 28px; height: 28px;
  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 24px 20px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* ====== SEO Content ====== */
.seo-content {
  max-width: 820px;
  margin: 0 auto;
}
.seo-content h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  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: 40px; height: 40px; border-radius: 10px; }
.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: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 24px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
}
.floating-qr-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px 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(124, 58, 237, 0.3);
  animation: qrPulse 2s ease-out infinite;
}
.floating-qr-panel {
  position: absolute;
  right: 0; bottom: 64px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s;
  min-width: 170px;
}
.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: 140px; height: 140px;
  border-radius: 10px;
  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: 6px; right: 8px;
  width: 22px; height: 22px;
  border: 0; background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.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: 72px 0 48px; }
  .hero__stats { gap: 20px; 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; }
  .footer-qr-section { flex-direction: column; }
}
@media (max-width: 560px) {
  .container { width: min(100%, calc(100% - 24px)); }
  .section-shell { padding: 48px 0; }
  .hero h1 { font-size: 28px; }
  .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; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .floating-qr-wrap { right: 14px; }
  .floating-qr-btn { width: 46px; height: 46px; }
}
