/* =============================================
   盛京兼职通 — 干净冷色调
   ============================================= */

:root {
  --blue:   #2563eb;
  --blue-dk: #1d4ed8;
  --green:  #10b981;
  --green-dk: #059669;

  /* 冷色增强 */
  --ink:    #0b1120;
  --text:   #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --surface: #ffffff;
  --surface-alt: #eef2f7;
  --border: #b8c8dc;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --radius: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.7;
  color: var(--text); background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ===== Fade-in ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.header.scrolled { background: rgba(255,255,255,.95); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { width: 30px; height: 30px; display: block; transition: transform .3s; }
.logo:hover .logo-mark { transform: rotate(8deg); }
.logo-text { font-size: 18px; font-weight: 700; letter-spacing: .3px; color: var(--ink); }

.nav { display: flex; gap: 28px; }

.nav-link {
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  position: relative; transition: color .3s; padding: 4px 0;
  letter-spacing: .3px;
}

.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px; transition: width .35s cubic-bezier(.25,.1,.25,1);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--ink); }

.menu-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); padding: 4px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex; align-items: center;
  padding: 64px 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-shape { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .2; }
.hero-shape--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,.1), transparent 70%);
  top: -200px; left: -120px;
  animation: float 8s ease-in-out infinite;
}
.hero-shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,.08), transparent 70%);
  bottom: -150px; right: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }

.hero-inner {
  display: flex; align-items: center; gap: 30px;
  width: 100%; max-width: 1160px;
  margin: 0 auto; padding: 0 28px;
  position: relative;
}

.hero-left { flex: 1; max-width: 754px; }

.hero-right {
  flex: 0 0 320px;
  display: flex; flex-direction: column; align-items: stretch; justify-content: center;
  gap: 4px;
}

.hero-illustration {
  width: 100%; height: auto;
  filter: drop-shadow(0 8px 32px rgba(59,130,246,.08));
  animation: float-illustration 6s ease-in-out infinite;
}

@keyframes float-illustration {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; font-size: 12px; font-weight: 500;
  color: var(--blue); background: rgba(59,130,246,.06);
  border: 1px solid rgba(59,130,246,.12);
  border-radius: 20px; margin-bottom: 20px;
}

.hero-badge-dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.hero-title { font-size: 48px; font-weight: 700; line-height: 1.15; letter-spacing: -1.8px; margin-bottom: 16px; color: var(--ink); }

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--green) 55%, #14b8a6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc { font-size: 15px; color: var(--text-secondary); max-width: 460px; line-height: 1.75; margin-bottom: 24px; }

.hero-actions { display: flex; gap: 12px; margin-bottom: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 26px; font-size: 14px; font-weight: 600;
  border-radius: 8px; transition: all .3s cubic-bezier(.25,.1,.25,1);
  cursor: pointer; border: none; font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff; box-shadow: 0 4px 16px rgba(59,130,246,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,.3); }
.btn-primary .btn-arrow { transition: transform .3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(59,130,246,.03); }

.hero-stats {
  display: flex; flex-direction: column; align-items: stretch; gap: 8px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 16px;
  width: 100%;
  transition: transform .3s, box-shadow .3s;
}
.hero-stats:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59,130,246,.06); }

.stats-heading {
  font-size: 11px; font-weight: 600;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
}

.stats-row {
  display: flex; align-items: center; gap: 0;
  justify-content: space-between;
}

.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 8px; }
.stat-divider { width: 1px; height: 26px; background: var(--border); }
.stat-num { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.5px; line-height: 1; }
.stat-plus { color: var(--blue); font-weight: 600; }
.stat-unit { font-size: 16px; font-weight: 600; color: var(--ink); }
.stat-label { font-size: 11px; color: var(--text-tertiary); margin-top: 3px; }

/* ===== Section ===== */
.section { padding: 64px 0; position: relative; }

.section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 15%, var(--blue), var(--green), transparent 85%);
  opacity: .18;
}
.section:first-of-type::before { display: none; }

.features { background: var(--surface-alt); position: relative; }
.features::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 20% 25%, rgba(59,130,246,.04) 0, transparent 45%),
                    radial-gradient(circle at 80% 75%, rgba(16,185,129,.03) 0, transparent 45%);
}
.business { background: var(--surface); position: relative; }
.business::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(59,130,246,.015) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16,185,129,.01) 0, transparent 40%);
}
.steps { background: var(--surface-alt); position: relative; }
.steps::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 50% 30%, rgba(16,185,129,.025) 0, transparent 50%),
                    radial-gradient(circle at 15% 70%, rgba(59,130,246,.02) 0, transparent 40%);
}
.about { background: var(--surface); position: relative; }
.about::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 30% 40%, rgba(59,130,246,.025) 0, transparent 45%),
                    radial-gradient(circle at 70% 60%, rgba(16,185,129,.02) 0, transparent 45%);
}

.section-header { text-align: center; margin-bottom: 32px; }
.section-label {
  display: inline-block; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
  position: relative;
}
.section-label::after {
  content: ''; display: block; width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px; margin: 8px auto 0; opacity: .3;
}
.section-title { font-size: 30px; font-weight: 700; margin-bottom: 10px; color: var(--ink); letter-spacing: -.3px; line-height: 1.2; }
.section-desc { font-size: 15px; color: var(--text-secondary); max-width: 440px; margin: 0 auto; }

/* ===== Features ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; perspective: 1000px;
}

.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 24px 32px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.25,.1,.25,1);
  cursor: default;
}

/* 渐变边框遮罩（hover 时多角度渐变） */
.feature-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--blue), var(--green)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
}

.feature-card:hover::before { opacity: 1; }

/* 背景光晕 */
.feature-card::after {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  top: -40px; right: -40px;
  background: radial-gradient(circle, rgba(59,130,246,.04), transparent 70%);
  pointer-events: none;
  transition: all .5s;
}

.feature-card:hover::after {
  width: 200px; height: 200px;
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(59,130,246,.08), transparent 70%);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(59,130,246,.1);
  border-color: transparent;
}

.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px; position: relative;
  transition: all .4s;
  box-shadow: 0 2px 8px transparent;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 4px 16px rgba(59,130,246,.15);
}

.feature-icon svg { width: 24px; height: 24px; position: relative; z-index: 1; }

/* 图标底部光晕 */
.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  opacity: 0;
  transition: opacity .4s;
}

.feature-card:hover .feature-icon::after { opacity: 1; }

.feature-icon--blue::after  { background: rgba(59,130,246,.06); }
.feature-icon--green::after { background: rgba(16,185,129,.06); }
.feature-icon--teal::after  { background: rgba(20,184,166,.06); }
.feature-icon--bg::after    { background: rgba(59,130,246,.06); }

.feature-icon--blue  { background: rgba(59,130,246,.08); color: var(--blue); }
.feature-icon--green { background: rgba(16,185,129,.08); color: var(--green); }
.feature-icon--teal  { background: rgba(20,184,166,.08); color: #14b8a6; }
.feature-icon--bg    { background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(16,185,129,.08)); color: var(--blue); }

.feature-card h3 {
  font-size: 16px; font-weight: 600; margin-bottom: 10px;
  color: var(--ink); transition: color .3s;
}

.feature-card:hover h3 { color: var(--blue); }

.feature-card p {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.7; max-width: 240px; margin: 0 auto;
}

/* 错落入场延迟 */
.feature-card:nth-child(1).fade-in.visible { transition-delay: 0s; }
.feature-card:nth-child(2).fade-in.visible { transition-delay: .1s; }
.feature-card:nth-child(3).fade-in.visible { transition-delay: .2s; }
.feature-card:nth-child(4).fade-in.visible { transition-delay: .3s; }

/* ===== Steps ===== */
.steps { background: var(--surface); }

.steps-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0;
  max-width: 1000px; margin: 0 auto;
}

.step-card {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 12px;
  transition: transform .3s;
  position: relative;
}

.step-card:hover { transform: translateY(-4px); }

.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(59,130,246,.2);
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover .step-num { transform: scale(1.1); box-shadow: 0 6px 20px rgba(59,130,246,.35); }

.step-content h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.step-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; max-width: 160px; margin: 0 auto; }

.step-arrow {
  flex: 0 0 auto;
  color: var(--blue); opacity: .4;
  display: flex; align-items: center;
  padding-top: 30px;
  transition: opacity .3s, transform .3s;
}
.step-card:hover .step-arrow { opacity: .8; transform: translateX(3px); }

.step-arrow svg { width: 18px; height: 18px; }

/* 移动端三步竖向 */
@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column; align-items: center;
    max-width: 320px;
  }
  .step-card { flex: none; width: 100%; flex-direction: row; text-align: left; padding: 16px 12px; gap: 16px; }
  .step-num { margin-bottom: 0; flex-shrink: 0; width: 36px; height: 36px; font-size: 14px; }
  .step-content p { max-width: 100%; margin: 0; }
  .step-arrow { display: none; }
}

/* ===== Business ===== */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}



.business-card {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 22px 20px;
  transition: all .3s cubic-bezier(.25,.1,.25,1); cursor: default;
  position: relative; overflow: hidden;
}

.business-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0; transition: opacity .3s;
}
.business-card:hover::before { opacity: 1; }

.business-card:hover { transform: translateY(-4px); border-color: transparent; background: var(--surface); box-shadow: 0 12px 32px rgba(0,0,0,.06); }

.business-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; position: relative; }

.business-featured-tag {
  margin-left: auto; margin-right: 32px;
  padding: 2px 10px;
  font-size: 11px; font-weight: 600;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  border-radius: 10px;
  letter-spacing: .5px;
  flex-shrink: 0;
}

.business-emoji {
  font-size: 22px; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(59,130,246,.04), rgba(16,185,129,.04));
  border-radius: 10px; flex-shrink: 0; transition: transform .3s;
  color: var(--blue);
}
.business-emoji svg { width: 20px; height: 20px; }
.business-card:hover .business-emoji { transform: scale(1.15); background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(16,185,129,.12)); }

.business-card h3 { font-size: 15px; font-weight: 600; color: var(--ink); }
.business-card > p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; margin-left: 52px; }
.business-price {
  display: inline-block; font-size: 14px; font-weight: 700;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-left: 52px;
}

/* ===== About ===== */
.about { padding: 64px 0; }
.about-content { max-width: 640px; margin: 0 auto; text-align: center; }
.about-content::before {
  content: ''; display: block; width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px; margin: 0 auto 24px;
}
.about-content p { font-size: 15px; color: var(--text-secondary); line-height: 2; margin-bottom: 18px; }
.about-content p:last-child { margin-bottom: 0; }
.about-tagline {
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 8px;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #0a1628 0%, #0d1b30 50%, #08111f 100%);
  position: relative;
  color: #b8c5d3; padding: 52px 0 0;
}

/* 顶部品牌色细线 */
.footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--blue), var(--green), transparent 90%);
  opacity: .4;
}

/* 底部点阵装饰 */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(96,165,250,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.footer-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px; padding-bottom: 36px;
  position: relative;
  align-items: start;
}

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: #f0f6fc; margin-bottom: 10px;
}

.footer-logo-mark { width: 28px; height: 28px; display: block; }

.footer-tagline { font-size: 13px; color: #c9d1d9; margin-bottom: 2px; }
.footer-motto { font-size: 13px; color: #c9d1d9; }

.footer-col h4 {
  font-size: 12px; font-weight: 600; color: #f0f6fc;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 2px;
}

.footer-col li { font-size: 13px; color: #b8c5d3; margin-bottom: 6px; line-height: 1.5; transition: color .2s; }






.footer-qr {
  display: flex; flex-direction: column; align-items: flex-start;
}

.footer-qr-placeholder {
  position: relative;
  width: 66px; height: 66px;
  background: rgba(96,165,250,.06);
  border: 1px solid rgba(96,165,250,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
  color: #60a5fa;
  transition: all .3s;
  cursor: pointer;
  overflow: hidden;
}

.footer-qr-hint {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(59,130,246,.95), rgba(16,185,129,.95));
  opacity: 0;
  transition: opacity .3s;
  letter-spacing: 1px;
  border-radius: 5px;
}

.footer-qr-placeholder:hover .footer-qr-hint {
  opacity: 1;
}

.footer-qr-placeholder:hover {
  border-color: #60a5fa;
}


.footer-col a:hover { color: #60a5fa; }

.footer-bottom { border-top: 1px solid rgba(96,165,250,.08); padding: 16px 0; position: relative; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 12px; color: #94a3b8; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 24px; }
  .hero-title { font-size: 38px; }
  .hero-right { flex: 0 0 320px; }
  .hero-stats { padding: 12px 18px; }
  .stat-item { padding: 0 10px; }
  .stat-num { font-size: 24px; }
  .section-title { font-size: 26px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 56px 0; text-align: center; }
  .hero-inner { flex-direction: column; gap: 28px; }
  .hero-left { max-width: 100%; }
  .hero-right { flex: 0 0 auto; width: 240px; margin: 0 auto; }
  .hero-title { font-size: 32px; letter-spacing: -1px; }
  .hero-desc { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; justify-content: center; }
  .hero-stats { gap: 10px; padding: 14px 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .stat-num { font-size: 26px; }
  .hero-shape { display: none; }
  .hero-grid { opacity: .4; }

  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }

  .nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,.98); flex-direction: column;
    padding: 14px 24px 20px; gap: 12px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; }

  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { order: -1; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-right { width: 200px; }
  .features-grid { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: 1fr; }
  .hero-stats { padding: 12px 16px; }
}
