:root {
      --bg-base: #faf8f5;
      --bg-card: #ffffff;
      --text-main: #1e242c;
      --text-muted: #576375;
      --text-sub: #7b889b;
      --primary: #2d5cf6;
      --accent-coral: #ff5e57;
      --accent-yellow: #ffc048;
      --accent-teal: #05c46b;
      --accent-purple: #8854d0;
      --border-ink: #1e242c;
      --border-subtle: #e2e8f0;
      --shadow-doodle: 4px 4px 0px #1e242c;
      --shadow-hover: 6px 6px 0px #1e242c;
      --radius-badge: 30px;
      --radius-card: 16px;
    }
    * {
      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(--bg-base);
      background-image: 
        radial-gradient(#e5ded1 1px, transparent 1px),
        radial-gradient(#ffdfdf 1px, transparent 1px);
      background-size: 32px 32px;
      background-position: 0 0, 16px 16px;
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    /* 顶部导航 */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--border-ink);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }
    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .ai-page-logo {
      height: 42px;
      width: auto;
      display: block;
    }
    .brand-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      gap: 0;
      align-items: center;
      list-style: none;
    }
    .nav-links li a {
      color: var(--text-main);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 8px 12px;
      border-radius: 8px;
      transition: all 0.2s ease;
    }
    .nav-links li a:hover {
      background: #f1f5f9;
      color: var(--primary);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-doodle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-weight: 700;
      font-size: 0.95rem;
      color: #1e242c;
      background: var(--accent-yellow);
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-badge);
      box-shadow: 3px 3px 0px var(--border-ink);
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    }
    .btn-doodle:hover {
      transform: translate(-2px, -2px);
      box-shadow: 5px 5px 0px var(--border-ink);
      background: #ffd32a;
    }
    .btn-doodle:active {
      transform: translate(1px, 1px);
      box-shadow: 2px 2px 0px var(--border-ink);
    }
    .btn-doodle.coral {
      background: var(--accent-coral);
      color: #ffffff;
    }
    .btn-doodle.coral:hover {
      background: #ff3838;
    }
    .btn-doodle.primary {
      background: var(--primary);
      color: #ffffff;
    }
    .btn-doodle.primary:hover {
      background: #1e4bd8;
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: 2px solid var(--border-ink);
      padding: 6px 10px;
      border-radius: 8px;
      font-size: 1.25rem;
      cursor: pointer;
    }
    /* 区块通用结构 */
    section {
      padding: 72px 0;
      position: relative;
    }
    .section-head {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 52px;
    }
    .doodle-tag {
      display: inline-block;
      padding: 4px 14px;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      background: #e0f2fe;
      color: #0369a1;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-badge);
      box-shadow: 2px 2px 0px var(--border-ink);
      margin-bottom: 14px;
    }
    .section-head h2 {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .section-head p {
      font-size: 1.05rem;
      color: var(--text-muted);
    }
    /* 首屏视觉 (严禁出现图片) */
    .hero-section {
      padding: 80px 0 60px;
      overflow: hidden;
      position: relative;
    }
    .hero-wrap {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }
    .hero-badge-row {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .hero-badge {
      background: #fff;
      border: 2px solid var(--border-ink);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.88rem;
      font-weight: 700;
      box-shadow: 2px 2px 0px var(--border-ink);
    }
    .hero-badge.pink { background: #ffeaa7; }
    .hero-badge.green { background: #c7ecee; }
    .hero-badge.purple { background: #e8d7ff; }
    h1.hero-h1 {
      font-size: 2.75rem;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }
    .hero-h1 span.brush-highlight {
      position: relative;
      display: inline-block;
      z-index: 1;
    }
    .hero-h1 span.brush-highlight::before {
      content: "";
      position: absolute;
      left: -4px;
      right: -4px;
      bottom: 4px;
      height: 35%;
      background: #ffdd59;
      z-index: -1;
      border-radius: 6px;
      transform: rotate(-1deg);
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 760px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 20px;
    }
    .metric-card {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 20px 14px;
      box-shadow: var(--shadow-doodle);
      text-align: center;
      transition: transform 0.2s ease;
    }
    .metric-card:hover {
      transform: translateY(-4px);
    }
    .metric-value {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .metric-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
    }
    /* 平台支持胶囊墙 */
    .brand-marquee-box {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 20px;
      box-shadow: var(--shadow-doodle);
      margin-top: 36px;
    }
    .model-pills-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .model-pill {
      background: #f8fafc;
      border: 1.5px solid var(--border-ink);
      border-radius: 12px;
      padding: 4px 10px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-main);
    }
    /* 平台介绍卡片 */
    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .about-item {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 28px;
      box-shadow: var(--shadow-doodle);
      position: relative;
    }
    .about-icon-doodle {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      border: 2px solid var(--border-ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.25rem;
      margin-bottom: 18px;
      background: #fffa65;
    }
    .about-item h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .about-item p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    /* 服务能力卡片 */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .service-card {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 24px;
      box-shadow: var(--shadow-doodle);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .service-card:hover {
      transform: translate(-3px, -3px);
      box-shadow: var(--shadow-hover);
    }
    .service-card-top {
      margin-bottom: 16px;
    }
    .service-tag {
      display: inline-block;
      padding: 3px 10px;
      font-size: 0.75rem;
      font-weight: 800;
      border: 1.5px solid var(--border-ink);
      border-radius: 8px;
      margin-bottom: 10px;
      background: #dff9fb;
    }
    .service-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--text-main);
    }
    .service-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
    }
    .service-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      margin-top: 14px;
    }
    /* 媒体与案例展示 */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 30px;
    }
    .media-card {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-doodle);
    }
    .media-img-holder {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #f1f5f9;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 2px solid var(--border-ink);
    }
    .media-img-holder.square {
      aspect-ratio: 1 / 1;
      max-height: 380px;
    }
    .media-img-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .media-desc {
      padding: 20px;
    }
    .media-desc h3 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .media-desc p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .banner-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    .banner-item {
      border: 2px solid var(--border-ink);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 3px 3px 0px var(--border-ink);
      background: #fff;
    }
    .banner-item img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }
    /* 标准流程时间线 */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }
    .step-box {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 20px 16px;
      box-shadow: var(--shadow-doodle);
      text-align: center;
      position: relative;
    }
    .step-index {
      width: 36px;
      height: 36px;
      background: #ffd32a;
      border: 2px solid var(--border-ink);
      border-radius: 50%;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
    }
    .step-box h4 {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .step-box p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    /* 对比评测表格与卡片 */
    .review-score-banner {
      background: #fff9e6;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 24px;
      box-shadow: var(--shadow-doodle);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 32px;
    }
    .score-left h3 {
      font-size: 1.4rem;
      font-weight: 900;
      margin-bottom: 4px;
    }
    .score-left p {
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    .score-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .rating-badge {
      background: #ff5e57;
      color: #fff;
      font-weight: 900;
      font-size: 1.6rem;
      padding: 8px 18px;
      border: 2px solid var(--border-ink);
      border-radius: 12px;
      box-shadow: 2px 2px 0px var(--border-ink);
    }
    .rating-star-text {
      font-size: 1rem;
      font-weight: 800;
      color: var(--text-main);
    }
    .table-container {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      overflow-x: auto;
      box-shadow: var(--shadow-doodle);
    }
    .custom-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 680px;
    }
    .custom-table th, .custom-table td {
      padding: 16px 20px;
      border-bottom: 1.5px solid var(--border-subtle);
      font-size: 0.95rem;
    }
    .custom-table th {
      background: #f8fafc;
      font-weight: 800;
      color: var(--text-main);
      border-bottom: 2px solid var(--border-ink);
    }
    .custom-table tr:hover td {
      background: #fafafa;
    }
    .highlight-cell {
      background: #f0fdf4;
      font-weight: 800;
      color: #166534;
    }
    /* Token 比价与代理体系 */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 40px;
    }
    .token-card {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 24px;
      box-shadow: var(--shadow-doodle);
    }
    .token-price {
      font-size: 2rem;
      font-weight: 900;
      color: var(--accent-coral);
      margin: 12px 0 6px;
    }
    .token-features {
      list-style: none;
      margin: 16px 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .token-features li {
      padding: 6px 0;
      border-bottom: 1px dashed #e2e8f0;
    }
    .agency-box {
      background: #fdf2e9;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 32px;
      box-shadow: var(--shadow-doodle);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }
    .agency-content {
      max-width: 720px;
    }
    .agency-content h3 {
      font-size: 1.4rem;
      font-weight: 900;
      margin-bottom: 10px;
    }
    .agency-content p {
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    /* 用户真实评价 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 22px;
      box-shadow: var(--shadow-doodle);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 0.92rem;
      color: var(--text-main);
      line-height: 1.6;
      margin-bottom: 16px;
      font-style: italic;
    }
    .reviewer-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 12px;
    }
    .reviewer-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #ffd32a;
      border: 1.5px solid var(--border-ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.9rem;
    }
    .reviewer-info h4 {
      font-size: 0.95rem;
      font-weight: 800;
    }
    .reviewer-info span {
      font-size: 0.8rem;
      color: var(--text-sub);
    }
    /* FAQ 折叠面板 */
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: 12px;
      box-shadow: 3px 3px 0px var(--border-ink);
      overflow: hidden;
      transition: all 0.2s ease;
    }
    .faq-question {
      padding: 18px 20px;
      font-weight: 800;
      font-size: 1.05rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .faq-question::after {
      content: "+";
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--primary);
      transition: transform 0.2s ease;
    }
    .faq-item.active .faq-question::after {
      content: "-";
    }
    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      border-top: 1px dashed #e2e8f0;
      padding-top: 14px;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    /* 表单与联系客服 */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: start;
    }
    .form-box {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 32px;
      box-shadow: var(--shadow-doodle);
    }
    .form-box h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .form-box p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 24px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 6px;
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 2px solid var(--border-ink);
      border-radius: 10px;
      font-size: 0.95rem;
      background: #fafafa;
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease;
      font-family: inherit;
    }
    .form-control:focus {
      border-color: var(--primary);
      background: #fff;
    }
    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }
    .info-card-box {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 32px;
      box-shadow: var(--shadow-doodle);
    }
    .info-card-box h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 18px;
    }
    .contact-item-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }
    .qr-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #f8fafc;
      border: 2px dashed var(--border-ink);
      border-radius: 12px;
      padding: 16px;
      margin-top: 20px;
    }
    .qr-container img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border: 1.5px solid var(--border-ink);
      border-radius: 8px;
      margin-bottom: 10px;
    }
    .qr-container span {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-main);
    }
    /* 文章与友情链接模块 */
    .article-link-box {
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: var(--radius-card);
      padding: 24px;
      box-shadow: var(--shadow-doodle);
      margin-bottom: 30px;
    }
    .article-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 14px;
    }
    .article-links-wrap a {
      background: #f1f5f9;
      color: var(--text-main);
      padding: 6px 14px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      border: 1px solid #cbd5e1;
      transition: all 0.2s ease;
    }
    .article-links-wrap a:hover {
      background: var(--accent-yellow);
      border-color: var(--border-ink);
    }
    .friend-links-box {
      padding-top: 16px;
      border-top: 1px dashed #cbd5e1;
    }
    .friend-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 10px;
    }
    .friend-links-wrap a {
      color: var(--text-muted);
      font-size: 0.85rem;
      text-decoration: none;
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 6px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
    }
    .friend-links-wrap a:hover {
      color: var(--primary);
      border-color: var(--primary);
    }
    /* 页脚 */
    footer.site-footer {
      background: #ffffff;
      border-top: 2px solid var(--border-ink);
      padding: 48px 0 32px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 24px;
    }
    .footer-left {
      max-width: 480px;
    }
    .footer-left p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 8px;
    }
    .footer-nav {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-nav a {
      color: var(--text-main);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
    }
    .footer-nav a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid #e2e8f0;
      padding-top: 20px;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-sub);
    }
    /* 浮动组件与返回顶部 */
    .floating-tools {
      position: fixed;
      right: 20px;
      bottom: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }
    .floating-btn {
      width: 48px;
      height: 48px;
      background: #ffffff;
      border: 2px solid var(--border-ink);
      border-radius: 50%;
      box-shadow: 2px 2px 0px var(--border-ink);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      text-decoration: none;
      color: var(--text-main);
      font-size: 1.1rem;
      font-weight: 800;
      transition: transform 0.2s ease;
    }
    .floating-btn:hover {
      transform: scale(1.08);
      background: var(--accent-yellow);
    }
    /* 响应式媒体查询 */
    @media (max-width: 1024px) {
      .service-grid, .about-grid, .token-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-steps {
        grid-template-columns: repeat(3, 1fr);
      }
      .banner-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
      .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: block;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 2px solid var(--border-ink);
        padding: 16px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.06);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links li a {
        width: 100%;
        display: block;
        padding: 10px 14px;
      }
      .service-grid, .about-grid, .token-grid, .reviews-grid, .media-grid, .process-steps, .contact-wrapper {
        grid-template-columns: 1fr;
      }
      h1.hero-h1 {
        font-size: 1.95rem;
      }
      .section-head h2 {
        font-size: 1.65rem;
      }
      .agency-box {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }