/* ═══ VARIABLES & RESET ═══ */
:root {
  --color-bg: #0a0e14;
  --color-card: #0f1520;
  --color-primary: #ff6b00;
  --color-secondary: #ffad00;
  --color-accent: #00c9ff;
  --color-success: #00c853;
  --color-danger: #ff1744;
  --color-text: #e8ecf0;
  --color-muted: #7a8a9a;
  --color-border: #1a2332;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(255, 107, 0, 0.18);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255, 107, 0, 0.03) 49%, rgba(255, 107, 0, 0.03) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(255, 107, 0, 0.03) 49%, rgba(255, 107, 0, 0.03) 51%, transparent 52%);
  background-size: 60px 104px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-secondary); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin: 2.5rem 0 1rem; }
h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }

p { margin-bottom: 1rem; color: var(--color-text); }

ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.4rem; }

.container {
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main { position: relative; z-index: 1; padding-bottom: 3rem; }

/* ═══ STICKY HEADER ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.site-header.header-shrink { padding: 0; }
.site-header.header-shrink .header-inner { padding: 0.5rem 0; }
.site-header.header-shrink .logo-text { font-size: 1.35rem; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img { border-radius: 8px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: var(--transition);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-desktop a {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--color-primary); background: rgba(255, 107, 0, 0.1); }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #ff6b00, #ff9800);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-download:hover { transform: translateY(-2px); box-shadow: var(--shadow); opacity: 0.95; color: #fff !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid var(--color-border);
}

.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--color-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.nav-mobile a:hover { background: rgba(255, 107, 0, 0.1); color: var(--color-primary); }

/* ═══ BREADCRUMB ═══ */
.breadcrumb {
  padding: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { color: var(--color-primary); }

/* ═══ HERO ═══ */
.hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(0, 201, 255, 0.08), transparent 50%);
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 { margin-bottom: 0.75rem; }
.hero-sub { font-size: 1.05rem; color: var(--color-muted); margin-bottom: 1.25rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.trust-bar span { display: flex; align-items: center; gap: 0.35rem; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-rating .stars { color: var(--color-secondary); }

.hero-image img {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.hero-image .hero-app-image {
  max-width: 360px;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
}

/* ═══ STATS ROW ═══ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow); }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-label { font-size: 0.82rem; color: var(--color-muted); }

/* ═══ SECTIONS ═══ */
.content-section { padding: 1.5rem 0; }

.section-intro { color: var(--color-muted); max-width: 720px; margin-bottom: 1.5rem; }

/* ═══ APP INFO TABLE ═══ */
.info-table-wrap { overflow-x: auto; margin: 1.5rem 0; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.info-table th,
.info-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.info-table th {
  background: rgba(255, 107, 0, 0.12);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  width: 35%;
}

.info-table tr:last-child td,
.info-table tr:last-child th { border-bottom: none; }

/* ═══ ACCESS STEPS ═══ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover { border-color: var(--color-primary); transform: translateY(-3px); }

.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b00, #ffad00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.75rem;
}

.step-card h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.step-card p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

/* ═══ ELIGIBILITY TABLE ═══ */
.elig-table .row-ok td:first-child { color: var(--color-success); }
.elig-table .row-warn td:first-child { color: var(--color-secondary); }

/* ═══ FEATURE CARDS ═══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card i {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.feature-card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

/* ═══ COMPARISON TABLE ═══ */
.compare-table th { text-align: center; }
.compare-table td { text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; }

/* ═══ DOWNLOAD BOX ═══ */
.download-box {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 173, 0, 0.08));
  border: 1px solid var(--color-primary);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.download-meta span { display: flex; align-items: center; gap: 0.35rem; }

.subpage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.subpage-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
  display: block;
  color: var(--color-text);
}

.subpage-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  color: var(--color-text);
}

.subpage-card i { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 0.5rem; display: block; }
.subpage-card h3 { font-size: 1rem; margin: 0.25rem 0; color: var(--color-text); }
.subpage-card p { font-size: 0.8rem; color: var(--color-muted); margin: 0; }

/* ═══ INSTALL STEPS ═══ */
.install-steps { counter-reset: install; list-style: none; margin: 1.5rem 0; padding: 0; }

.install-steps li {
  counter-increment: install;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.install-steps li::before {
  content: counter(install);
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff6b00, #ffad00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══ SCREENSHOTS GRID ═══ */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.screenshot-item img {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  width: 100%;
  transition: var(--transition);
}

.screenshot-item:hover img { border-color: var(--color-primary); }

/* ═══ PROS CONS ═══ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pros-box, .cons-box {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--color-border);
}

.pros-box { border-left: 4px solid var(--color-success); }
.cons-box { border-left: 4px solid var(--color-danger); }

.pros-box h3 { color: var(--color-success); }
.cons-box h3 { color: var(--color-danger); }

.pros-box ul, .cons-box ul { list-style: none; margin: 0; padding: 0; }
.pros-box li::before { content: '✅ '; }
.cons-box li::before { content: '⚠ '; }

/* ═══ ERRORS TABLE ═══ */
.errors-table td:last-child { color: var(--color-accent); font-size: 0.88rem; }

/* ═══ ALERT BOXES ═══ */
.alert-box {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

.alert-warning {
  background: rgba(255, 23, 68, 0.08);
  border-left: 4px solid var(--color-danger);
  color: var(--color-text);
}

.alert-tip {
  background: rgba(0, 200, 83, 0.08);
  border-left: 4px solid var(--color-success);
}

.alert-info {
  background: rgba(255, 107, 0, 0.08);
  border-left: 4px solid var(--color-primary);
}

/* ═══ FAQ ACCORDION ═══ */
.faq-list { margin: 1.5rem 0; }

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--color-primary); }
.faq-question i { color: var(--color-primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ═══ RELATED PAGES ═══ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.related-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
  display: block;
  color: var(--color-text);
}

.related-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  color: var(--color-text);
}

.related-card h3 { font-size: 1rem; color: var(--color-primary); margin-bottom: 0.35rem; }
.related-card p { font-size: 0.85rem; color: var(--color-muted); margin: 0; }

/* ═══ VERSION HISTORY ═══ */
.version-table .version-new { color: var(--color-primary); font-weight: 600; }

/* ═══ ERROR FIX CARDS ═══ */
.error-fix-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--color-primary);
}

.error-fix-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
}

.error-fix-card ol { margin-top: 0.75rem; color: var(--color-muted); font-size: 0.9rem; }

/* ═══ CHECKLIST ═══ */
.checklist { list-style: none; margin: 1rem 0; padding: 0; }
.checklist li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.checklist li i { color: var(--color-success); }

/* ═══ PAGE HERO (subpages) ═══ */
.page-hero {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .hero-sub { margin-bottom: 1rem; }

/* ═══ BACK TO TOP ═══ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--color-secondary); transform: translateY(-3px); }

/* ═══ DOWNLOAD MODAL (v2) ═══ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.modal-active { opacity: 1; visibility: visible; }

.modal-card {
  background: #1a1f28;
  border: 1px solid #2a3344;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  text-align: center;
}

.modal-overlay.modal-active .modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  color: #8a96a8;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.modal-close:hover { color: #fff; }

.modal-view.hidden { display: none; }

.modal-app-icon-v2 {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
}

.logo img {
  object-fit: cover;
}

.modal-title-v2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}

.modal-meta-v2 {
  font-size: 0.9rem;
  color: #8a96a8;
  margin: 0 0 1.25rem;
}

.modal-divider {
  border: none;
  border-top: 1px solid #2a3344;
  margin: 0 0 1.25rem;
}

.modal-instruction {
  font-size: 0.88rem;
  color: #9aa5b5;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.modal-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #7c4dff 0%, #ff6b00 55%, #ff9800 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.35);
}

.modal-download-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 107, 0, 0.45);
}

.modal-download-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.modal-verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #00c853;
  margin: 1rem 0 1.25rem;
}

.modal-verified i { font-size: 0.9rem; }

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: #252d3a;
  border: 1px solid #333d4d;
  color: #b8c4d0;
}

.modal-tag i { font-size: 0.7rem; }
.modal-tag.tag-free i { color: #00c853; }
.modal-tag.tag-safe i { color: #42a5f5; }
.modal-tag.tag-fast i { color: #ff9800; }

.modal-terms {
  font-size: 0.72rem;
  color: #6a7688;
  margin: 0;
  line-height: 1.5;
}

.modal-terms a { color: #8a96a8; text-decoration: underline; }
.modal-terms a:hover { color: var(--color-primary); }

.modal-progress-label {
  font-size: 0.88rem;
  color: #9aa5b5;
  margin: 0 0 1rem;
}

.modal-progress-bar-v2 {
  width: 100%;
  height: 8px;
  background: #252d3a;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.modal-progress-fill-v2 {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7c4dff, #ff6b00, #ff9800);
  border-radius: 999px;
  transition: width 0.05s linear;
}

.modal-pct-v2 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.footer-col {
  min-width: 0;
}

.footer-col-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.25rem;
}

.footer-brand img { border-radius: 8px; }

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
}

.footer-cta-text {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
  max-width: 260px;
}

.footer-col-cta .btn-download {
  margin-top: 0.25rem;
}

.footer-contact-link {
  font-size: 0.82rem;
  color: var(--color-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact-link:hover { color: var(--color-primary); }

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.footer-col a {
  display: block;
  color: var(--color-muted);
  font-size: 0.85rem;
  padding: 0.25rem 0;
}

.footer-col a:hover { color: var(--color-primary); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.footer-disclaimer {
  font-size: 0.78rem;
  margin-top: 0.5rem;
  color: var(--color-muted);
  opacity: 0.85;
}

/* ═══ ITEM LIST (new features) ═══ */
.feature-preview-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  align-items: center;
  transition: var(--transition);
}

.feature-preview-card:hover { border-color: var(--color-primary); }

.feature-preview-card img {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-inner .btn-download { display: none; }
  .hamburger { display: block; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .modal-dl-cards { grid-template-columns: 1fr; }
  .feature-preview-card { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; gap: 0.5rem; }
}

/* ═══ LEGAL & CONTACT PAGES ═══ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-content h2:first-of-type { margin-top: 1rem; }

.legal-content ul { color: var(--color-muted); font-size: 0.95rem; }

.legal-content p { color: var(--color-muted); font-size: 0.95rem; }

.legal-updated {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.contact-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  max-width: 520px;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 1rem 0;
}

.contact-email:hover { color: var(--color-secondary); }

.contact-note {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
}
