@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

:root {
  --primary: #029688;
  --primary-light: #34AA9F;
  --primary-soft: #B5E0DC;
  --ink: #1A1A2E;
  --ink-soft: #4A4A6A;
  --cream: #FFFBF5;
  --coral: #FF6B9D;
  --yellow: #FFD93D;
  --blue: #4D96FF;
  --purple: #9B59B6;
  --mint: #6BCB77;
  --orange: #FF9F43;
  --lavender: #C8A2C8;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-soft: 0 20px 60px rgba(26, 26, 46, 0.12);
  --shadow-card: 0 12px 40px rgba(26, 26, 46, 0.10);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -2;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 16%, rgba(2, 150, 136, 0.30) 0, transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(255, 107, 157, 0.32) 0, transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(255, 217, 61, 0.34) 0, transparent 26%),
    radial-gradient(circle at 20% 52%, rgba(77, 150, 255, 0.26) 0, transparent 32%),
    radial-gradient(circle at 58% 76%, rgba(155, 89, 182, 0.26) 0, transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(107, 203, 119, 0.30) 0, transparent 24%),
    radial-gradient(circle at 6% 88%, rgba(255, 159, 67, 0.28) 0, transparent 26%),
    radial-gradient(circle at 46% 20%, rgba(200, 162, 200, 0.30) 0, transparent 24%);
  filter: blur(6px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(26, 26, 46, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(2, 150, 136, 0.10);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  background: linear-gradient(120deg, var(--ink), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 251, 245, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.08);
  background: rgba(255, 251, 245, 0.88);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(2, 150, 136, 0.35);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(120deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu-wrap {
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav-menu li a:hover {
  color: var(--primary);
  background: rgba(2, 150, 136, 0.10);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(2, 150, 136, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(2, 150, 136, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(2, 150, 136, 0.12);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(2, 150, 136, 0.2);
}

.hero-title {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
  background: linear-gradient(120deg, var(--primary) 0%, var(--blue) 45%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-meta {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  z-index: 0;
}

.blob-1 {
  width: 220px;
  height: 220px;
  background: var(--coral);
  top: 10%;
  left: 5%;
}

.blob-2 {
  width: 180px;
  height: 180px;
  background: var(--yellow);
  bottom: 8%;
  right: 8%;
}

.phone {
  position: relative;
  z-index: 2;
  width: 268px;
  background: linear-gradient(160deg, #2a2a44, #1A1A2E);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 90px rgba(26, 26, 46, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.phone-main {
  transform: rotate(-3deg);
  transition: transform 0.4s;
}

.phone-main:hover {
  transform: rotate(0deg) translateY(-6px);
}

.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 6px;
  background: #0a0a16;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 9 / 19;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-download span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.btn-download small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

.btn-android {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 14px 34px rgba(2, 150, 136, 0.40);
}

.btn-apple {
  background: linear-gradient(135deg, #2a2a44, var(--ink));
  color: #fff;
  box-shadow: 0 14px 34px rgba(26, 26, 46, 0.35);
}

.btn-download:hover {
  transform: translateY(-3px);
}

.btn-android:hover {
  box-shadow: 0 20px 44px rgba(2, 150, 136, 0.50);
}

.btn-apple:hover {
  box-shadow: 0 20px 44px rgba(26, 26, 46, 0.45);
}

.btn-download::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s;
}

.btn-download:hover::after {
  left: 140%;
}

.btn-lg {
  padding: 18px 34px;
  font-size: 18px;
}

.icon {
  position: relative;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
}

.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-android::before {
  background-image: url("../icons/android.svg");
}

.icon-apple::before {
  background-image: url("../icons/apple.svg");
}

.stats {
  padding: 30px 0 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  text-align: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.15), transparent);
}

.stat-card strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(120deg, var(--primary), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 14px;
  color: var(--ink-soft);
}

.star {
  font-size: 26px;
  background: linear-gradient(120deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features {
  padding: 90px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--coral), var(--yellow), var(--blue), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26, 26, 46, 0.18);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(2, 150, 136, 0.12), rgba(77, 150, 255, 0.12));
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-6deg);
}

.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, rgba(255, 217, 61, 0.18), rgba(255, 159, 67, 0.18)); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, rgba(155, 89, 182, 0.16), rgba(200, 162, 200, 0.18)); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, rgba(255, 107, 157, 0.16), rgba(255, 159, 67, 0.16)); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, rgba(77, 150, 255, 0.16), rgba(107, 203, 119, 0.16)); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, rgba(26, 26, 46, 0.12), rgba(155, 89, 182, 0.16)); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--ink-soft);
}

.screenshots {
  padding: 90px 0;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.shot {
  flex: 0 0 auto;
  transition: transform 0.4s;
}

.shot:nth-child(odd) { transform: translateY(-24px); }
.shot:nth-child(even) { transform: translateY(24px); }

.shot .phone {
  width: 210px;
  border-radius: 34px;
  padding: 10px;
}

.shot .phone-screen {
  border-radius: 26px;
}

.shot:hover {
  transform: translateY(-12px) scale(1.04);
  z-index: 5;
}

.screenshots-track:hover .shot:not(:hover) {
  opacity: 0.55;
  filter: saturate(0.6);
}

.download {
  padding: 90px 0;
}

.download-card {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, #14142b 50%, #1f1f3a 100%);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 26, 46, 0.30);
}

.download-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
}

.deco-1 {
  width: 260px;
  height: 260px;
  background: var(--primary);
  top: -60px;
  left: -40px;
}

.deco-2 {
  width: 220px;
  height: 220px;
  background: var(--coral);
  bottom: -50px;
  right: -30px;
}

.download-card h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.download-sub {
  position: relative;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.download-actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}

.download-meta {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.faq {
  padding: 90px 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.active {
  box-shadow: 0 18px 50px rgba(26, 26, 46, 0.16);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s;
}

.faq-toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a p {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.footer {
  background: linear-gradient(160deg, var(--ink), #12122a);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-brand .brand-name {
  background: linear-gradient(120deg, var(--primary-light), var(--primary-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer .brand-logo {
  box-shadow: 0 6px 16px rgba(2, 150, 136, 0.5);
}

.footer-desc {
  max-width: 460px;
  font-size: 14px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
}

.footer-links li a:hover {
  color: var(--primary-light);
}

.footer-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 760px;
  line-height: 1.8;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 12px 30px rgba(2, 150, 136, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 90;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top i {
  position: relative;
  width: 18px;
  height: 18px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: 6px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text {
    order: 2;
  }
  .hero-visual {
    order: 1;
    min-height: 380px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }
  .nav-menu-wrap {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 251, 245, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-menu-wrap.open {
    max-height: 380px;
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.12);
  }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
    gap: 4px;
  }
  .nav-menu li a {
    display: block;
    padding: 14px 18px;
    font-size: 16px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .section-head h2 {
    font-size: 30px;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .hero {
    padding: 50px 0 70px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    padding: 28px 18px;
  }
  .stat-card strong {
    font-size: 30px;
  }
  .features,
  .screenshots,
  .download,
  .faq {
    padding: 60px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .phone-main {
    width: 230px;
  }
  .shot:nth-child(odd),
  .shot:nth-child(even) {
    transform: none;
  }
  .screenshots-track {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .shot {
    scroll-snap-align: center;
  }
  .download-card {
    padding: 50px 22px;
  }
  .download-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-lg {
    justify-content: center;
    padding: 16px 24px;
    font-size: 17px;
  }
  .download-meta {
    gap: 10px 22px;
    flex-direction: column;
  }
  .faq-q {
    padding: 18px 20px;
    font-size: 16px;
  }
  .faq-a p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-download {
    justify-content: center;
  }
  .brand-name {
    font-size: 20px;
  }
  .back-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
