/* CSS Reset & Variables - 霓虹亮彩风 (Neon Light Tech) */
    :root {
      --bg-main: #f8fafc;
      --bg-card: #ffffff;
      --bg-alt: #f1f5f9;
      --text-main: #0f172a;
      --text-muted: #475569;
      --text-light: #64748b;
      --brand-primary: #0284c7;
      --brand-neon-cyan: #00d2ff;
      --brand-neon-purple: #8b5cf6;
      --brand-neon-pink: #ec4899;
      --brand-neon-green: #10b981;
      --border-color: #e2e8f0;
      --border-glow: rgba(0, 210, 255, 0.35);
      --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
      --card-hover-shadow: 0 20px 30px -10px rgba(2, 132, 199, 0.18), 0 0 15px rgba(0, 210, 255, 0.2);
      --container-max: 1200px;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after {
      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-main);
      background-image: 
        radial-gradient(at 10% 10%, rgba(0, 210, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 90% 20%, rgba(139, 92, 246, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 80%, rgba(236, 72, 153, 0.05) 0px, transparent 50%);
      background-attachment: fixed;
      color: var(--text-main);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Container System */
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* Header & Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      transition: var(--transition-smooth);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo-box {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

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

    .brand-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      background: linear-gradient(135deg, #0284c7 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    /* Nav Links rule: gap must be 0 */
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
      margin: 0;
      padding: 0;
    }

    .nav-links li a {
      display: inline-block;
      padding: 8px 12px;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition-smooth);
      border-radius: var(--radius-sm);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--brand-primary);
      background: rgba(2, 132, 199, 0.08);
    }

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

    .btn-neon-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 20px;
      font-size: 0.92rem;
      font-weight: 600;
      color: #ffffff;
      background: linear-gradient(135deg, #0284c7 0%, #7c3aed 100%);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 30px;
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
      transition: var(--transition-smooth);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-neon-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
      color: #ffffff;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      padding: 6px 10px;
      cursor: pointer;
      color: var(--text-main);
      font-size: 1.2rem;
    }

    /* Section Global Styles */
    section {
      padding: 70px 0;
      position: relative;
    }

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

    .section-badge {
      display: inline-block;
      padding: 4px 14px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #0284c7;
      background: rgba(2, 132, 199, 0.1);
      border: 1px solid rgba(0, 210, 255, 0.3);
      border-radius: 20px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

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

    /* Section 1: Hero Section (Strictly NO Images) */
    .hero-section {
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      background: #ffffff;
      border: 1px solid var(--border-glow);
      box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
      border-radius: 30px;
      font-size: 0.88rem;
      font-weight: 600;
      color: #0284c7;
      margin-bottom: 24px;
    }

    .hero-badge-pulse {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10b981;
    }

    .hero-h1 {
      font-size: 2.75rem;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
      max-width: 900px;
      margin: 0 auto 20px;
      letter-spacing: -1px;
    }

    .hero-gradient-text {
      background: linear-gradient(135deg, #0284c7 0%, #8b5cf6 50%, #ec4899 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtext {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 780px;
      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: 50px;
    }

    .btn-hero-main {
      padding: 14px 36px;
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      background: linear-gradient(135deg, #0284c7 0%, #7c3aed 100%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 35px;
      text-decoration: none;
      box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
      transition: var(--transition-smooth);
    }

    .btn-hero-main:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
      color: #ffffff;
    }

    .btn-hero-outline {
      padding: 14px 32px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-main);
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 35px;
      text-decoration: none;
      box-shadow: var(--card-shadow);
      transition: var(--transition-smooth);
    }

    .btn-hero-outline:hover {
      border-color: var(--brand-primary);
      color: var(--brand-primary);
      transform: translateY(-2px);
    }

    /* Hero Metrics (Pure CSS Geometry) */
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1060px;
      margin: 0 auto;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px 16px;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
      transition: var(--transition-smooth);
    }

    .metric-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #00d2ff, #7c3aed);
      opacity: 0.8;
    }

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

    .metric-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.1;
      margin-bottom: 6px;
      background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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

    /* Section 2: About & Platform Intro */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: stretch;
    }

    .about-text-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .about-highlight-list {
      list-style: none;
      margin-top: 20px;
    }

    .about-highlight-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.96rem;
      color: var(--text-muted);
    }

    .neon-check-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      border-radius: 50%;
      font-weight: bold;
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    .model-wall-card {
      background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--card-shadow);
    }

    .model-tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .model-tag {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-main);
      box-shadow: 0 2px 6px rgba(0,0,0,0.03);
      transition: var(--transition-smooth);
    }

    .model-tag:hover {
      border-color: var(--brand-neon-purple);
      color: var(--brand-primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
    }

    /* Section 3: AIGC Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--card-shadow);
      transition: var(--transition-smooth);
      position: relative;
    }

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

    .service-icon-box {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(139, 92, 246, 0.15) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: #0284c7;
      border: 1px solid rgba(0, 210, 255, 0.25);
    }

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

    .service-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .service-features {
      list-style: none;
      border-top: 1px dashed var(--border-color);
      padding-top: 14px;
    }

    .service-features li {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Section 4: One-stop Creation Scenarios (Dense Grid) */
    .scenarios-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .scenario-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 22px 18px;
      box-shadow: var(--card-shadow);
      transition: var(--transition-smooth);
    }

    .scenario-card:hover {
      border-color: var(--brand-neon-purple);
      box-shadow: 0 10px 20px rgba(139, 92, 246, 0.12);
      transform: translateY(-3px);
    }

    .scenario-tag {
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      background: rgba(2, 132, 199, 0.08);
      color: #0284c7;
      margin-bottom: 8px;
      display: inline-block;
    }

    .scenario-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .scenario-text {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Section 5: Industry Solutions */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .solution-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--card-shadow);
      transition: var(--transition-smooth);
    }

    .solution-card:hover {
      border-color: var(--brand-neon-cyan);
      box-shadow: var(--card-hover-shadow);
    }

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

    .solution-icon {
      font-size: 1.8rem;
    }

    /* Section 6: Service Network */
    .network-panel {
      background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--card-shadow);
    }

    .network-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
      margin-top: 30px;
    }

    .network-stat-item {
      padding: 20px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }

    /* Section 7: Standard Process */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }

    .step-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px 20px;
      box-shadow: var(--card-shadow);
      text-align: center;
      position: relative;
      transition: var(--transition-smooth);
    }

    .step-card:hover {
      transform: translateY(-4px);
      border-color: var(--brand-primary);
      box-shadow: var(--card-hover-shadow);
    }

    .step-badge {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0284c7 0%, #8b5cf6 100%);
      color: #ffffff;
      font-weight: 800;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
    }

    /* Section 8: Case Center with Media Library Images */
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .case-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
    }

    .case-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-glow);
      box-shadow: var(--card-hover-shadow);
    }

    .case-img-wrap {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: #e2e8f0;
    }

    .case-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .case-card:hover .case-img-wrap img {
      transform: scale(1.05);
    }

    .case-content {
      padding: 22px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* Section 9: Evaluation & Comparison */
    .rating-banner {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      border-radius: var(--radius-lg);
      padding: 36px;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 32px;
      border: 1px solid rgba(0, 210, 255, 0.3);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
    }

    .rating-score-box {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .score-big {
      font-size: 3.5rem;
      font-weight: 900;
      color: #00d2ff;
      line-height: 1;
      text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    }

    .stars-box {
      color: #fbbf24;
      font-size: 1.4rem;
      letter-spacing: 2px;
    }

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

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

    .compare-table th, .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
    }

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

    .compare-table tr:hover td {
      background: rgba(2, 132, 199, 0.03);
    }

    .highlight-col {
      background: rgba(0, 210, 255, 0.05);
      font-weight: 600;
      color: #0284c7;
    }

    /* Section 10: Requirements Matcher */
    .matcher-card {
      background: #ffffff;
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--card-shadow);
    }

    .matcher-options {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }

    .matcher-btn {
      padding: 14px 12px;
      background: #f8fafc;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      text-align: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--text-main);
      transition: var(--transition-smooth);
    }

    .matcher-btn.active, .matcher-btn:hover {
      background: rgba(2, 132, 199, 0.1);
      border-color: #0284c7;
      color: #0284c7;
      box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    }

    .matcher-result-box {
      background: #f1f5f9;
      border-radius: var(--radius-md);
      padding: 24px;
      border-left: 4px solid #0284c7;
    }

    /* Section 11: Token Pricing */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .token-tier-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      box-shadow: var(--card-shadow);
      text-align: center;
      transition: var(--transition-smooth);
      position: relative;
    }

    .token-tier-card.featured {
      border: 2px solid var(--brand-neon-purple);
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
      transform: translateY(-4px);
    }

    .tier-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #0284c7, #8b5cf6);
      color: #ffffff;
      padding: 4px 16px;
      font-size: 0.75rem;
      font-weight: 700;
      border-radius: 20px;
    }

    .tier-price {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
      margin: 16px 0;
    }

    .tier-price span {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 400;
    }

    /* Section 12 & 14: Help Center & AI Encyclopedia */
    .faq-help-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .encyclopedia-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--card-shadow);
    }

    .term-item {
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 1px solid #f1f5f9;
    }

    .term-title {
      font-weight: 700;
      color: #0284c7;
      margin-bottom: 4px;
      font-size: 1rem;
    }

    .term-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* Section 13: FAQ Accordion */
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      margin-bottom: 14px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
      transition: var(--transition-smooth);
    }

    .faq-item:hover {
      border-color: var(--border-glow);
    }

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

    .faq-arrow {
      font-size: 0.9rem;
      transition: transform 0.3s ease;
      color: #0284c7;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 24px;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      background: #fcfdfe;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px;
      border-top: 1px solid #f1f5f9;
    }

    .faq-item.active .faq-arrow {
      transform: rotate(180deg);
    }

    /* Section 15: Articles & Industry News */
    .articles-card-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 30px;
    }

    .article-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .article-title-link {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      transition: color 0.2s;
    }

    .article-title-link:hover {
      color: #0284c7;
    }

    /* Section 16 & Contact Form */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--card-shadow);
    }

    .contact-info-col {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .qr-box {
      background: #f8fafc;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      text-align: center;
      margin-top: 20px;
      max-width: 220px;
    }

    .qr-box img {
      width: 140px;
      height: 140px;
      margin: 0 auto 10px;
      display: block;
      border-radius: var(--radius-sm);
    }

    .contact-form-col form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

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

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

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

    .form-control:focus {
      outline: none;
      border-color: #0284c7;
      box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
    }

    /* Testimonials Section (6 reviews) */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition-smooth);
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-glow);
      box-shadow: var(--card-hover-shadow);
    }

    .testimonial-text {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 18px;
      font-style: italic;
    }

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

    .reviewer-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0284c7, #ec4899);
      color: #ffffff;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .reviewer-name {
      font-weight: 700;
      color: var(--text-main);
      font-size: 0.95rem;
    }

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

    /* Affiliate / Agent Section */
    .agent-card {
      background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
      border: 2px solid rgba(139, 92, 246, 0.3);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--card-shadow);
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 30px;
      align-items: center;
    }

    /* Footer */
    .site-footer {
      background: #0f172a;
      color: #94a3b8;
      padding: 60px 0 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 36px;
      margin-bottom: 40px;
    }

    .footer-col h4 {
      color: #ffffff;
      font-size: 1.05rem;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links li a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-links li a:hover {
      color: #00d2ff;
    }

    .friend-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .friend-links-wrap a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.85rem;
      background: rgba(255, 255, 255, 0.05);
      padding: 4px 10px;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .friend-links-wrap a:hover {
      color: #ffffff;
      background: rgba(0, 210, 255, 0.2);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      text-align: center;
      font-size: 0.85rem;
      color: #64748b;
    }

    /* Floating Customer Service & Back to Top */
    .floating-widgets {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      cursor: pointer;
      text-decoration: none;
      transition: var(--transition-smooth);
      font-size: 1.2rem;
    }

    .float-btn:hover {
      background: #0284c7;
      color: #ffffff;
      transform: scale(1.08);
    }

    /* Responsive Queries */
    @media (max-width: 1024px) {
      .hero-metrics, .scenarios-grid, .network-stats, .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .services-grid, .solutions-grid, .cases-grid, .testimonials-grid, .token-grid, .articles-card-list {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid, .contact-wrapper, .agent-card, .faq-help-grid {
        grid-template-columns: 1fr;
      }
      .matcher-options {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-bottom: 1px solid var(--border-color);
      }
      .nav-links.show {
        display: flex;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-h1 {
        font-size: 2rem;
      }
      .hero-metrics, .services-grid, .scenarios-grid, .solutions-grid, .cases-grid, .testimonials-grid, .token-grid, .articles-card-list, .process-steps, .network-stats {
        grid-template-columns: 1fr;
      }
      .matcher-options {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .rating-banner {
        flex-direction: column;
        text-align: center;
      }
    }