:root {
      --candy-pink: #ff5e7e;
      --candy-orange: #ff9f43;
      --candy-cyan: #0abde3;
      --candy-mint: #10ac84;
      --candy-purple: #ee5253;
      --candy-violet: #5f27cd;
      --candy-yellow: #feca57;
      --candy-bg: #faf7ff;
      --candy-surface: #ffffff;
      --text-main: #222f3e;
      --text-sub: #576574;
      --text-light: #8395a7;
      --border-color: #f1e9f8;
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-sm: 0 4px 14px rgba(95, 39, 205, 0.06);
      --shadow-md: 0 10px 30px rgba(95, 39, 205, 0.1);
      --shadow-hover: 0 16px 40px rgba(255, 94, 126, 0.18);
      --site-width: 1200px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--candy-bg);
      background-image: 
        radial-gradient(at 10% 15%, rgba(254, 202, 87, 0.12) 0px, transparent 50%),
        radial-gradient(at 90% 25%, rgba(255, 94, 126, 0.1) 0px, transparent 55%),
        radial-gradient(at 50% 75%, rgba(10, 189, 227, 0.08) 0px, transparent 60%);
      background-attachment: fixed;
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    ul, ol {
      list-style: none;
    }
    .site-container {
      width: 100%;
      max-width: var(--site-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(241, 233, 248, 0.8);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }
    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .ai-page-logo {
      height: 38px;
      width: auto;
      display: block;
    }
    .brand-name {
      font-size: 1.35rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-violet));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 0.5px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav-link-item {
      display: inline-block;
      padding: 8px 12px;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-main);
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }
    .nav-link-item:hover,
    .ai-page-home-link:hover {
      color: var(--candy-pink);
      background-color: rgba(255, 94, 126, 0.08);
    }
    .ai-page-home-link {
      display: inline-block;
      padding: 8px 12px;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-main);
      border-radius: var(--radius-sm);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-candy {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 0.95rem;
      font-weight: 700;
      border-radius: 999px;
      cursor: pointer;
      border: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 12px rgba(255, 94, 126, 0.25);
      color: #ffffff;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-orange));
    }
    .btn-candy:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 94, 126, 0.35);
    }
    .btn-candy-alt {
      background: linear-gradient(135deg, var(--candy-cyan), var(--candy-violet));
      box-shadow: 0 4px 12px rgba(10, 189, 227, 0.25);
    }
    .btn-candy-alt:hover {
      box-shadow: 0 8px 20px rgba(10, 189, 227, 0.35);
    }
    .btn-candy-outline {
      background: #ffffff;
      color: var(--text-main);
      border: 2px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .btn-candy-outline:hover {
      border-color: var(--candy-pink);
      color: var(--candy-pink);
    }
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-main);
      padding: 4px;
    }
    .section-spacing {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px auto;
    }
    .section-badge {
      display: inline-block;
      padding: 6px 16px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: var(--candy-pink);
      background: rgba(255, 94, 126, 0.12);
      border-radius: 999px;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.3;
      margin-bottom: 14px;
    }
    .section-desc {
      font-size: 1.05rem;
      color: var(--text-sub);
    }
    .hero-section {
      padding-top: 90px;
      padding-bottom: 90px;
      text-align: center;
      position: relative;
    }
    .hero-pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      background: #ffffff;
      border: 1px solid rgba(255, 94, 126, 0.25);
      box-shadow: var(--shadow-sm);
      border-radius: 999px;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--candy-violet);
      margin-bottom: 24px;
    }
    .hero-pill-badge span {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--candy-mint);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(16, 172, 132, 0.2);
    }
    .hero-h1 {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
      max-width: 960px;
      margin: 0 auto 20px auto;
      letter-spacing: -0.5px;
    }
    .hero-h1 .gradient-text {
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-violet));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: 1.2rem;
      color: var(--text-sub);
      max-width: 780px;
      margin: 0 auto 36px auto;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }
    .hero-tags {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 0 auto;
    }
    .candy-chip {
      padding: 6px 14px;
      font-size: 0.85rem;
      font-weight: 600;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 999px;
      color: var(--text-sub);
      box-shadow: var(--shadow-sm);
      transition: all 0.2s;
    }
    .candy-chip:hover {
      border-color: var(--candy-cyan);
      color: var(--candy-cyan);
      transform: translateY(-2px);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 50px;
    }
    .stat-card {
      background: #ffffff;
      padding: 28px 20px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border-top: 4px solid var(--candy-pink);
      text-align: center;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .stat-card:nth-child(2) { border-top-color: var(--candy-orange); }
    .stat-card:nth-child(3) { border-top-color: var(--candy-cyan); }
    .stat-card:nth-child(4) { border-top-color: var(--candy-mint); }
    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .stat-number {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-sub);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 28px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(255, 94, 126, 0.4);
    }
    .card-top {
      margin-bottom: 18px;
    }
    .card-badge {
      display: inline-block;
      padding: 4px 10px;
      font-size: 0.78rem;
      font-weight: 700;
      border-radius: var(--radius-sm);
      background: rgba(255, 159, 67, 0.15);
      color: var(--candy-orange);
      margin-bottom: 12px;
    }
    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .card-text {
      font-size: 0.93rem;
      color: var(--text-sub);
      line-height: 1.55;
    }
    .card-footer-info {
      padding-top: 14px;
      border-top: 1px solid #f6f3fa;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--candy-violet);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .workflow-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .workflow-step {
      background: #ffffff;
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-orange));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 16px;
    }
    .workflow-step:nth-child(2) .step-num {
      background: linear-gradient(135deg, var(--candy-orange), var(--candy-yellow));
    }
    .workflow-step:nth-child(3) .step-num {
      background: linear-gradient(135deg, var(--candy-cyan), var(--candy-mint));
    }
    .workflow-step:nth-child(4) .step-num {
      background: linear-gradient(135deg, var(--candy-violet), var(--candy-pink));
    }
    .step-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .step-desc {
      font-size: 0.9rem;
      color: var(--text-sub);
    }
    .banner-media-box {
      margin-bottom: 40px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #ffffff;
      box-shadow: var(--shadow-md);
      padding: 16px;
      border: 1px solid var(--border-color);
    }
    .banner-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .banner-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #f8f6fc;
      border: 1px solid var(--border-color);
    }
    .banner-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .banner-card:hover img {
      transform: scale(1.04);
    }
    .media-card-title {
      padding: 12px 14px;
      font-weight: 700;
      font-size: 0.95rem;
      text-align: center;
      background: #ffffff;
    }
    .asset-dual-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
      margin-top: 30px;
    }
    .asset-item-box {
      background: #ffffff;
      padding: 16px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }
    .asset-item-box img {
      width: 100%;
      border-radius: var(--radius-sm);
      display: block;
    }
    .asset-desc {
      margin-top: 10px;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-sub);
      text-align: center;
    }
    .rating-banner {
      background: linear-gradient(135deg, rgba(255, 94, 126, 0.08), rgba(95, 39, 205, 0.08));
      border: 2px dashed rgba(255, 94, 126, 0.3);
      padding: 24px;
      border-radius: var(--radius-md);
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .rating-highlight {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .rating-score {
      font-size: 3rem;
      font-weight: 900;
      color: var(--candy-pink);
      line-height: 1;
    }
    .rating-stars {
      color: #feca57;
      font-size: 1.3rem;
      letter-spacing: 2px;
    }
    .rating-meta-text {
      font-size: 0.95rem;
      color: var(--text-sub);
      max-width: 600px;
    }
    .compare-table-wrapper {
      background: #ffffff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      overflow-x: auto;
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .compare-table th, 
    .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.93rem;
    }
    .compare-table th {
      background-color: #fbf9ff;
      font-weight: 800;
      color: var(--text-main);
    }
    .highlight-col {
      background-color: rgba(255, 94, 126, 0.04);
      font-weight: 700;
      color: var(--candy-violet);
    }
    .badge-check {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--candy-mint);
      font-weight: 700;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 0.95rem;
      color: var(--text-sub);
      line-height: 1.6;
      margin-bottom: 20px;
      font-style: italic;
    }
    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .user-avatar-tag {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #ffffff;
      font-size: 1rem;
    }
    .user-avatar-tag.alt2 {
      background: linear-gradient(135deg, var(--candy-cyan), var(--candy-mint));
    }
    .user-avatar-tag.alt3 {
      background: linear-gradient(135deg, var(--candy-violet), var(--candy-pink));
    }
    .user-name {
      font-weight: 700;
      font-size: 0.98rem;
      color: var(--text-main);
    }
    .user-role {
      font-size: 0.83rem;
      color: var(--text-light);
    }
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }
    .faq-header {
      width: 100%;
      padding: 20px 24px;
      text-align: left;
      background: none;
      border: none;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }
    .faq-header:hover {
      color: var(--candy-pink);
    }
    .faq-toggle-icon {
      font-size: 1.2rem;
      transition: transform 0.25s ease;
      color: var(--candy-pink);
    }
    .faq-item.active .faq-toggle-icon {
      transform: rotate(45deg);
    }
    .faq-content {
      display: none;
      padding: 0 24px 22px 24px;
      color: var(--text-sub);
      font-size: 0.95rem;
      line-height: 1.65;
      border-top: 1px dashed #f6f3fa;
      padding-top: 14px;
    }
    .faq-item.active .faq-content {
      display: block;
    }
    .form-section-box {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-color);
      max-width: 860px;
      margin: 0 auto;
    }
    .app-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .form-group-full {
      grid-column: span 2;
    }
    .form-label {
      display: block;
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .form-input, 
    .form-select, 
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
      background-color: #faf9fd;
      font-size: 0.95rem;
      color: var(--text-main);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-input:focus, 
    .form-select:focus, 
    .form-textarea:focus {
      border-color: var(--candy-pink);
      background-color: #ffffff;
      box-shadow: 0 0 0 4px rgba(255, 94, 126, 0.12);
    }
    .form-textarea {
      height: 120px;
      resize: vertical;
    }
    .form-btn-submit {
      width: 100%;
      padding: 14px;
      font-size: 1.05rem;
      font-weight: 800;
      border-radius: var(--radius-sm);
    }
    .network-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .network-box {
      background: #ffffff;
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .network-icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }
    .network-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 6px;
    }
    .network-desc {
      font-size: 0.88rem;
      color: var(--text-sub);
    }
    .wiki-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .wiki-card {
      background: #ffffff;
      padding: 28px;
      border-radius: var(--radius-md);
      border-left: 5px solid var(--candy-cyan);
      box-shadow: var(--shadow-sm);
    }
    .wiki-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .wiki-content {
      font-size: 0.93rem;
      color: var(--text-sub);
      line-height: 1.6;
    }
    .news-section-box {
      background: #ffffff;
      padding: 30px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .article-links-wrap {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 20px;
    }
    .news-item-link {
      padding: 12px 18px;
      background: #faf8fd;
      border-radius: var(--radius-sm);
      color: var(--text-main);
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid var(--border-color);
    }
    .news-item-link:hover {
      background: #ffffff;
      border-color: var(--candy-pink);
      color: var(--candy-pink);
      transform: translateX(4px);
    }
    .contact-card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 36px;
    }
    .contact-item-card {
      background: #ffffff;
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      text-align: center;
    }
    .contact-item-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .contact-item-val {
      font-size: 0.95rem;
      color: var(--candy-violet);
      font-weight: 600;
      word-break: break-all;
    }
    .partner-banner {
      background: linear-gradient(135deg, #fff0f5, #f5f0ff);
      border: 2px solid rgba(255, 94, 126, 0.2);
      border-radius: var(--radius-lg);
      padding: 40px;
      text-align: center;
    }
    .partner-title {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .partner-text {
      max-width: 700px;
      margin: 0 auto 24px auto;
      font-size: 1rem;
      color: var(--text-sub);
    }
    .partner-perks {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .partner-perk-item {
      background: #ffffff;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--candy-pink);
      box-shadow: var(--shadow-sm);
    }
    .floating-contact-panel {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .floating-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid var(--border-color);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
    }
    .floating-btn:hover {
      border-color: var(--candy-pink);
      color: var(--candy-pink);
      transform: translateY(-3px);
    }
    .floating-qr-pop {
      position: absolute;
      right: 64px;
      bottom: 0;
      background: #ffffff;
      padding: 16px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-hover);
      border: 1px solid var(--border-color);
      width: 170px;
      display: none;
      text-align: center;
    }
    .floating-qr-pop img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-sm);
      margin-bottom: 6px;
    }
    .floating-qr-pop p {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-main);
    }
    .floating-btn-qr:hover .floating-qr-pop {
      display: block;
    }
    .site-footer {
      background-color: #ffffff;
      border-top: 1px solid var(--border-color);
      padding-top: 50px;
      padding-bottom: 30px;
      margin-top: 40px;
      color: var(--text-sub);
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 30px;
      margin-bottom: 40px;
    }
    .footer-brand-text {
      font-size: 0.9rem;
      line-height: 1.6;
      margin-top: 14px;
      color: var(--text-sub);
    }
    .footer-heading {
      font-size: 1rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .footer-nav-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-nav-list a {
      font-size: 0.9rem;
      color: var(--text-sub);
    }
    .footer-nav-list a:hover {
      color: var(--candy-pink);
    }
    .footer-qr-block {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-qr-img {
      width: 110px;
      height: 110px;
      padding: 6px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
    }
    .footer-qr-img img {
      width: 100%;
      height: 100%;
      display: block;
    }
    .footer-friend-links {
      padding-top: 24px;
      padding-bottom: 24px;
      border-top: 1px solid #f6f3fa;
      border-bottom: 1px solid #f6f3fa;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      font-size: 0.88rem;
    }
    .friend-links-title {
      font-weight: 700;
      color: var(--text-main);
    }
    .footer-friend-links a {
      color: var(--text-sub);
      padding: 3px 8px;
      background: #faf8fd;
      border-radius: 4px;
    }
    .footer-friend-links a:hover {
      color: var(--candy-violet);
      background: rgba(95, 39, 205, 0.08);
    }
    .footer-bottom {
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
      color: var(--text-light);
    }
    @media (max-width: 992px) {
      .services-grid,
      .workflow-timeline,
      .stats-grid,
      .network-grid,
      .banner-grid,
      .reviews-grid,
      .contact-card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .asset-dual-grid {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-actions {
        display: none;
      }
      .mobile-menu-toggle {
        display: block;
      }
      .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--border-color);
      }
      .hero-h1 {
        font-size: 2rem;
      }
      .section-title {
        font-size: 1.7rem;
      }
      .services-grid,
      .workflow-timeline,
      .stats-grid,
      .network-grid,
      .banner-grid,
      .reviews-grid,
      .wiki-grid,
      .contact-card-grid {
        grid-template-columns: 1fr;
      }
      .app-form {
        grid-template-columns: 1fr;
      }
      .form-group-full {
        grid-column: span 1;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .rating-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }