/* ============================================
   Chrome Download Landing Page - Global Styles
   ============================================ */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.6;
  color: #3c4043;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Spin Animation (Required for download.js)
   ============================================ */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================
   Navigation
   ============================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8eaed;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #5f6368;
}
.nav-brand svg { width: 28px; height: 28px; }
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #5f6368;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  background: #f1f3f4;
  color: #1a73e8;
}
.nav-links a.active {
  background: #1a73e8;
  color: #fff;
}
.nav-links a.active svg { stroke: #fff; }
.nav-links a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.nav-toggle:hover { background: #f1f3f4; }
.nav-toggle svg { width: 24px; height: 24px; stroke: #5f6368; stroke-width: 2; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #1a73e8;
  color: #fff;
  box-shadow: 0 2px 6px rgba(26,115,232,0.3);
}
.btn-primary:hover {
  background: #1557b0;
  box-shadow: 0 4px 12px rgba(26,115,232,0.4);
}
.btn-secondary {
  background: #fff;
  color: #1a73e8;
  border: 2px solid #1a73e8;
}
.btn-secondary:hover { background: #f8f9fa; }
.btn-large { padding: 14px 36px; font-size: 16px; border-radius: 28px; }

/* ============================================
   Section Utilities
   ============================================ */
.section { padding: 80px 0; }
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #202124;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 16px;
  color: #5f6368;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-alt { background: #f8f9fa; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #e8f0fe 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,115,232,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,115,232,0.1);
  color: #1a73e8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #202124;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title span { color: #1a73e8; }
.hero-desc {
  font-size: 18px;
  color: #5f6368;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  font-size: 13px;
  color: #80868b;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-meta svg { width: 16px; height: 16px; stroke: #80868b; stroke-width: 2; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-box {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 50%, #34a853 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26,115,232,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
}
.hero-visual-box svg { width: 120px; height: 120px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }

/* ============================================
   Feature Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: #1a73e8;
  box-shadow: 0 8px 24px rgba(26,115,232,0.1);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon.blue  { background: #1a73e8; }
.feature-icon.green { background: #34a853; }
.feature-icon.red   { background: #ea4335; }
.feature-icon.yellow{ background: #f9ab00; }
.feature-icon.purple{ background: #9334e6; }
.feature-icon.teal  { background: #009688; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

/* ============================================
   Platform Cards
   ============================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.platform-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.platform-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.platform-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.platform-icon-wrap svg { width: 28px; height: 28px; }
.platform-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 8px;
}
.platform-card p {
  font-size: 13px;
  color: #80868b;
  margin-bottom: 16px;
  line-height: 1.6;
}
.platform-card .btn {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================
   Detail Blocks (Image + Text)
   ============================================ */
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.detail-block:last-child { margin-bottom: 0; }
.detail-block.reverse { direction: rtl; }
.detail-block.reverse > * { direction: ltr; }
.detail-visual {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.detail-visual svg { width: 180px; height: 180px; }
.detail-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 16px;
}
.detail-content p {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.8;
  margin-bottom: 12px;
}
.detail-content ul {
  margin-top: 12px;
}
.detail-content ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 8px;
  line-height: 1.6;
}
.detail-content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1a73e8;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #202124;
}
.stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}
.stars svg {
  width: 14px; height: 14px;
  fill: #f9ab00;
}
.testimonial-card p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid #e8eaed;
}
.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #1a73e8;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: #5f6368;
  font-weight: 500;
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-table-wrap {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  overflow: hidden;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #e8eaed;
}
.comparison-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #202124;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table td:first-child {
  font-weight: 500;
  color: #202124;
}
.comparison-table td {
  color: #5f6368;
}
.comparison-table .check {
  color: #34a853;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.comparison-table .check svg { width: 18px; height: 18px; stroke: #34a853; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.comparison-table .cross {
  color: #ea4335;
  font-weight: 500;
}
.comparison-table .cross svg { width: 18px; height: 18px; stroke: #ea4335; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.comparison-table tr:hover td { background: #f8f9fa; }
.comparison-table .highlight-row td { background: rgba(26,115,232,0.04); }
.comparison-table .highlight-row:hover td { background: rgba(26,115,232,0.08); }

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: #d2d5d9; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #202124;
  text-align: left;
  cursor: pointer;
}
.faq-question svg {
  width: 20px; height: 20px;
  stroke: #5f6368;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.8;
}
.faq-answer p + p { margin-top: 10px; }

/* ============================================
   Download Page Specific
   ============================================ */
.download-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #e8f0fe 0%, #f8f9fa 100%);
}
.download-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.download-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #202124;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.download-hero p {
  font-size: 16px;
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 28px;
}
.download-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.download-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.download-meta-item span:first-child {
  font-size: 12px;
  color: #80868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.download-meta-item span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: #202124;
}
.download-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.download-hero-visual {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-hero-visual svg { width: 160px; height: 160px; }

/* Download Cards Grid */
.download-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.download-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.download-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.download-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.download-card-icon svg { width: 28px; height: 28px; }
.download-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 8px;
}
.download-card .version {
  font-size: 13px;
  color: #80868b;
  margin-bottom: 16px;
}
.download-card .btn { width: 100%; margin-bottom: 20px; }
.download-card-steps {
  border-top: 1px solid #e8eaed;
  padding-top: 16px;
}
.download-card-steps h4 {
  font-size: 13px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 10px;
}
.download-card-steps ol { list-style: decimal; padding-left: 18px; }
.download-card-steps ol li {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* Installation Guide */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.guide-step {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}
.guide-step:hover { border-color: #1a73e8; }
.guide-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.guide-step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 6px;
}
.guide-step-content p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

/* System Requirements */
.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.req-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 28px;
}
.req-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 16px;
}
.req-card h4 svg { width: 22px; height: 22px; }
.req-card ul li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f3f4;
  color: #5f6368;
}
.req-card ul li:last-child { border-bottom: none; }
.req-card ul li span:first-child { font-weight: 500; color: #3c4043; }

/* Changelog */
.changelog-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.changelog-item {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}
.changelog-item:hover { border-color: #1a73e8; }
.changelog-item header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.changelog-item .ver {
  background: #1a73e8;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}
.changelog-item .date {
  font-size: 13px;
  color: #80868b;
}
.changelog-item p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.6;
}

/* Security Badge */
.security-box {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.security-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(52,168,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.security-icon svg { width: 28px; height: 28px; stroke: #34a853; stroke-width: 2; fill: none; }
.security-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 10px;
}
.security-content p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ============================================
   SEO / Content Page Specific
   ============================================ */
.content-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #e8f0fe 0%, #fff 100%);
}
.content-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #202124;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.2;
}
.content-hero p {
  font-size: 17px;
  color: #5f6368;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.content-hero .btn {
  margin: 0 auto;
  display: flex;
}

.article-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.article-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #202124;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #1a73e8;
  display: inline-block;
}
.article-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #202124;
  margin: 28px 0 12px;
}
.article-section p {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.9;
  margin-bottom: 14px;
}
.article-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.article-section ul li {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-section ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 16px;
}
.article-section ol li {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.8;
  margin-bottom: 8px;
}

.seo-cta-box {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin: 40px 0;
}
.seo-cta-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.seo-cta-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.seo-cta-box .btn {
  background: #fff;
  color: #1a73e8;
  font-weight: 700;
  padding: 14px 36px;
}
.seo-cta-box .btn:hover { background: #f1f3f4; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #202124;
  color: #bdc1c6;
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand svg { width: 24px; height: 24px; }
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #9aa0a6;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: #bdc1c6;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #3c4043;
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #9aa0a6;
  line-height: 1.8;
}
.footer-bottom .safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34a853;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-bottom .safe-badge svg { width: 16px; height: 16px; stroke: #34a853; stroke-width: 2; fill: none; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
  .hero-inner,
  .download-hero-inner,
  .detail-block,
  .detail-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .download-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .security-box { flex-direction: column; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .features-grid,
  .platforms-grid,
  .testimonials-grid,
  .stats-grid,
  .download-cards-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid #e8eaed;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
