:root {
      --primary: #0f766e;
      --primary-hover: #115e59;
      --primary-light: #f0fdfa;
      --secondary: #0d9488;
      --accent: #14b8a6;
      --dark: #0f172a;
      --text-main: #1e293b;
      --text-muted: #475569;
      --border-light: #ccfbf1;
      --border-soft: #e2e8f0;
      --bg-page: #f8fafc;
      --bg-card: #ffffff;
      --shadow-sm: 0 2px 4px rgba(15, 118, 110, 0.04);
      --shadow-md: 0 8px 20px rgba(15, 118, 110, 0.08);
      --shadow-lg: 0 16px 32px rgba(15, 118, 110, 0.12);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--bg-page);
      color: var(--text-main);
      line-height: 1.6;
      font-size: 15px;
      background-image: radial-gradient(at 0% 0%, rgba(204, 251, 241, 0.4) 0px, transparent 50%),
                        radial-gradient(at 100% 100%, rgba(204, 251, 241, 0.3) 0px, transparent 50%);
      background-attachment: fixed;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

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

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

    .brand-wrap .logo-box {
      width: 140px;
      display: flex;
      align-items: center;
    }

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

    .nav-menu {
      display: flex;
      align-items: center;
    }

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

    .nav-links li a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-main);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      transition: all 0.2s;
      white-space: nowrap;
    }

    .nav-links li a:hover {
      color: var(--primary);
      background-color: var(--primary-light);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
      color: #ffffff;
    }

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

    .btn-outline:hover {
      background-color: var(--primary-light);
      color: var(--primary-hover);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      margin: 5px 0;
      transition: 0.3s;
    }

    /* Section Global */
    section {
      padding: 64px 0;
    }

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

    .section-badge {
      display: inline-block;
      padding: 4px 14px;
      background-color: var(--primary-light);
      color: var(--primary);
      border: 1px solid var(--border-light);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 30px;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.5px;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .section-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Hero Section (No Images!) */
    .hero-section {
      padding: 80px 0 64px;
      background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
      border-bottom: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
    }

    .hero-content {
      text-align: left;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 999px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
    }

    .hero-tag-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero-title {
      font-size: 38px;
      line-height: 1.25;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 20px;
      letter-spacing: -0.8px;
    }

    .hero-title span {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 32px;
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 20px;
      border-top: 1px dashed var(--border-soft);
    }

    .hero-feat-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-main);
      font-weight: 500;
    }

    .hero-feat-item svg {
      width: 18px;
      height: 18px;
      color: var(--secondary);
    }

    .hero-visual {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .visual-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border-soft);
      padding-bottom: 14px;
      margin-bottom: 20px;
    }

    .status-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
    }

    .pulse-point {
      width: 10px;
      height: 10px;
      background: #10b981;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }

    .visual-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 20px;
    }

    .v-card {
      background: var(--primary-light);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px;
    }

    .v-card-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .v-card-val {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
    }

    .v-card-tag {
      font-size: 11px;
      color: var(--primary);
      margin-top: 4px;
      font-weight: 600;
    }

    .visual-flow {
      background: #f8fafc;
      border-radius: var(--radius-md);
      padding: 16px;
      border: 1px solid var(--border-soft);
    }

    .visual-flow-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .flow-steps {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .step-badge {
      font-size: 11px;
      background: #ffffff;
      padding: 6px 10px;
      border-radius: 6px;
      border: 1px solid var(--border-soft);
      color: var(--text-main);
      font-weight: 500;
      text-align: center;
    }

    .step-arrow {
      color: var(--accent);
      font-size: 12px;
      font-weight: bold;
    }

    /* Model Cloud */
    .models-cloud-wrap {
      margin-top: 24px;
      padding: 24px;
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .models-cloud-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 16px;
    }

    .models-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .model-pill {
      font-size: 12px;
      background: var(--primary-light);
      color: var(--primary-hover);
      padding: 5px 12px;
      border-radius: 999px;
      border: 1px solid var(--border-light);
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .model-pill:hover {
      background: var(--primary);
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* Metrics Grid */
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: -30px;
      position: relative;
      z-index: 10;
    }

    .metric-item {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: transform 0.25s ease;
    }

    .metric-item:hover {
      transform: translateY(-4px);
    }

    .metric-number {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .metric-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .metric-sub {
      font-size: 12px;
      color: var(--text-muted);
    }

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

    .service-card {
      background: #ffffff;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      padding: 28px;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .service-icon-box {
      width: 48px;
      height: 48px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .service-icon-box svg {
      width: 24px;
      height: 24px;
    }

    .service-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

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

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tag-item {
      font-size: 11px;
      background: #f1f5f9;
      color: #334155;
      padding: 3px 8px;
      border-radius: 4px;
    }

    /* Industry Solutions & Real Media Section */
    .solutions-media-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
      margin-top: 40px;
      background: #ffffff;
      padding: 32px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .media-card-box {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-sm);
      background: #f8fafc;
    }

    .media-card-box figcaption {
      padding: 12px 16px;
      font-size: 13px;
      color: var(--text-muted);
      background: #ffffff;
      border-top: 1px solid var(--border-soft);
      font-weight: 500;
    }

    .solutions-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .solution-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .sol-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      background: var(--primary-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .sol-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .sol-desc {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Process Flow */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .process-card {
      background: #ffffff;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
      transition: all 0.25s ease;
    }

    .process-card:hover {
      border-color: var(--secondary);
      box-shadow: var(--shadow-md);
    }

    .process-step-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--border-light);
      margin-bottom: 12px;
      line-height: 1;
    }

    .process-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .process-card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Cases Showcase */
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

    .case-media {
      aspect-ratio: 16 / 9;
      background: #e2e8f0;
      overflow: hidden;
    }

    .case-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .case-card:hover .case-media img {
      transform: scale(1.03);
    }

    .case-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .case-cat {
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .case-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .case-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 14px;
      line-height: 1.6;
    }

    .case-stats {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      border-top: 1px solid var(--border-soft);
      padding-top: 12px;
      font-size: 12px;
      color: var(--text-main);
      font-weight: 600;
    }

    /* Comparison Section */
    .comparison-box {
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-md);
    }

    .rating-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 20px 28px;
      margin-bottom: 28px;
    }

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

    .score-num {
      font-size: 40px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .score-details {
      display: flex;
      flex-direction: column;
    }

    .score-stars {
      color: #f59e0b;
      font-size: 16px;
      letter-spacing: 2px;
    }

    .score-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .table-container {
      overflow-x: auto;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 600px;
    }

    .compare-table th,
    .compare-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border-soft);
      font-size: 14px;
    }

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

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    .compare-table td.highlight {
      background: rgba(240, 253, 250, 0.6);
      color: var(--primary);
      font-weight: 600;
    }

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

    .token-card {
      background: #ffffff;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      padding: 28px;
      text-align: center;
      position: relative;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .token-card.featured {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    .token-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: #ffffff;
      padding: 3px 12px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
    }

    .token-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .token-price {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .token-price span {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
    }

    .token-specs {
      list-style: none;
      text-align: left;
      margin: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 13px;
      color: var(--text-main);
      flex-grow: 1;
    }

    .token-specs li {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .token-specs li svg {
      width: 16px;
      height: 16px;
      color: var(--secondary);
      flex-shrink: 0;
    }

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

    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-soft);
      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: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      border: 1px solid var(--border-light);
    }

    .review-user-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
    }

    .review-user-title {
      font-size: 12px;
      color: var(--text-muted);
    }

    .review-content {
      font-size: 13px;
      color: var(--text-main);
      line-height: 1.65;
      font-style: normal;
      flex-grow: 1;
    }

    .review-stars {
      color: #f59e0b;
      font-size: 13px;
      margin-top: 14px;
      letter-spacing: 2px;
    }

    /* FAQ Section */
    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq-item.active {
      border-color: var(--secondary);
    }

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

    .faq-toggle-icon {
      font-size: 18px;
      color: var(--secondary);
      transition: transform 0.25s ease;
    }

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

    .faq-answer {
      display: none;
      padding: 0 22px 18px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

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

    /* Matching & Form Section */
    .match-contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-md);
    }

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

    .contact-head-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .contact-head-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .contact-channels {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
    }

    .channel-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--text-main);
    }

    .channel-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .channel-icon svg {
      width: 18px;
      height: 18px;
    }

    .qr-showcase {
      display: flex;
      align-items: center;
      gap: 20px;
      background: var(--primary-light);
      padding: 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
    }

    .qr-img-box {
      width: 90px;
      height: 90px;
      background: #ffffff;
      padding: 6px;
      border-radius: 8px;
      border: 1px solid var(--border-soft);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qr-info {
      font-size: 13px;
      color: var(--text-main);
    }

    .qr-info strong {
      display: block;
      color: var(--dark);
      margin-bottom: 4px;
      font-size: 14px;
    }

    /* Form Styles */
    .form-col {
      background: #f8fafc;
      padding: 28px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
    }

    .form-col-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .form-control {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-family: inherit;
      color: var(--text-main);
      background: #ffffff;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-control:focus {
      border-color: var(--primary);
    }

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

    /* Articles & News Section */
    .news-card-wrap {
      background: #ffffff;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
    }

    .article-links-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 18px;
    }

    .article-item-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: #f8fafc;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-soft);
      font-size: 13px;
      color: var(--text-main);
      transition: all 0.2s ease;
    }

    .article-item-link:hover {
      background: var(--primary-light);
      border-color: var(--border-light);
      color: var(--primary-hover);
    }

    .article-dot {
      width: 6px;
      height: 6px;
      background: var(--secondary);
      border-radius: 50%;
    }

    /* Network / Agency / Wiki Mini Cards */
    .mini-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

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

    .mini-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mini-card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Footer */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid var(--border-light);
      padding: 48px 0 24px;
      color: var(--text-main);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 36px;
    }

    .footer-about {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-about p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .footer-col-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .footer-links-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-links-list a {
      color: var(--text-muted);
    }

    .footer-links-list a:hover {
      color: var(--primary);
    }

    .friend-links-box {
      border-top: 1px solid var(--border-soft);
      padding: 20px 0;
      margin-bottom: 20px;
    }

    .friend-links-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .friend-links-items {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 13px;
    }

    .friend-links-items a {
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .friend-links-items a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid var(--border-soft);
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Floating Widget */
    .float-contact {
      position: fixed;
      right: 20px;
      bottom: 28px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      color: var(--primary);
      position: relative;
      transition: all 0.2s ease;
    }

    .float-btn:hover {
      background: var(--primary);
      color: #ffffff;
      transform: translateY(-2px);
    }

    .float-btn svg {
      width: 22px;
      height: 22px;
    }

    .qr-popover {
      display: none;
      position: absolute;
      right: 56px;
      bottom: 0;
      width: 140px;
      background: #ffffff;
      padding: 10px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-lg);
      text-align: center;
      font-size: 11px;
      color: var(--dark);
    }

    .float-btn:hover .qr-popover {
      display: block;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-container {
        grid-template-columns: 1fr;
      }
      .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
      }
      .services-grid,
      .cases-grid,
      .token-grid,
      .reviews-grid,
      .mini-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .solutions-media-wrap,
      .match-contact-wrap {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-light);
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
      }
      .nav-menu.active {
        display: block;
      }
      .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 14px;
      }
      .nav-links li a {
        display: block;
        width: 100%;
      }
      .hero-title {
        font-size: 28px;
      }
      .process-grid,
      .services-grid,
      .cases-grid,
      .token-grid,
      .reviews-grid,
      .mini-cards-grid,
      .article-links-list {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr;
      }
      .rating-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
    }