/* ==========================================================================
   WPS Office 安全下载站 - 经典商务蓝白主题
   ========================================================================== */

:root {
  --primary: #1a56db;
  --primary-dark: #123f9e;
  --primary-light: #e8f0fe;
  --accent: #0e9f6e;
  --accent-light: #e6f7f1;
  --bg: #f8fafc;
  --bg-alt: #eef2f7;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 64px 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.35;
}

h1 {
  font-size: 2.4rem;
}

h2.section-title {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 44px;
  font-size: 1.02rem;
}

p {
  margin: 0 0 14px;
}

.tag-eyebrow {
  display: inline-block;
  color: var(--primary);
  background: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   顶部导航
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(6px);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--primary-dark);
  white-space: nowrap;
}

.logo svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ==========================================================================
   按钮
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(26, 86, 219, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.36);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(14, 159, 110, 0.28);
}

.btn-accent:hover {
  background: #0b8059;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  background: var(--primary-light);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.12rem;
}

.btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: linear-gradient(160deg, #eef4ff 0%, #f8fafc 55%, #f8fafc 100%);
  padding: 76px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.92rem;
}

.hero-meta strong {
  color: var(--primary-dark);
  font-size: 1.05rem;
  display: block;
}

.hero-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.hero-visual-header {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-visual-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}

.hero-visual-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--bg-alt);
  margin-bottom: 10px;
}

.hero-visual-row svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-visual-row.accent svg {
  color: var(--accent);
}

.hero-visual-row strong {
  display: block;
  font-size: 0.94rem;
}

.hero-visual-row span.desc {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ==========================================================================
   网格与卡片
   ========================================================================== */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: #c7d7fb;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-box.accent {
  background: var(--accent-light);
  color: var(--accent);
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-light);
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ==========================================================================
   多平台下载卡片
   ========================================================================== */

.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.platform-card .icon-box {
  margin: 0 auto 18px;
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.platform-card .icon-box svg {
  width: 30px;
  height: 30px;
}

.platform-card h3 {
  margin-bottom: 6px;
}

.platform-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.platform-card p.desc {
  color: var(--text-light);
  font-size: 0.92rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.platform-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
}

/* ==========================================================================
   功能深讲（图文交替）
   ========================================================================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row.reverse .feature-visual {
  order: 2;
}

.feature-visual {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.feature-visual .fv-line {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.feature-visual .fv-line svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-visual .fv-line span {
  font-size: 0.88rem;
  color: var(--text);
}

.feature-text .num {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: block;
}

.feature-text h3 {
  font-size: 1.4rem;
}

.feature-text p {
  color: var(--text-light);
}

/* ==========================================================================
   数据统计
   ========================================================================== */

.stats-section {
  background: var(--primary-dark);
  color: var(--white);
}

.stats-section .section-title,
.stats-section .section-desc {
  color: var(--white);
}

.stats-section .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}

.stat-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================================
   用户评价
   ========================================================================== */

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}

.testimonial-quote {
  color: var(--primary);
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
}

.testimonial-card p.quote-text {
  color: var(--text);
  font-size: 0.96rem;
  margin-bottom: 18px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-person strong {
  display: block;
  font-size: 0.94rem;
}

.testimonial-person span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   对比表格 / 系统要求表格
   ========================================================================== */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

table.compare-table,
table.req-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

table.compare-table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 20px;
  color: var(--text-light);
  font-size: 0.86rem;
}

table.compare-table th,
table.req-table th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  white-space: nowrap;
}

table.compare-table td,
table.req-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

table.compare-table tr:nth-child(even) td,
table.req-table tr:nth-child(even) td {
  background: var(--bg-alt);
}

table.compare-table tr:last-child td,
table.req-table tr:last-child td {
  border-bottom: none;
}

.check-yes {
  color: var(--accent);
  font-weight: 700;
}

.check-no {
  color: var(--text-light);
}

/* ==========================================================================
   FAQ 手风琴
   ========================================================================== */

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary .faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}

details.faq-item summary:hover {
  background: var(--primary-light);
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-light);
  font-size: 0.96rem;
}

/* ==========================================================================
   CTA 横幅
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--primary) 0%, #1543ad 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.cta-banner .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   下载中心页面专用
   ========================================================================== */

.download-hero {
  background: linear-gradient(160deg, #eef4ff 0%, #f8fafc 60%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.download-hero .version-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.download-hero .version-tag strong {
  color: var(--primary-dark);
}

.download-hero h1 {
  max-width: 760px;
  margin: 0 auto 18px;
}

.download-hero-lead {
  max-width: 640px;
  margin: 0 auto 30px;
  color: var(--text-light);
}

.main-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 46px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(26, 86, 219, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.main-download-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.main-download-btn svg {
  width: 24px;
  height: 24px;
}

.download-hero-sub {
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--text-light);
}

/* 分步安装指南 */

.steps-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--border);
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.step-item p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* 版本更新时间轴 */

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 34px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item .tl-version {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.timeline-item .tl-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-light);
  font-size: 0.94rem;
  margin-bottom: 0;
}

/* ==========================================================================
   zh-cn 软文页面
   ========================================================================== */

.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow);
}

.article-wrap h1 {
  font-size: 2.1rem;
}

.article-wrap h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-top: 40px;
  padding-top: 6px;
  border-top: 3px solid var(--primary-light);
}

.article-wrap h2:first-of-type {
  margin-top: 0;
  border-top: none;
}

.article-wrap h3 {
  font-size: 1.12rem;
  margin-top: 22px;
}

.article-wrap p {
  color: var(--text);
  font-size: 1rem;
}

.article-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.86rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.inline-cta {
  background: var(--accent-light);
  border: 1px solid #bdeed9;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.inline-cta p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.article-cta-final {
  text-align: center;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.article-cta-final p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ==========================================================================
   页脚
   ========================================================================== */

.site-footer {
  background: #14203b;
  color: rgba(255, 255, 255, 0.72);
  padding: 54px 0 26px;
  margin-top: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.footer-brand svg {
  width: 26px;
  height: 26px;
  color: #7ea6ff;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-safety {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(14, 159, 110, 0.14);
  border: 1px solid rgba(14, 159, 110, 0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.86rem;
  color: #b6f2da;
  margin-top: 30px;
}

.footer-safety svg {
  width: 20px;
  height: 20px;
  color: #34d399;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.8;
}

/* ==========================================================================
   动画
   ========================================================================== */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   响应式
   ========================================================================== */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .grid-6,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-visual {
    order: 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-wrap {
    padding: 34px 26px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
    gap: 10px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }

  h1 {
    font-size: 1.9rem;
  }

  .grid-4,
  .grid-3,
  .grid-6,
  .grid-2,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 38px 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .step-item {
    grid-template-columns: 40px 1fr;
  }
}
