:root {
      --primary-red: #d91c1c;
      --primary-red-hover: #b81414;
      --accent-crimson: #ff3333;
      --warm-peach: #fff5f5;
      --card-border: #f9dcdc;
      --text-main: #1f2329;
      --text-muted: #59616d;
      --text-light: #8f959e;
      --bg-page: #fcf9f9;
      --bg-card: #ffffff;
      --shadow-sm: 0 2px 10px rgba(217, 28, 28, 0.04);
      --shadow-md: 0 8px 24px rgba(217, 28, 28, 0.08);
      --shadow-lg: 0 16px 36px rgba(217, 28, 28, 0.12);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      background-color: var(--bg-page);
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
      color: var(--text-main);
      background-color: var(--bg-page);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    ul, ol {
      list-style: none;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    .section {
      padding: 72px 0;
      position: relative;
    }

    .section-alt {
      background-color: #f7efef;
      border-top: 1px solid var(--card-border);
      border-bottom: 1px solid var(--card-border);
    }

    .section-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 48px auto;
    }

    .section-badge {
      display: inline-block;
      padding: 6px 16px;
      background-color: #ffe6e6;
      color: var(--primary-red);
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: 999px;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
      border: 1px solid #ffd1d1;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.35;
      margin-bottom: 12px;
    }

    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #fae1e1;
      box-shadow: var(--shadow-sm);
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ai-page-logo {
      height: 38px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .brand-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-red);
      letter-spacing: -0.2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .nav-link-item {
      padding: 8px 14px;
      font-size: 0.95rem;
      color: var(--text-main);
      font-weight: 500;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      white-space: nowrap;
    }

    .nav-link-item:hover,
    .nav-link-item.active {
      color: var(--primary-red);
      background-color: var(--warm-peach);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 999px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: var(--transition);
      text-align: center;
    }

    .btn-primary {
      background-color: var(--primary-red);
      color: #ffffff !important;
      box-shadow: 0 4px 14px rgba(217, 28, 28, 0.28);
    }

    .btn-primary:hover {
      background-color: var(--primary-red-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(217, 28, 28, 0.38);
    }

    .btn-outline {
      background-color: #ffffff;
      color: var(--primary-red);
      border-color: #f7a8a8;
    }

    .btn-outline:hover {
      background-color: var(--warm-peach);
      border-color: var(--primary-red);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-main);
      cursor: pointer;
      padding: 4px;
    }

    /* 首屏 Hero（无图片） */
    .hero-section {
      padding: 80px 0 70px;
      background: radial-gradient(circle at 50% 10%, #ffebeb 0%, #fcf9f9 70%);
      text-align: center;
      border-bottom: 1px solid var(--card-border);
      position: relative;
    }

    .hero-badge-row {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      background: #ffffff;
      border: 1px solid #fcc;
      border-radius: 999px;
      font-size: 0.88rem;
      color: var(--primary-red);
      font-weight: 600;
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }

    .hero-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: #111418;
      line-height: 1.25;
      max-width: 900px;
      margin: 0 auto 20px;
      letter-spacing: -0.5px;
    }

    .hero-title span {
      color: var(--primary-red);
      position: relative;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 760px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .btn-hero-primary {
      padding: 14px 34px;
      font-size: 1.1rem;
      font-weight: 700;
    }

    .hero-metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1040px;
      margin: 0 auto;
    }

    .metric-card {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 22px 18px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      text-align: center;
    }

    .metric-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: #f7a8a8;
    }

    .metric-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-red);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .metric-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* 关于我们 / 平台介绍 */
    .about-box {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }

    .about-intro-text {
      font-size: 1.05rem;
      color: var(--text-main);
      line-height: 1.8;
      margin-bottom: 30px;
      text-align: justify;
    }

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

    .pillar-card {
      background: var(--warm-peach);
      border: 1px solid #fbd0d0;
      border-radius: var(--radius-md);
      padding: 24px;
    }

    .pillar-icon {
      width: 44px;
      height: 44px;
      background: #ffffff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 14px;
      box-shadow: var(--shadow-sm);
    }

    .pillar-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .pillar-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 模型矩阵徽章云 */
    .model-tags-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .model-tag {
      background: #ffffff;
      border: 1px solid #f4c2c2;
      color: #9e1414;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.86rem;
      font-weight: 600;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    }

    /* AIGC 服务能力 / 场景卡片 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: #fca5a5;
    }

    .service-tag {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary-red);
      background: #ffe8e8;
      padding: 3px 10px;
      border-radius: 4px;
      display: inline-block;
      align-self: flex-start;
      margin-bottom: 12px;
    }

    .service-title {
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .service-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
      flex-grow: 1;
      margin-bottom: 16px;
    }

    .service-features {
      border-top: 1px dashed #f1cece;
      padding-top: 12px;
      font-size: 0.85rem;
      color: var(--primary-red);
      font-weight: 600;
    }

    /* 一站式工作流与制作流程 */
    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    .workflow-card {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 26px 20px;
      text-align: center;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .step-index {
      width: 36px;
      height: 36px;
      background: var(--primary-red);
      color: #ffffff;
      border-radius: 50%;
      font-weight: 800;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px auto;
    }

    .workflow-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .workflow-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 行业方案展示 */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .solution-item {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
    }

    .solution-item h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-red);
      margin-bottom: 10px;
    }

    .solution-item p {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 案例中心图文展示 */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .gallery-card {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .gallery-img-wrap {
      width: 100%;
      aspect-ratio: 16/10;
      background: #f8dede;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-img-wrap.square-wrap {
      aspect-ratio: 1/1;
    }

    .gallery-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gallery-info {
      padding: 20px;
    }

    .gallery-title {
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .gallery-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* 宣传图单独展示区 */
    .banner-highlight-box {
      margin-top: 36px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-md);
      background: #fff;
    }

    .banner-highlight-box img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 对比评测板块（核心强化） */
    .evaluation-overview {
      background: #ffffff;
      border: 2px solid #fca5a5;
      border-radius: var(--radius-lg);
      padding: 32px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .eval-score-badge {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .eval-stars {
      font-size: 1.8rem;
      color: #ff3838;
      letter-spacing: 2px;
    }

    .eval-number {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--primary-red);
      line-height: 1;
    }

    .eval-scale {
      font-size: 1rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .eval-summary-text {
      flex: 1;
      min-width: 280px;
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.94rem;
    }

    .compare-table th,
    .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #fae8e8;
    }

    .compare-table th {
      background: #fff0f0;
      color: var(--text-main);
      font-weight: 700;
    }

    .compare-table tr:hover {
      background-color: #fff9f9;
    }

    .highlight-cell {
      background: #fff5f5;
      color: var(--primary-red);
      font-weight: 700;
    }

    /* Token 比价卡片组 */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .token-card {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }

    .token-card.featured {
      border: 2px solid var(--primary-red);
      position: relative;
      box-shadow: var(--shadow-md);
    }

    .token-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-red);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 999px;
    }

    .token-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .token-price {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--primary-red);
      margin: 16px 0;
    }

    .token-price small {
      font-size: 0.85rem;
      color: var(--text-light);
      font-weight: normal;
    }

    .token-list {
      text-align: left;
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .token-list li {
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* 用户评论卡片 6 条 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .review-card {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #ffd6d6;
      color: var(--primary-red);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .review-user {
      font-weight: 700;
      font-size: 1rem;
      color: var(--text-main);
    }

    .review-role {
      font-size: 0.82rem;
      color: var(--text-light);
    }

    .review-content {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
      flex-grow: 1;
    }

    .review-stars {
      color: #ff3b30;
      font-size: 0.95rem;
      margin-top: 14px;
    }

    /* FAQ 折叠面板 */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .faq-question {
      padding: 18px 22px;
      font-weight: 700;
      font-size: 1.02rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      color: var(--text-main);
    }

    .faq-question:hover {
      color: var(--primary-red);
      background-color: var(--warm-peach);
    }

    .faq-icon {
      font-size: 1.2rem;
      color: var(--primary-red);
      transition: transform 0.28s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 22px 18px;
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px dashed #fbd4d4;
      padding-top: 14px;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* 需求匹配表单 */
    .form-container {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      padding: 40px;
      max-width: 800px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .form-label {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-main);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #f1c5c5;
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      background: #fffdfd;
      color: var(--text-main);
      outline: none;
      transition: var(--transition);
      font-family: inherit;
    }

    .form-control:focus {
      border-color: var(--primary-red);
      box-shadow: 0 0 0 3px rgba(217, 28, 28, 0.15);
      background: #ffffff;
    }

    textarea.form-control {
      min-height: 110px;
      resize: vertical;
    }

    /* 资讯与百科文章 */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .article-box {
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
    }

    .article-link-list {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .article-link-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: var(--warm-peach);
      border-radius: var(--radius-sm);
      font-size: 0.92rem;
      color: var(--text-main);
      transition: var(--transition);
    }

    .article-link-item:hover {
      background: #fedede;
      color: var(--primary-red);
      transform: translateX(4px);
    }

    /* 联系与加盟代理 */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 32px;
      background: #ffffff;
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .contact-info-item strong {
      color: var(--text-main);
      min-width: 80px;
    }

    .qr-card {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      background: var(--warm-peach);
      border-radius: var(--radius-md);
      border: 1px solid #fcc;
    }

    .qr-card img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      background: #fff;
      padding: 4px;
      border-radius: 8px;
    }

    /* 友情链接与页脚 */
    .site-footer {
      background-color: #f7eded;
      border-top: 1px solid #f5cfcf;
      padding: 50px 0 30px;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-links-row {
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid #ecd0d0;
    }

    .footer-links-title {
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    .friendly-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .friendly-links a {
      color: var(--text-muted);
      background: #ffffff;
      padding: 4px 12px;
      border-radius: 4px;
      border: 1px solid #fad2d2;
      font-size: 0.85rem;
      transition: var(--transition);
    }

    .friendly-links a:hover {
      color: var(--primary-red);
      border-color: var(--primary-red);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* 浮动客服入口与返回顶部 */
    .float-widget-container {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #fca5a5;
      color: var(--primary-red);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .float-btn:hover {
      background: var(--primary-red);
      color: #ffffff;
      transform: scale(1.08);
    }

    /* 响应式调整 */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-pillars,
      .services-grid,
      .gallery-grid,
      .token-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 16px 20px;
        border-bottom: 1px solid var(--card-border);
        box-shadow: var(--shadow-md);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-link-item {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #fbf0f0;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-title {
        font-size: 1.8rem;
      }
      .about-pillars,
      .services-grid,
      .solutions-grid,
      .gallery-grid,
      .token-grid,
      .reviews-grid,
      .articles-grid {
        grid-template-columns: 1fr;
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-group.full-width {
        grid-column: span 1;
      }
      .evaluation-overview {
        flex-direction: column;
        align-items: flex-start;
      }
    }