/* Storm Blue & Mint Theme */
:root {
  --navy-900: #0c1445;
  --navy-800: #162463;
  --navy-700: #233486;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-navy: 0 20px 25px -5px rgba(12, 20, 69, 0.5), 0 10px 10px -5px rgba(12, 20, 69, 0.3);
  --shadow-cyan: 0 0 20px rgba(6, 182, 212, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: var(--transition);
}

/* Typography */
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-navy { color: var(--navy-900); }
.text-cyan { color: var(--cyan-500); }
.text-amber { color: var(--amber-500); }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-gray {
  background: var(--gray-50);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}

.btn svg {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.btn-cyan {
  background: var(--cyan-500);
  color: var(--white);
}

.btn-cyan:hover {
  background: var(--cyan-400);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--gray-200);
  color: var(--gray-800);
}

.btn-outline:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.btn-outline-w {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-outline-w:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-100);
  height: 72px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.5px;
}

.nav-brand svg {
  width: 36px;
  height: 36px;
  color: var(--cyan-500);
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--gray-600);
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--navy-900);
  background: var(--gray-100);
}

.nav-link.active {
  color: var(--white);
  background: var(--navy-900);
}

.nav-actions {
  display: flex;
  gap: 16px;
}

/* Main Hero */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, rgba(12,20,69,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  color: var(--cyan-300);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .hl {
  color: var(--cyan-500);
}

.hero-title .hl-amber {
  color: var(--amber-500);
}

.hero-desc {
  font-size: 20px;
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray-300);
  font-size: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--cyan-500);
}

/* Hero Visual Mockup */
.hero-visual {
  position: relative;
}

.mockup-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-navy);
}

.mockup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.md-r { background: #ef4444; }
.md-y { background: #eab308; }
.md-g { background: #22c55e; }

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mc-icon.cyan { background: rgba(6, 182, 212, 0.2); color: var(--cyan-400); }
.mc-icon.amber { background: rgba(245, 158, 11, 0.2); color: var(--amber-400); }

.mc-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mc-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.mc-fill {
  height: 100%;
}

.mc-fill.cyan { background: var(--cyan-500); width: 85%; }
.mc-fill.amber { background: var(--amber-500); width: 70%; }

/* Stats Strip */
.stats-strip {
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-val {
  font-size: 40px;
  font-weight: 800;
  color: var(--cyan-400);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-lbl {
  color: var(--gray-300);
  font-size: 15px;
}

/* Section Titles */
.sec-head {
  text-align: center;
  margin-bottom: 64px;
}

.sec-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gray-100);
  color: var(--navy-900);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.sec-tag.cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan-500); }

.sec-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.sec-desc {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feat-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cyan-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.fc-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--gray-50);
}

.fc-icon.cyan { color: var(--cyan-500); background: rgba(6, 182, 212, 0.1); }
.fc-icon.navy { color: var(--navy-900); background: rgba(12, 20, 69, 0.05); }
.fc-icon.amber { color: var(--amber-500); background: rgba(245, 158, 11, 0.1); }

.fc-icon svg {
  width: 28px;
  height: 28px;
}

.fc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.fc-desc {
  color: var(--gray-600);
}

/* Modules Section (Tabs) */
.mod-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
}

.tab-btn.active {
  background: var(--navy-900);
  color: var(--white);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mod-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mod-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.mod-info p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.mod-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ml-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ml-icon {
  width: 24px;
  height: 24px;
  color: var(--cyan-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.ml-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ml-text p {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 0;
}

.mod-visual {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.mod-v-panel {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.mv-line {
  height: 12px;
  background: var(--gray-200);
  border-radius: 6px;
  margin-bottom: 16px;
}
.mv-line.w-80 { width: 80%; }
.mv-line.w-60 { width: 60%; }
.mv-line.w-90 { width: 90%; }
.mv-line.cyan { background: var(--cyan-500); }
.mv-line.navy { background: var(--navy-900); }

/* Platform Grid */
.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.plat-card:hover {
  border-color: var(--cyan-500);
  box-shadow: var(--shadow-lg);
}

.plat-card.featured {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-800);
  transform: scale(1.05);
}

.plat-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: var(--shadow-navy);
}

.pc-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.plat-card.featured .pc-icon {
  color: var(--cyan-400);
}

.pc-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pc-ver {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.plat-card.featured .pc-ver {
  color: var(--gray-300);
}

/* Reviews */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rev-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.rc-stars {
  color: var(--amber-500);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.rc-stars svg { width: 16px; height: 16px; }

.rc-text {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
}

.av-c { background: var(--cyan-500); }
.av-n { background: var(--navy-900); }
.av-a { background: var(--amber-500); }

.rc-info h5 {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 16px;
}

.rc-info span {
  font-size: 13px;
  color: var(--gray-600);
}

/* Comparison Table */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cmp-table th, .cmp-table td {
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.cmp-table th:first-child, .cmp-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy-900);
}

.cmp-table th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--navy-900);
}

.cmp-hl {
  background: rgba(6, 182, 212, 0.05);
  border-left: 2px solid var(--cyan-500);
  border-right: 2px solid var(--cyan-500);
}

th.cmp-hl {
  border-top: 2px solid var(--cyan-500);
}

td.cmp-hl:last-child {
  border-bottom: 2px solid var(--cyan-500);
}

.c-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

.c-yes { color: var(--cyan-500); }
.c-no { color: var(--gray-300); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-900);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--gray-600);
  transition: transform 0.3s;
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  color: var(--gray-600);
}

.faq-a-inner {
  padding-bottom: 24px;
}

.faq-item.open .faq-q {
  color: var(--cyan-500);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--cyan-500);
}

.faq-item.open .faq-a {
  max-height: 500px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--cyan-500) 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-navy);
}

.cta-banner h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 48px 0;
  text-align: center;
}

.f-security {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 24px;
}

.f-security svg {
  width: 20px;
  height: 20px;
}

.f-note {
  color: var(--gray-600);
  font-size: 14px;
}

/* Page Specific: Download */
.dl-hero {
  padding: 140px 0 60px;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

.dl-main-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  color: var(--gray-800);
  max-width: 800px;
  margin: -40px auto 60px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.dl-main-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
}

.dl-main-icon {
  width: 80px;
  height: 80px;
  color: var(--cyan-500);
}

.dl-main-info {
  text-align: left;
}

.dl-main-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.dl-main-meta {
  color: var(--gray-600);
  font-size: 15px;
}

.dl-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.dl-spec {
  background: var(--gray-50);
  padding: 16px;
  border-radius: 12px;
}

.dl-spec-lbl {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.dl-spec-val {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
}

/* Guide Steps */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.g-col {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-200);
}

.g-col h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.g-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.g-step {
  display: flex;
  gap: 16px;
}

.g-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.g-step-num.navy { background: var(--navy-900); }
.g-step-num.cyan { background: var(--cyan-500); }

.g-step-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.g-step-info p {
  color: var(--gray-600);
  font-size: 15px;
}

/* Page Specific: Article (zh-cn) */
.article-hero {
  padding: 140px 0 60px;
  background: var(--gray-50);
  text-align: center;
}

.kw-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.kw-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--gray-600);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 60px 0;
}

.article-main {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-800);
}

.article-main h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.article-main h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-800);
  margin: 32px 0 16px;
}

.article-main p {
  margin-bottom: 24px;
}

.article-main ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-main li {
  margin-bottom: 12px;
  position: relative;
}

.article-main li::before {
  content: '•';
  color: var(--cyan-500);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  position: sticky;
  top: 96px;
}

.sb-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.sb-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner, .mod-content, .article-layout {
    grid-template-columns: 1fr;
  }
  .feat-grid, .rev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plat-grid, .stats-grid, .dl-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .feat-grid, .rev-grid, .plat-grid, .stats-grid, .dl-specs {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 40px; }
  .dl-main-card { padding: 32px 24px; }
  .dl-main-top { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; }
}
