﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #faf9f7;
  color: #1a1a1a;
  line-height: 1.7;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
/* 头部导航 */
.nav {
  background: #fff;
  border-bottom: 1px solid #e8e5e0;
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #900;
  text-decoration: none;
}
.logo img {
  height: 40px;
  width: auto;
}
.nav-links a {
  color: #555;
  text-decoration: none;
  margin-left: 28px;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #900;
}
/* 主体 */
.hero {
  text-align: center;
  padding: 60px 0 40px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #900;
  letter-spacing: -0.5px;
}
.hero h1 span {
  background: #900;
  color: #fff;
  padding: 2px 14px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  margin-left: 12px;
}
.hero p.sub {
  font-size: 20px;
  color: #444;
  margin-top: 12px;
  font-weight: 400;
}
.hero p.desc {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 16px auto 0;
}
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #900;
  color: #fff;
}
.btn-primary:hover {
  background: #700;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 0, 0, 0.25);
}
.btn-secondary {
  background: #fff;
  color: #900;
  border: 2px solid #900;
}
.btn-secondary:hover {
  background: #fdf0f0;
  transform: translateY(-2px);
}
.hero-image {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  background: #f0ede8; /* 图片加载前的背景色 */
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* 通用标题 */
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 60px 0 12px;
}
.section-sub {
  text-align: center;
  color: #777;
  margin-bottom: 36px;
  font-size: 17px;
}
/* 功能卡片 */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0ede8;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.card h3 {
  font-size: 20px;
  color: #900;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card h3 .icon {
  font-size: 26px;
}
.card p {
  color: #555;
  font-size: 15px;
}
/* 步骤 */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin: 10px 0 40px;
}
.step {
  background: #fff;
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid #f0ede8;
  text-align: center;
}
.step .num {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #900;
  border-radius: 50%;
  margin-bottom: 14px;
}
.step h4 {
  font-size: 19px;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.step p {
  color: #666;
  font-size: 15px;
}
/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 14px;
  padding: 20px 26px;
  margin-bottom: 14px;
}
.faq-item strong {
  color: #1a1a1a;
  font-size: 16px;
}
.faq-item p {
  color: #555;
  margin-top: 4px;
  font-size: 15px;
}
/* 底部 */
.footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 40px 20px 32px;
  margin-top: 60px;
  border-top: 4px solid #900;
}
.footer a {
  color: #e8baba;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer .copy {
  font-size: 14px;
  margin-top: 8px;
}
.footer .tip {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
}
/* 响应式 */
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .hero h1 span { font-size: 14px; margin-left: 6px; padding: 0 10px; }
  .nav-links a { margin-left: 16px; font-size: 14px; }
  .btn { padding: 12px 28px; font-size: 15px; }
}
/*
Theme Name: 漫蛙2漫画主题
Theme URI: 
Author: 阿叶
Author URI: 
Description:
Version: 0.0.1
*/

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background-color: #f5f7fa;
    color: #333333;
    line-height: 1.6;
}

.mw2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.mw2-navbar {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mw2-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mw2-nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mw2-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}

.mw2-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.mw2-search-box {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    border-radius: 24px;
    padding: 4px;
    border: 1px solid #e8e8e8;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mw2-search-box:focus-within {
    border-color: #87c122;
    box-shadow: 0 0 0 3px rgba(135, 193, 34, 0.2);
}

.mw2-search-box input {
    border: none;
    background: transparent;
    padding: 8px 16px;
    width: 200px;
    outline: none;
    font-size: 14px;
}

.mw2-search-btn {
    background: #87c122;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.mw2-search-btn:hover {
    background: #76a81e;
}

.mw2-nav-links {
    display: flex;
    gap: 32px;
}

.mw2-nav-links a {
    text-decoration: none;
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.mw2-nav-links a:hover,
.mw2-nav-links a.mw2-active {
    color: #87c122;
}

.mw2-nav-links a.mw2-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #87c122;
    border-radius: 1px;
}

.mw2-download-btn {
    background: #87c122;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

.mw2-download-btn:hover {
    background: #76a81e;
}

/* Hero区域 */
.mw2-hero {
    background: linear-gradient(135deg, #f0f7e6 0%, #e8f5d6 100%);
    padding: 60px 0;
}

.mw2-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.mw2-hero-left {
    flex: 1;
}

.mw2-hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #333333;
}

.mw2-hero-desc {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
    max-width: 620px;
}

.mw2-stats {
    display: flex;
    gap: 40px;
}

.mw2-stat-item {
    display: flex;
    flex-direction: column;
}

.mw2-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
}

.mw2-stat-label {
    font-size: 14px;
    color: #999999;
    margin-top: 4px;
}

.mw2-hero-right {
    flex: 0 0 380px;
}

.mw2-download-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mw2-download-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.mw2-download-subtitle {
    color: #999999;
    font-size: 14px;
    margin-bottom: 24px;
}

.mw2-android-btn,
.mw2-ios-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mw2-android-btn {
    background: #87c122;
    color: white;
    margin-bottom: 12px;
}

.mw2-android-btn:hover {
    background: #76a81e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 193, 34, 0.4);
}

.mw2-ios-btn {
    background: #f5f7fa;
    color: #333333;
    border: 1px solid #e8e8e8;
}

.mw2-ios-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.mw2-android-btn.mw2-large,
.mw2-ios-btn.mw2-large {
    padding: 16px 32px;
    font-size: 16px;
}

.mw2-download-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.mw2-download-features span {
    font-size: 13px;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mw2-download-features i {
    color: #87c122;
}

.mw2-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 功能特色 */
.mw2-features {
    padding: 60px 0;
}

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

.mw2-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mw2-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mw2-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.mw2-feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.mw2-feature-card p {
    font-size: 14px;
    color: #999999;
}

/* 产品简介 - 重新设计 */
.mw2-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #87c122 0%, #76a81e 100%);
    position: relative;
    overflow: hidden;
}

.mw2-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mw2-intro .mw2-container {
    position: relative;
    z-index: 1;
}

.mw2-intro-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mw2-intro-left {
    flex: 1;
}

.mw2-intro-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.mw2-intro-left h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mw2-intro-left p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.mw2-intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.mw2-intro-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 15px;
}

.mw2-intro-feature-item i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mw2-intro-right {
    flex: 0 0 360px;
}

.mw2-intro-phone {
    background: white;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mw2-intro-download {
    display: flex;
    gap: 12px;
}

.mw2-intro-download .mw2-android-btn,
.mw2-intro-download .mw2-ios-btn {
    flex: 1;
    justify-content: center;
    margin: 0;
}

.mw2-intro-download .mw2-android-btn-white {
    background: white;
    color: #76a81e;
}

.mw2-intro-download .mw2-ios-btn-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mw2-phone-screen {
    background: #f5f7fa;
    border-radius: 20px;
    padding: 24px;
    min-height: 400px;
}

.mw2-phone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
}

.mw2-phone-header img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.mw2-phone-header h4 {
    font-size: 16px;
    color: #333333;
}

.mw2-phone-manga-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mw2-phone-manga-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.mw2-phone-manga-item img {
    width: 50px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
}

.mw2-phone-manga-info h5 {
    font-size: 14px;
    margin-bottom: 4px;
}

.mw2-phone-manga-info p {
    font-size: 12px;
    color: #999999;
}

/* 线路选择样式 */
.mw2-line-list {
    margin: 20px 0;
}

.mw2-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e0e0e0;
}

.mw2-line-item:last-child {
    border-bottom: none;
}

.mw2-line-name {
    font-size: 15px;
    color: #333333;
}

.mw2-line-status {
    font-size: 13px;
    color: #4caf50;
    font-weight: 500;
}

.mw2-phone-help {
    margin-top: 20px;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 8px;
}

.mw2-phone-help p {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.mw2-phone-footer {
    margin-top: 16px;
    text-align: right;
}

.mw2-phone-footer span {
    font-size: 12px;
    color: #999;
}

/* 排行榜 */
.mw2-ranking {
    padding: 60px 0;
}

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

.mw2-ranking-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mw2-ranking-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mw2-ranking-card h3 i {
    color: #87c122;
}

.mw2-ranking-list {
    list-style: none;
}

.mw2-ranking-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin: 0 -12px;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.mw2-ranking-list li:last-child {
    border-bottom: none;
}

.mw2-ranking-list li:hover {
    background-color: #f5f7fa;
}

.mw2-rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #999999;
}

.mw2-rank.mw2-num-1 {
    background: #ffd700;
    color: #333;
}

.mw2-rank.mw2-num-2 {
    background: #c0c0c0;
    color: #333;
}

.mw2-rank.mw2-num-3 {
    background: #cd7f32;
    color: white;
}

.mw2-rank-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.mw2-rank-info p {
    font-size: 12px;
    color: #999999;
}

/* 用户评价 */
.mw2-reviews {
    padding: 60px 0;
    background: #ffffff;
}

.mw2-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mw2-review-card {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mw2-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.mw2-time {
    color: #999;
    font-size: 12px;
}

.mw2-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mw2-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.mw2-reviewer h4 {
    font-size: 15px;
}

.mw2-review-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.mw2-rating {
    color: #ffc107;
    font-size: 14px;
}


/* 页脚 */
.mw2-footer {
    background: #2d3436;
    color: white;
    padding: 60px 0 24px;
}

.mw2-footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.mw2-footer-left {
    flex: 1;
    max-width: 360px;
}

.mw2-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mw2-footer-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.mw2-footer-brand span {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.mw2-footer-desc {
    color: #b2bec3;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mw2-footer-contact span {
    color: #b2bec3;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mw2-footer-contact i {
    color: #87c122;
}

.mw2-footer-right {
    flex: none;
}

.mw2-footer-links-group {
    display: flex;
    gap: 60px;
}

.mw2-footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.mw2-footer-links a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.mw2-footer-links a:hover {
    color: #87c122;
}

.mw2-footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #636e72;
}

.mw2-footer-bottom p {
    color: #636e72;
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .mw2-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .mw2-hero-left {
        order: 2;
    }

    .mw2-hero-right {
        order: 1;
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .mw2-stats {
        justify-content: center;
    }

    .mw2-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .mw2-intro-content {
        flex-direction: column;
        text-align: center;
    }

    .mw2-intro-right {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .mw2-intro-features {
        justify-content: center;
    }

    .mw2-ranking-grid {
        grid-template-columns: 1fr;
    }

    .mw2-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mw2-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mw2-footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .mw2-footer-left {
        max-width: none;
        text-align: center;
    }

    .mw2-footer-brand {
        justify-content: center;
    }

    .mw2-footer-contact {
        justify-content: center;
    }

    .mw2-footer-links-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mw2-nav-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .mw2-nav-left {
        flex: 1;
        min-width: 0;
    }

    .mw2-nav-links {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 16px;
        padding-top: 8px;
        border-top: 1px solid #e8e8e8;
    }

    .mw2-nav-links a {
        font-size: 13px;
    }

    .mw2-search-box {
        display: none;
    }

    .mw2-nav-right {
        order: 2;
    }

    .mw2-hero-left {
        display: none;
    }

    .mw2-hero-right {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .mw2-section-title {
        text-align: center;
    }

    .mw2-android-btn.mw2-large,
    .mw2-ios-btn.mw2-large {
        width: 100%;
    }

    .mw2-intro-left h2 {
        font-size: 28px;
    }

    .mw2-reviews-grid {
        grid-template-columns: 1fr;
    }

    .mw2-features-grid {
        grid-template-columns: 1fr;
    }


    .mw2-footer-main {
        display: none;
    }

    .mw2-footer-links-group {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}