/* =============================================
   apps-aifanyi.com.cn - 爱翻译官方网站样式
   SEO优化：深绿科技风格，现代简洁
   ============================================= */

:root {
  --primary: #059669;
  --primary-dark: #047857;
  --primary-light: #10b981;
  --secondary: #0891b2;
  --accent: #f59e0b;
  --green: #10b981;
  --dark: #0a1628;
  --dark-2: #0f2744;
  --dark-3: #1a3a5c;
  --teal: #0d9488;
  --blue: #2563eb;
  --white: #ffffff;
  --gray: #94a3b8;
  --light: #f0fdf4;
  --border: rgba(255,255,255,0.07);
  --radius: 16px;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0f2744 50%, #0d3d2e 100%);
  --gradient-primary: linear-gradient(135deg, #059669, #10b981);
  --gradient-green: linear-gradient(135deg, #047857, #10b981);
  --gradient-teal: linear-gradient(135deg, #0d9488, #14b8a6);
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  color: #e2e8f0;
  background: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   Header
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}

.logo-text {
  background: linear-gradient(90deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav a.active { color: #34d399; }
.nav a.active:hover { background: rgba(16,185,129,0.08); }

.nav-download {
  padding: 9px 22px !important;
  background: var(--gradient-primary) !important;
  color: #fff !important;
  font-weight: 700;
  margin-left: 8px;
  border-radius: 10px !important;
  box-shadow: 0 4px 14px rgba(16,185,129,0.3) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.45) !important;
  color: #fff !important;
  background: var(--gradient-primary) !important;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 65%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 65%);
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-left { max-width: 560px; }

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #34d399;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #34d399, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(16,185,129,0.5);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-stat { text-align: left; }

.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #10b981;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 6px;
}

/* Hero Right - 功能特性 */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: all 0.25s;
}

.feature-quick-card:hover {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.2);
  transform: translateX(6px);
}

.fqc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.fqc-icon-g { background: rgba(16,185,129,0.15); color: #34d399; }
.fqc-icon-b { background: rgba(37,99,235,0.12); color: #60a5fa; }
.fqc-icon-y { background: rgba(245,158,11,0.12); color: #fbbf24; }
.fqc-icon-t { background: rgba(13,148,136,0.12); color: #2dd4bf; }
.fqc-icon-p { background: rgba(168,85,247,0.1); color: #c084fc; }
.fqc-icon-s { background: rgba(14,165,233,0.12); color: #38bdf8; }

.fqc-info { flex: 1; }

.fqc-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 2px;
}

.fqc-desc {
  font-size: 0.8rem;
  color: #64748b;
}

.fqc-tag {
  padding: 3px 10px;
  background: rgba(16,185,129,0.1);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(16,185,129,0.15);
  flex-shrink: 0;
}

/* =============================================
   Section
   ============================================= */
.section { padding: 100px 0; }
.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark); }
.section-green { background: linear-gradient(180deg, #0a1628 0%, #0d2e1f 100%); }
.section-teal { background: linear-gradient(180deg, #0f2744 0%, #0d3d2e 100%); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #059669;
  border-radius: 1px;
}

.section-title {
  font-size: 2.125rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 600px;
  margin-bottom: 56px;
}

/* =============================================
   统计数字
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-4px);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #34d399, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* =============================================
   功能卡片
   ============================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #34d399;
  text-decoration: none;
  margin-top: 14px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; color: #10b981; }

/* =============================================
   优势展示
   ============================================= */
.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.advantage-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: all 0.25s;
}

.advantage-item:hover {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.2);
  transform: translateX(4px);
}

.advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(16,185,129,0.1);
  color: #34d399;
}

.advantage-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.advantage-text p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   新闻文章卡片
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.news-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.news-card-img {
  height: 180px;
  background: linear-gradient(135deg, #0f2744, #0d2e1f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(52,211,153,0.25);
}

.news-card-body {
  padding: 20px 24px;
  flex: 1;
}

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(16,185,129,0.12);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-card h3:hover { color: #34d399; }

.news-card p {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.65;
}

.news-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: #475569;
  margin-top: auto;
}

/* =============================================
   评价卡片
   ============================================= */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s;
}

.review-card:hover {
  background: rgba(16,185,129,0.05);
  border-color: rgba(16,185,129,0.15);
}

.review-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #e2e8f0;
}

/* =============================================
   步骤
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, #059669, #10b981, #14b8a6);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(16,185,129,0.2); }

summary {
  list-style: none;
  padding: 18px 24px;
  font-weight: 600;
  color: #e2e8f0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #64748b;
  transition: transform 0.2s;
  flex-shrink: 0;
}

details[open] summary::after { transform: rotate(45deg); color: #34d399; }

.faq-answer {
  padding: 0 24px 18px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin: 0; }
.faq-answer ul, .faq-answer ol { padding-left: 20px; margin: 10px 0; }

/* =============================================
   Article / News Content
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumb a { color: #64748b; text-decoration: none; }
.breadcrumb a:hover { color: #34d399; }
.breadcrumb span { color: #34d399; }

.article { max-width: 800px; margin: 0 auto; }

.article-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

.article-header h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.875rem;
  color: #64748b;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.article-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-content p {
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 16px;
}

.article-content ul, .article-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #94a3b8;
}

.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content strong { color: #e2e8f0; }
.article-content a { color: #34d399; }
.article-content a:hover { color: #10b981; }

/* =============================================
   Table
   ============================================= */
.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  margin-bottom: 32px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead { background: rgba(16,185,129,0.06); }

th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  color: #34d399;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}

td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: #94a3b8;
}

tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(16,185,129,0.03); }

/* =============================================
   Code
   ============================================= */
code {
  background: rgba(16,185,129,0.1);
  color: #34d399;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Fira Code', Consolas, monospace;
  font-size: 0.875em;
}

pre {
  background: #050f1a;
  color: #e2e8f0;
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin-bottom: 24px;
  font-family: 'Fira Code', Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  border: 1px solid rgba(16,185,129,0.1);
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* =============================================
   Download Hero (page-specific)
   ============================================= */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 65%);
}

.dl-stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.dl-stat {
  text-align: center;
  padding: 14px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

.dl-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #10b981;
}

.dl-stat-label {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 4px;
}

/* =============================================
   Platform download cards
   ============================================= */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dl-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  transition: all 0.3s;
  align-items: flex-start;
}

.dl-card:hover {
  background: rgba(16,185,129,0.05);
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.dl-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.dl-icon-w { background: rgba(37,99,235,0.12); color: #60a5fa; }
.dl-icon-m { background: rgba(107,114,128,0.12); color: #9ca3af; }
.dl-icon-a { background: rgba(16,185,129,0.12); color: #34d399; }
.dl-icon-l { background: rgba(245,158,11,0.12); color: #fbbf24; }

.dl-info { flex: 1; }

.dl-info h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.dl-info p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.6;
}

.dl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.dl-tag {
  padding: 3px 10px;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(16,185,129,0.25);
}

.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.35);
  color: #fff;
}

.dl-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  margin-left: 8px;
}

.dl-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: #060f1a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #475569;
  margin-top: 14px;
  line-height: 1.7;
}

.footer h4 {
  color: #f1f5f9;
  font-size: 0.875rem;
  margin-bottom: 18px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: #64748b;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #34d399; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #475569;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a { color: #475569; text-decoration: none; }
.footer-bottom-links a:hover { color: #34d399; }

/* =============================================
   Help page - step guide
   ============================================= */
.help-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
}

.help-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-section h2 .num {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-section p, .help-section li {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.help-section ol {
  padding-left: 20px;
  margin: 12px 0;
}

.help-section li { margin-bottom: 8px; }

/* =============================================
   Utilities
   ============================================= */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.625rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .advantage-list { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .review-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats-row { gap: 20px; flex-wrap: wrap; }
  .dl-stat-row { gap: 12px; }
  .hero-right { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.625rem; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #1a4a5c; }
