/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== Variables ===== */
:root {
  --primary: #ff6b35;
  --primary-dark: #e65528;
  --secondary: #f73446;
  --gradient: linear-gradient(135deg, #ff6b35 0%, #f73446 100%);
  --dark: #1a1a2e;
  --text: #333;
  --muted: #666;
  --light: #f8f9fb;
  --border: #e8eaed;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 16px;
  --max-w: 1200px;
}

/* ===== Layout ===== */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.section { padding: 64px 0; }
.alt-bg { background: var(--light); }
.center { text-align: center; }
.max-w { max-width: 700px; margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); font-size: 0.9rem; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--dark); }
.logo-img {
  width: 40px; height: 40px; border-radius: 10px;
  object-fit: cover; display: block;
}
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a { display: block; padding: 8px 14px; border-radius: 8px; color: var(--text); font-weight: 500; transition: .2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: #fff1eb; }
.nav-menu .btn-small { padding: 8px 16px; background: var(--gradient); color: #fff !important; }
.nav-menu .btn-green {
  padding: 8px 16px; background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
  color: #fff !important; position: relative;
}
.nav-menu .btn-green::before {
  content: "NEW"; position: absolute; top: -6px; left: -6px;
  background: #ff4d4f; color: #fff; font-size: 0.55rem; font-weight: 800;
  padding: 2px 5px; border-radius: 4px; line-height: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: .2s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  transition: transform .15s, box-shadow .15s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.25); }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-secondary { background: #222; color: #fff; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: #fff1eb; }

/* ===== Hero ===== */
.hero { background: linear-gradient(135deg, #fff8f5 0%, #fff0ed 100%); padding: 72px 0 64px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tag {
  display: inline-block; padding: 6px 14px; border-radius: 50px;
  background: #fff; color: var(--secondary); font-weight: 700; font-size: 0.875rem;
  border: 1px solid #ffd6d0; margin-bottom: 18px;
}
.hero h1 { font-size: 2.6rem; line-height: 1.2; color: var(--dark); margin-bottom: 18px; }
.hero-desc { font-size: 1.1rem; color: var(--muted); margin-bottom: 28px; max-width: 540px; }
.hero-desc strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-badges li { display: flex; flex-direction: column; }
.hero-badges strong { font-size: 1.6rem; color: var(--primary); line-height: 1.1; }
.hero-badges span { font-size: 0.85rem; color: var(--muted); }

/* ===== Hero Banner (city night) ===== */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, #1a2a6c 0%, #253564 50%, #1a2a6c 100%);
  color: #fff; padding: 90px 0 80px; overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Crect x='0' y='180' width='70' height='140'/%3E%3Crect x='80' y='140' width='50' height='180'/%3E%3Crect x='150' y='200' width='90' height='120'/%3E%3Crect x='260' y='120' width='60' height='200'/%3E%3Crect x='340' y='170' width='80' height='150'/%3E%3Crect x='440' y='100' width='55' height='220'/%3E%3Crect x='510' y='190' width='100' height='130'/%3E%3Crect x='630' y='130' width='70' height='190'/%3E%3Crect x='720' y='210' width='60' height='110'/%3E%3Crect x='800' y='150' width='90' height='170'/%3E%3Crect x='910' y='190' width='55' height='130'/%3E%3Crect x='980' y='110' width='80' height='210'/%3E%3Crect x='1080' y='180' width='70' height='140'/%3E%3Crect x='1170' y='140' width='60' height='180'/%3E%3Crect x='1250' y='200' width='90' height='120'/%3E%3Crect x='1350' y='160' width='90' height='160'/%3E%3C/g%3E%3C/svg%3E") bottom center no-repeat,
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 30%);
  background-size: cover, auto, auto;
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-banner .hero-inner { grid-template-columns: 1.3fr 0.7fr; }
.hero-banner h1 { color: #fff; font-size: 2.6rem; margin-bottom: 8px; }
.hero-banner h1 span { font-weight: 400; opacity: 0.9; font-size: 0.72em; }
.hero-slogan { font-size: 1rem; opacity: 0.82; margin-bottom: 0; }
.hero-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.hero-logo { border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.hero-download { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-download .btn { padding: 13px 26px; gap: 8px; }
.btn-android {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(4px);
}
.btn-android:hover { background: rgba(255,255,255,0.22); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-ios { background: #fff; color: #222; }
.btn-ios:hover { background: #f2f2f2; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.hero-tip { font-size: 0.9rem; opacity: 0.75; }
.hero-qr {
  justify-self: end; text-align: center;
  background: #fff; border-radius: 18px; padding: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}
.hero-qr img { display: block; width: 170px; height: auto; border-radius: 10px; }
.hero-qr span { display: block; margin-top: 12px; color: var(--dark); font-size: 0.9rem; font-weight: 600; }

/* Phone mockup */
.phone-mockup {
  width: 260px; height: 520px; margin: 0 auto;
  background: var(--dark); border-radius: 40px; padding: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.phone-screen {
  background: #fff; border-radius: 30px; height: 100%; padding: 24px 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.phone-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.phone-title { font-weight: 800; color: var(--dark); }
.phone-tag { font-size: 0.75rem; background: #fff1eb; color: var(--primary); padding: 4px 8px; border-radius: 6px; }
.phone-task {
  background: var(--light); border-radius: 12px; padding: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-task.hot { background: #fff1eb; }
.phone-task-name { font-weight: 600; }
.phone-task-price { color: var(--secondary); font-weight: 800; }
.phone-total {
  margin-top: auto; background: var(--gradient); color: #fff;
  border-radius: 14px; padding: 16px; display: flex; justify-content: space-between; align-items: center;
}
.phone-total strong { font-size: 1.4rem; }
.hero-showcase {
  max-width: 560px; width: 100%; height: auto;
  margin: 0 auto; display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
}

/* ===== Section head ===== */
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h2 { font-size: 2rem; color: var(--dark); margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.light h2, .section-head.light p { color: #fff; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.steps-grid.three { grid-template-columns: repeat(3, 1fr); }
.step-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative; transition: .2s;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  display: inline-block; font-size: 2.4rem; font-weight: 900;
  color: var(--primary); opacity: .18; line-height: 1;
  position: absolute; top: 18px; right: 22px;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); }
.step-card p { color: var(--muted); font-size: 0.95rem; }

/* ===== Tasks ===== */
.task-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.tab {
  padding: 10px 22px; border-radius: 50px; background: #fff; border: 1px solid var(--border);
  color: var(--muted); font-weight: 500; transition: .2s;
}
.tab:hover { border-color: var(--primary); color: var(--primary); }
.tab.active { background: var(--gradient); color: #fff; border-color: transparent; }
.task-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.task-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; transition: .2s;
}
.task-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.task-card.hidden { display: none; }
.task-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.task-header h3 { font-size: 1.1rem; color: var(--dark); }
.task-price { color: var(--secondary); font-weight: 800; font-size: 1.25rem; }
.task-desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.task-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--muted); }
.task-link { color: var(--primary); font-weight: 700; }
.section-foot { text-align: center; margin-top: 36px; }

/* ===== App Showcase Slider ===== */
.app-showcase { background: #fff; }
.showcase-slider {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.slider-viewport {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.slider-track {
  display: flex; transition: transform .5s ease;
}
.slider-slide {
  min-width: 100%; padding: 12px 40px 48px;
  display: flex; flex-direction: column; align-items: center;
  box-sizing: border-box;
}
.slide-img {
  width: 100%; max-width: 300px; height: auto; display: block;
  border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.slide-caption {
  margin-top: 22px; font-size: 1rem; color: var(--muted); text-align: center;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--dark);
  font-size: 1.6rem; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12); z-index: 2;
  transition: .2s;
}
.slider-arrow:hover { background: #fff; color: var(--primary); }
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.slider-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d8d8d8; transition: .2s;
}
.slider-dots .dot.active { background: var(--primary); width: 26px; border-radius: 5px; }
.showcase-features ol { list-style: none; counter-reset: feature; }
.showcase-features li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0 18px 50px; position: relative; border-bottom: 1px dashed var(--border);
}
.showcase-features li:last-child { border-bottom: none; }
.showcase-features li::before {
  counter-increment: feature; content: counter(feature);
  position: absolute; left: 0; top: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .9rem;
}
.showcase-features strong {
  font-size: 1.1rem; color: var(--secondary);
}
.showcase-features span { color: var(--muted); font-size: 0.95rem; }

/* ===== Testimonials ===== */
.testimonials { background: var(--dark); color: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 26px;
}
.reviewer { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); display: grid; place-items: center;
  font-weight: 800; color: #fff;
}
.reviewer h3 { font-size: 1rem; }
.reviewer span { font-size: 0.85rem; color: #b0b3c7; }
.review-text { font-size: 0.95rem; color: #ddd; margin-bottom: 16px; }
.review-income { color: #ffb8a8; font-size: 0.9rem; }
.review-income strong { color: #fff; font-size: 1.1rem; margin-left: 4px; }
.platform-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px; text-align: center;
}
.platform-stats div { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 24px; }
.platform-stats strong { display: block; font-size: 2rem; color: #fff; }
.platform-stats span { font-size: 0.9rem; color: #b0b3c7; }

/* ===== Download section ===== */
.download-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.download h2 { font-size: 2rem; color: var(--dark); margin-bottom: 14px; }
.download p { color: var(--muted); margin-bottom: 20px; }
.download-benefits { margin-bottom: 28px; }
.download-benefits li {
  padding: 10px 0; padding-left: 28px; position: relative;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.download-benefits li::before {
  content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 800;
}
.download-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.download-qr { text-align: center; }
.qr-img {
  display: block; width: 180px; height: auto; margin: 0 auto 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px;
}
.qr-tip { font-size: 0.9rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px; font-weight: 600; color: var(--dark);
  cursor: pointer; list-style: none; position: relative; padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--primary); font-weight: 300;
}
.faq-item[open] summary::after { content: "−"; }
.faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 0.95rem; }
.faq-body strong { color: var(--text); }
.faq-img-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: 16px 0;
}
.faq-figure {
  margin: 0; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; text-align: center;
}
.faq-figure img {
  width: 100%; height: auto; display: block;
}
.faq-figure figcaption {
  padding: 10px 12px; font-size: 0.85rem; color: var(--muted); background: #fafafa;
}
@media (max-width: 640px) {
  .faq-img-row { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer { background: #111; color: #bbb; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-grid .logo { color: #fff; margin-bottom: 14px; }
.footer-desc { font-size: 0.9rem; color: #888; line-height: 1.7; }
.footer-grid h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: #aaa; transition: .2s; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #222; padding-top: 24px; text-align: center; font-size: 0.85rem; color: #777; }
.footer-bottom p { margin-bottom: 6px; }

/* ===== Backtop ===== */
.backtop {
  position: fixed; right: 20px; bottom: 20px; z-index: 99;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(247,52,70,0.3);
  opacity: 0; pointer-events: none; transition: .2s;
}
.backtop.visible { opacity: 1; pointer-events: auto; }

/* ===== Page hero ===== */
.page-hero { background: var(--gradient); color: #fff; padding: 56px 0 48px; text-align: center; }
.page-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.page-subtitle { font-size: 1.05rem; opacity: 0.95; margin-bottom: 16px; }
.breadcrumb { font-size: 0.85rem; opacity: 0.85; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ===== Two column ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col h2 { font-size: 1.8rem; color: var(--dark); margin-bottom: 14px; }
.two-col p { color: var(--muted); margin-bottom: 14px; }
.check-list { margin: 18px 0; }
.check-list li {
  padding: 8px 0 8px 28px; position: relative; color: var(--text);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 800;
}

/* ===== Download cards ===== */
.download-cards { display: grid; gap: 20px; }
.download-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.dl-icon { margin-bottom: 16px; }
.dl-icon svg { fill: var(--primary); }
.download-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.download-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.dl-note { display: block; margin-top: 10px; font-size: 0.8rem; color: #999; }

/* ===== QR big ===== */
.qr-big {
  width: 160px; height: auto; margin: 20px auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px;
}

/* ===== Stat cards ===== */
.stat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.stat-card strong { display: block; font-size: 1.8rem; color: var(--primary); }
.stat-card span { color: var(--muted); font-size: 0.9rem; }

/* ===== Feature grid ===== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.feature-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

/* ===== About highlights ===== */
.about-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.highlight {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px;
}
.highlight-num { font-size: 1.8rem; font-weight: 900; color: var(--primary); opacity: .2; }
.highlight h3 { font-size: 1.1rem; color: var(--dark); margin: 6px 0 8px; }
.highlight p { color: var(--muted); font-size: 0.9rem; }

/* ===== Alias cards ===== */
.alias-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.alias-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.alias-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 10px; }
.alias-card p { color: var(--muted); font-size: 0.92rem; }

/* ===== Tips ===== */
.tips { background: #fff; }
.tip-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tip-card {
  background: var(--light); border-radius: var(--radius); padding: 24px;
  border-left: 4px solid var(--primary);
}
.tip-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.tip-card p { color: var(--muted); font-size: 0.92rem; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, #fff8f5 0%, #fff0ed 100%); }
.cta h2 { margin-bottom: 12px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-inner, .download-inner, .two-col, .showcase-slider { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 220px; height: 440px; }
  .steps-grid, .steps-grid.three, .task-grid, .review-grid, .platform-stats,
  .feature-grid, .alias-cards, .tip-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-banner { text-align: center; padding: 64px 0; }
  .hero-banner .hero-inner { gap: 36px; }
  .hero-brand { justify-content: center; }
  .hero-download { justify-content: center; }
  .hero-qr { justify-self: center; margin-top: 8px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 4%; display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { border-radius: 0; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-menu .btn-small { margin-top: 8px; border-radius: 50px; text-align: center; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 1.6rem; }
  .steps-grid, .steps-grid.three, .task-grid, .review-grid, .platform-stats,
  .feature-grid, .alias-cards, .tip-cards, .stat-cards, .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .download-actions, .cta-actions { flex-direction: column; }
  .download-actions .btn, .cta-actions .btn { width: 100%; }
  .page-hero h1 { font-size: 1.7rem; }
  .two-col.reverse > div:first-child { order: 2; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero-badges { gap: 18px; }
  .task-tabs { gap: 8px; }
  .tab { padding: 8px 14px; font-size: 0.9rem; }
}
