:root {
      --bg-base: #0a0612;
      --bg-surface: #120b22;
      --bg-card: rgba(24, 14, 43, 0.75);
      --bg-card-hover: rgba(36, 20, 64, 0.9);
      --neon-pink: #ff2a85;
      --neon-purple: #9d4edd;
      --neon-cyan: #00f0ff;
      --text-main: #f8f6fd;
      --text-muted: #b8a9cf;
      --text-dim: #7f6e99;
      --border-glow: rgba(255, 42, 133, 0.28);
      --border-purple: rgba(157, 78, 221, 0.35);
      --gradient-brand: linear-gradient(135deg, #ff2a85 0%, #7928ca 50%, #00f0ff 100%);
      --gradient-card: linear-gradient(180deg, rgba(32, 18, 58, 0.6) 0%, rgba(16, 9, 31, 0.8) 100%);
      --shadow-neon: 0 0 24px rgba(255, 42, 133, 0.25);
      --shadow-purple: 0 0 24px rgba(157, 78, 221, 0.25);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --container-max: 1200px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }
    html {
      scroll-behavior: smooth;
      font-size: 16px;
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    }
    body {
      background: radial-gradient(circle at 50% 0%, #2b0c4a 0%, #100820 40%, #080410 100%);
      background-attachment: fixed;
      line-height: 1.65;
      overflow-x: hidden;
      min-height: 100vh;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    img {
      display: block;
      max-width: 100%;
      height: auto;
    }
    .site-wrapper {
      width: 100%;
      position: relative;
    }
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    .section-spacing {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 44px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      padding: 4px 14px;
      background: rgba(255, 42, 133, 0.12);
      border: 1px solid var(--neon-pink);
      border-radius: 30px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--neon-pink);
      letter-spacing: 1px;
      margin-bottom: 12px;
      box-shadow: 0 0 12px rgba(255, 42, 133, 0.2);
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-title span {
      background: linear-gradient(90deg, #ff2a85, #bd68ff, #00f0ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 40px;
      font-size: 0.96rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      text-align: center;
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, #ff2a85 0%, #9d4edd 100%);
      color: #ffffff;
      box-shadow: 0 4px 20px rgba(255, 42, 133, 0.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(255, 42, 133, 0.65);
    }
    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      color: #ffffff;
      border: 1px solid var(--border-purple);
      backdrop-filter: blur(10px);
    }
    .btn-secondary:hover {
      background: rgba(157, 78, 221, 0.2);
      border-color: var(--neon-pink);
      color: #ffffff;
    }
    .btn-glow {
      background: linear-gradient(135deg, #00f0ff 0%, #7928ca 100%);
      color: #0d061a;
      font-weight: 700;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }
    .btn-glow:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
    }
    .cyber-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 24px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
    }
    .cyber-card:hover {
      border-color: var(--neon-pink);
      box-shadow: 0 8px 32px rgba(255, 42, 133, 0.2);
      transform: translateY(-3px);
    }
    .cyber-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
      opacity: 0.6;
    }
    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(10, 6, 18, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 42, 133, 0.18);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-box {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-logo-img {
      height: 40px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
    }
    .nav-container {
      display: flex;
      align-items: center;
    }
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }
    .nav-link-item a {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 500;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
    }
    .nav-link-item a:hover {
      color: #ffffff;
      background: rgba(255, 42, 133, 0.12);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .menu-toggle {
      display: none;
      background: transparent;
      border: 1px solid var(--border-glow);
      color: #ffffff;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      font-size: 1rem;
    }
    /* Hero - NO IMAGES */
    .hero-section {
      padding: 90px 0 70px;
      position: relative;
      text-align: center;
    }
    .hero-glow-bg {
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translate(-50%, -30%);
      width: 600px;
      height: 350px;
      background: radial-gradient(circle, rgba(255, 42, 133, 0.22) 0%, rgba(157, 78, 221, 0.15) 50%, transparent 75%);
      pointer-events: none;
      filter: blur(50px);
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      background: rgba(157, 78, 221, 0.15);
      border: 1px solid var(--neon-purple);
      border-radius: 40px;
      font-size: 0.85rem;
      color: #e0b0ff;
      margin-bottom: 24px;
    }
    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: var(--neon-cyan);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--neon-cyan);
    }
    .hero-title {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      color: #ffffff;
      letter-spacing: -0.5px;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 36px;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .hero-btn-official {
      padding: 14px 34px;
      font-size: 1.05rem;
      background: linear-gradient(135deg, #ff2a85 0%, #bd00ff 100%);
      color: #ffffff;
      font-weight: 700;
      border-radius: 40px;
      box-shadow: 0 0 28px rgba(255, 42, 133, 0.6);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .hero-btn-official:hover {
      transform: scale(1.04);
      box-shadow: 0 0 40px rgba(255, 42, 133, 0.85);
    }
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 30px;
    }
    .stat-card {
      background: rgba(22, 12, 40, 0.7);
      border: 1px solid rgba(255, 42, 133, 0.2);
      border-radius: var(--radius-md);
      padding: 18px 12px;
      text-align: center;
    }
    .stat-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: #ffffff;
      background: linear-gradient(90deg, #ff2a85, #00f0ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    /* Model Cloud Marquee */
    .model-strip {
      background: rgba(18, 9, 34, 0.9);
      border-top: 1px solid var(--border-glow);
      border-bottom: 1px solid var(--border-glow);
      padding: 20px 0;
      overflow: hidden;
    }
    .model-tags {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .model-tag {
      font-size: 0.82rem;
      padding: 6px 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(157, 78, 221, 0.3);
      border-radius: 20px;
      color: #d1bfe8;
      font-family: monospace;
      white-space: nowrap;
    }
    .model-tag:hover {
      border-color: var(--neon-pink);
      color: #ffffff;
      background: rgba(255, 42, 133, 0.15);
    }
    /* About & Platform Intro */
    .grid-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }
    .about-feature-list {
      list-style: none;
      display: grid;
      gap: 16px;
      margin-top: 20px;
    }
    .about-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: rgba(26, 15, 48, 0.5);
      border: 1px solid rgba(157, 78, 221, 0.2);
      border-radius: var(--radius-sm);
      padding: 14px;
    }
    .about-icon {
      font-size: 1.2rem;
      color: var(--neon-pink);
      line-height: 1;
      padding-top: 2px;
    }
    /* Services & Scenarios Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      background: var(--bg-card);
      border: 1px solid rgba(157, 78, 221, 0.25);
      border-radius: var(--radius-md);
      padding: 22px;
      transition: all 0.3s;
    }
    .service-card:hover {
      border-color: var(--neon-pink);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(255, 42, 133, 0.25);
    }
    .service-badge {
      display: inline-block;
      font-size: 0.75rem;
      padding: 2px 8px;
      background: rgba(0, 240, 255, 0.12);
      color: var(--neon-cyan);
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .service-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .service-text {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
    }
    /* Process Steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .step-card {
      background: var(--bg-card);
      border: 1px solid rgba(157, 78, 221, 0.25);
      border-radius: var(--radius-md);
      padding: 24px 18px;
      position: relative;
      text-align: center;
    }
    .step-num {
      width: 44px;
      height: 44px;
      line-height: 44px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff2a85, #9d4edd);
      color: #ffffff;
      font-weight: 800;
      font-size: 1.1rem;
      box-shadow: 0 0 16px rgba(255, 42, 133, 0.5);
    }
    .step-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .step-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    /* Showcase / Case Center with IMAGES */
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .case-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .case-card:hover {
      border-color: var(--neon-cyan);
      box-shadow: 0 10px 30px rgba(0, 240, 255, 0.25);
    }
    .case-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 10;
      background: #180d2b;
      overflow: hidden;
    }
    .case-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .case-card:hover .case-img-wrap img {
      transform: scale(1.05);
    }
    .case-content {
      padding: 18px;
    }
    .case-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
    }
    .case-desc {
      font-size: 0.84rem;
      color: var(--text-muted);
    }
    /* Comparison & Evaluation */
    .review-score-banner {
      background: linear-gradient(135deg, rgba(255, 42, 133, 0.15) 0%, rgba(157, 78, 221, 0.2) 100%);
      border: 1px solid var(--neon-pink);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      margin-bottom: 30px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .score-item {
      text-align: center;
    }
    .score-val {
      font-size: 2.4rem;
      font-weight: 900;
      color: #ff2a85;
      text-shadow: 0 0 16px rgba(255, 42, 133, 0.6);
    }
    .stars {
      color: #ffd700;
      font-size: 1.4rem;
      letter-spacing: 2px;
    }
    .table-container {
      overflow-x: auto;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-purple);
      background: var(--bg-card);
    }
    .cyber-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .cyber-table th, .cyber-table td {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(157, 78, 221, 0.18);
      font-size: 0.92rem;
    }
    .cyber-table th {
      background: rgba(35, 18, 60, 0.85);
      color: #ffffff;
      font-weight: 700;
    }
    .cyber-table td {
      color: var(--text-muted);
    }
    .cyber-table tr:hover td {
      background: rgba(255, 42, 133, 0.05);
      color: #ffffff;
    }
    .highlight-col {
      color: var(--neon-cyan) !important;
      font-weight: 600;
    }
    /* Token Pricing */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .token-card {
      background: var(--bg-card);
      border: 1px solid rgba(157, 78, 221, 0.25);
      border-radius: var(--radius-md);
      padding: 22px 18px;
      text-align: center;
      transition: all 0.3s;
    }
    .token-card:hover {
      border-color: var(--neon-pink);
      transform: translateY(-4px);
    }
    .token-model {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
    }
    .token-price {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--neon-pink);
      margin: 12px 0;
    }
    .token-price span {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: normal;
    }
    /* User Reviews */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: var(--bg-card);
      border: 1px solid rgba(157, 78, 221, 0.2);
      border-radius: var(--radius-md);
      padding: 22px;
      position: relative;
    }
    .review-user {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .user-avatar-tag {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff2a85, #7928ca);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #ffffff;
      font-size: 1.05rem;
    }
    .user-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: #ffffff;
    }
    .user-role {
      font-size: 0.78rem;
      color: var(--neon-cyan);
    }
    .review-text {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    /* FAQ Accordion */
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid rgba(157, 78, 221, 0.25);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .faq-item.active {
      border-color: var(--neon-pink);
    }
    .faq-question {
      padding: 18px 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 600;
      color: #ffffff;
      font-size: 0.98rem;
    }
    .faq-icon {
      font-size: 1.2rem;
      color: var(--neon-pink);
      transition: transform 0.3s;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      display: none;
      padding: 0 22px 20px;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 14px;
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    /* Articles & Dynamic Poster */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .news-links-box {
      background: var(--bg-card);
      border: 1px solid rgba(157, 78, 221, 0.25);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .news-item-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid rgba(157, 78, 221, 0.15);
      color: var(--text-main);
      font-size: 0.92rem;
    }
    .news-item-link:last-child {
      border-bottom: none;
    }
    .news-item-link:hover {
      color: var(--neon-pink);
      transform: translateX(4px);
    }
    /* Form & Contact */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 32px;
    }
    .contact-info-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .contact-item-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }
    .contact-qr-box {
      text-align: center;
      margin-top: 16px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--radius-md);
      border: 1px solid rgba(255, 42, 133, 0.2);
    }
    .contact-qr-img {
      width: 130px;
      height: 130px;
      margin: 0 auto 10px;
      border-radius: 8px;
      border: 2px solid var(--neon-pink);
    }
    .form-card {
      background: var(--bg-card);
      border: 1px solid var(--border-purple);
      border-radius: var(--radius-md);
      padding: 30px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 6px;
    }
    .form-control {
      width: 100%;
      padding: 12px 16px;
      background: rgba(14, 8, 25, 0.8);
      border: 1px solid rgba(157, 78, 221, 0.35);
      border-radius: var(--radius-sm);
      color: #ffffff;
      font-size: 0.92rem;
      transition: border-color 0.3s;
      outline: none;
    }
    .form-control:focus {
      border-color: var(--neon-pink);
      box-shadow: 0 0 10px rgba(255, 42, 133, 0.3);
    }
    /* Banner Promotion Area */
    .promo-banner-wrap {
      margin: 40px auto 0;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-glow);
    }
    /* Agency Monetization */
    .agency-card {
      background: linear-gradient(135deg, rgba(38, 16, 68, 0.9) 0%, rgba(18, 9, 36, 0.9) 100%);
      border: 1px solid var(--neon-pink);
      border-radius: var(--radius-md);
      padding: 36px;
      text-align: center;
      box-shadow: 0 0 30px rgba(255, 42, 133, 0.15);
    }
    .agency-perks {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 28px 0;
      text-align: left;
    }
    .agency-perk-item {
      background: rgba(255, 255, 255, 0.04);
      padding: 18px;
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--neon-cyan);
    }
    /* Footer */
    .site-footer {
      background: #080410;
      border-top: 1px solid rgba(157, 78, 221, 0.25);
      padding: 50px 0 24px;
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 30px;
      margin-bottom: 36px;
    }
    .footer-title {
      font-size: 1rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
    }
    .footer-links-list {
      list-style: none;
      display: grid;
      gap: 8px;
    }
    .footer-links-list a:hover {
      color: var(--neon-pink);
    }
    .friend-links-area {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      font-size: 0.84rem;
    }
    .friend-links-area a {
      color: #a395bc;
      margin-right: 12px;
    }
    .friend-links-area a:hover {
      color: var(--neon-cyan);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 20px;
      text-align: center;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    /* Floating Bar */
    .floating-bar {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 990;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #1e0f36;
      border: 1px solid var(--neon-pink);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 16px rgba(255, 42, 133, 0.4);
      cursor: pointer;
      font-size: 1.1rem;
      transition: all 0.3s;
    }
    .float-btn:hover {
      transform: scale(1.1);
      background: var(--neon-pink);
    }
    /* Responsive */
    @media (max-width: 992px) {
      .hero-title { font-size: 2.2rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .token-grid { grid-template-columns: repeat(2, 1fr); }
      .cases-grid { grid-template-columns: repeat(2, 1fr); }
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .contact-wrapper { grid-template-columns: 1fr; }
      .grid-2col { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .menu-toggle { display: block; }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(12, 6, 22, 0.98);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-glow);
      }
      .nav-links.active { display: flex; }
      .nav-link-item { width: 100%; text-align: center; }
      .nav-link-item a { display: block; padding: 12px; }
      .hero-title { font-size: 1.8rem; }
      .services-grid { grid-template-columns: 1fr; }
      .cases-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .token-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .agency-perks { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .section-spacing { padding-top: 50px; padding-bottom: 50px; }
    }