:root {
      --primary: #10b981;
      --primary-dark: #059669;
      --primary-light: #d1fae5;
      --primary-soft: #ecfdf5;
      --mint-bg: #f2fbf7;
      --mint-card: #ffffff;
      --mint-border: #a7f3d0;
      --mint-border-light: #e6f7f0;
      --text-main: #0f172a;
      --text-sub: #334155;
      --text-muted: #64748b;
      --accent: #0ea5e9;
      --shadow-sm: 0 1px 3px rgba(16, 185, 129, 0.08);
      --shadow-md: 0 4px 20px -2px rgba(16, 185, 129, 0.12);
      --shadow-lg: 0 12px 30px -4px rgba(5, 150, 105, 0.15);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --transition: all 0.28s ease;
    }

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

    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--mint-bg);
      color: var(--text-main);
      line-height: 1.6;
    }

    body {
      background-color: var(--mint-bg);
      color: var(--text-main);
      overflow-x: hidden;
    }

    .site-wrapper {
      width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    a {
      color: var(--text-main);
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--primary-dark);
    }

    /* Header & Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--mint-border-light);
      box-shadow: 0 2px 10px rgba(16, 185, 129, 0.05);
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-logo-wrap {
      display: flex;
      align-items: center;
      max-height: 42px;
    }
    .brand-title-badge {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .brand-tag {
      font-size: 0.72rem;
      background: var(--primary-light);
      color: var(--primary-dark);
      padding: 2px 8px;
      border-radius: 99px;
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-links li a {
      font-size: 0.92rem;
      color: var(--text-sub);
      font-weight: 500;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      display: inline-block;
    }
    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-nav-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #ffffff !important;
      padding: 8px 18px;
      font-size: 0.88rem;
      font-weight: 600;
      border-radius: 99px;
      box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
    }
    .btn-nav-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 14px rgba(16, 185, 129, 0.35);
    }

    .nav-toggle-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .nav-toggle-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-main);
      margin: 5px 0;
      transition: var(--transition);
    }

    /* Common Typography & Section */
    section {
      padding: 70px 0;
      position: relative;
    }
    .section-alt {
      background: #ffffff;
    }
    .section-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 48px;
    }
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid var(--mint-border);
      padding: 4px 14px;
      border-radius: 99px;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.3;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 1.02rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* Hero Section (No Images Allowed in Hero) */
    .hero-section {
      padding: 70px 0 60px;
      background: radial-gradient(circle at 50% 20%, #e6faf2 0%, #f4fbf7 65%, var(--mint-bg) 100%);
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--mint-border-light);
    }
    .hero-bg-elem {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      z-index: 0;
      pointer-events: none;
      opacity: 0.6;
    }
    .hero-elem-1 {
      width: 320px;
      height: 320px;
      background: rgba(16, 185, 129, 0.18);
      top: -60px;
      left: 10%;
    }
    .hero-elem-2 {
      width: 380px;
      height: 380px;
      background: rgba(14, 165, 233, 0.12);
      bottom: -40px;
      right: 12%;
    }

    .hero-content-wrap {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 960px;
      margin: 0 auto;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      border: 1px solid var(--mint-border);
      padding: 6px 18px;
      border-radius: 99px;
      font-size: 0.85rem;
      color: var(--primary-dark);
      font-weight: 600;
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }
    .hero-pill .dot {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.3); }
    }
    .hero-title {
      font-size: 2.7rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .hero-title span {
      background: linear-gradient(135deg, #059669, #0ea5e9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-sub);
      max-width: 800px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .btn-main-hero {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: #ffffff !important;
      font-size: 1.08rem;
      font-weight: 700;
      padding: 14px 34px;
      border-radius: 99px;
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }
    .btn-main-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(16, 185, 129, 0.4);
    }
    .btn-sub-hero {
      background: #ffffff;
      color: var(--text-main);
      font-size: 1rem;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 99px;
      border: 1px solid var(--mint-border);
      box-shadow: var(--shadow-sm);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }
    .btn-sub-hero:hover {
      background: var(--primary-soft);
      border-color: var(--primary);
      color: var(--primary-dark);
      transform: translateY(-2px);
    }

    /* Model Badges Flow */
    .hero-models-flow {
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid var(--mint-border);
      border-radius: var(--radius-lg);
      padding: 18px 24px;
      box-shadow: var(--shadow-sm);
    }
    .hero-models-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .models-tag-cloud {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }
    .model-chip {
      background: #ffffff;
      border: 1px solid #d1fae5;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-sub);
      transition: var(--transition);
    }
    .model-chip:hover {
      background: var(--primary-soft);
      border-color: var(--primary);
      color: var(--primary-dark);
    }

    /* Stats Grid */
    .stats-bar-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .stat-card {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      padding: 22px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .stat-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--mint-border);
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 2px;
    }
    .stat-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* Feature Grid (Cards) */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }
    .service-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--primary-soft);
      border: 1px solid var(--mint-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-size: 1.4rem;
      margin-bottom: 18px;
    }
    .service-card h3 {
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .service-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .service-meta-tag {
      display: inline-block;
      align-self: flex-start;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--primary-dark);
      background: var(--primary-soft);
      padding: 3px 10px;
      border-radius: 6px;
    }

    /* Process Flow Section */
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .step-card {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
      box-shadow: var(--shadow-sm);
    }
    .step-num {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      margin-bottom: 14px;
    }
    .step-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }
    .step-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Media Showcase Section */
    .media-grid-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    .media-card {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .media-img-wrap {
      width: 100%;
      background: #f8fafc;
      overflow: hidden;
      position: relative;
    }
    .media-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }
    .media-img-wrap img:hover {
      transform: scale(1.02);
    }
    .media-info-box {
      padding: 20px;
    }
    .media-info-box h4 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-main);
    }
    .media-info-box p {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* Comparison Table Section */
    .eval-highlight-card {
      background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
      border: 2px solid var(--mint-border);
      border-radius: var(--radius-md);
      padding: 28px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-sm);
      flex-wrap: wrap;
      gap: 20px;
    }
    .eval-score-badge {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .score-circle {
      width: 76px;
      height: 76px;
      background: var(--primary-dark);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    }
    .score-val {
      font-size: 1.45rem;
      line-height: 1;
    }
    .score-max {
      font-size: 0.72rem;
      opacity: 0.9;
    }
    .eval-score-text h4 {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .eval-score-text .stars {
      color: #f59e0b;
      font-size: 1.1rem;
      letter-spacing: 2px;
    }
    .eval-score-desc {
      font-size: 0.92rem;
      color: var(--text-sub);
      max-width: 520px;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.92rem;
    }
    .comparison-table th, 
    .comparison-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--mint-border-light);
    }
    .comparison-table th {
      background: #f8fafc;
      font-weight: 700;
      color: var(--text-main);
    }
    .comparison-table th.col-brand {
      background: var(--primary-soft);
      color: var(--primary-dark);
    }
    .comparison-table td.col-brand {
      background: #f9fefb;
      font-weight: 600;
      color: var(--primary-dark);
    }
    .tag-check {
      color: var(--primary-dark);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* Token Price Cards */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .token-card {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }
    .token-card.featured {
      border: 2px solid var(--primary);
      box-shadow: var(--shadow-md);
      background: linear-gradient(180deg, #ffffff 0%, #f7fdfa 100%);
    }
    .token-badge {
      position: absolute;
      top: -12px;
      right: 20px;
      background: var(--primary);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 99px;
    }
    .token-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .token-price-box {
      margin: 16px 0 20px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .token-price-val {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
    }
    .token-price-unit {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .token-features {
      list-style: none;
      margin-bottom: 24px;
    }
    .token-features li {
      font-size: 0.88rem;
      color: var(--text-sub);
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .btn-token-cta {
      display: block;
      text-align: center;
      padding: 10px 20px;
      border-radius: 99px;
      font-weight: 600;
      font-size: 0.92rem;
      background: var(--primary-soft);
      color: var(--primary-dark);
      border: 1px solid var(--mint-border);
    }
    .token-card.featured .btn-token-cta {
      background: var(--primary-dark);
      color: #ffffff;
      border-color: var(--primary-dark);
    }

    /* Testimonials Grid (6 Reviews) */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-stars {
      color: #f59e0b;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }
    .review-content {
      font-size: 0.92rem;
      color: var(--text-sub);
      line-height: 1.65;
      margin-bottom: 18px;
    }
    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--mint-border-light);
      padding-top: 14px;
    }
    .reviewer-avatar {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      color: var(--primary-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
    }
    .reviewer-name {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--text-main);
    }
    .reviewer-role {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* FAQ Accordion */
    .faq-accordion-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-question {
      padding: 18px 22px;
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .faq-question:hover {
      background: var(--primary-soft);
      color: var(--primary-dark);
    }
    .faq-icon {
      font-size: 1.1rem;
      transition: var(--transition);
      color: var(--primary);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: #fbfdfc;
    }
    .faq-answer-inner {
      padding: 0 22px 18px;
      font-size: 0.92rem;
      color: var(--text-sub);
      line-height: 1.7;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* Form & Contact Section */
    .contact-form-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 36px;
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-sm);
    }
    .contact-info-panel h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 14px;
      color: var(--text-main);
    }
    .contact-info-panel p {
      font-size: 0.95rem;
      color: var(--text-sub);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .contact-detail-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 24px;
    }
    .contact-detail-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--text-sub);
    }
    .contact-icon {
      width: 32px;
      height: 32px;
      background: var(--primary-soft);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-size: 0.9rem;
      font-weight: 700;
    }
    .qr-box-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--mint-bg);
      border: 1px dashed var(--mint-border);
      border-radius: var(--radius-sm);
      padding: 16px;
    }
    .qr-img-box {
      width: 86px;
      height: 86px;
      border-radius: 6px;
      overflow: hidden;
      background: #ffffff;
      flex-shrink: 0;
    }
    .qr-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .qr-meta h5 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .qr-meta p {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }

    /* Main Form */
    .lead-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-main);
    }
    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-sm);
      font-size: 0.92rem;
      color: var(--text-main);
      background: #fbfdfc;
      transition: var(--transition);
      outline: none;
    }
    .form-control:focus {
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .btn-submit-form {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #ffffff;
      border: none;
      padding: 14px;
      border-radius: var(--radius-sm);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
    }
    .btn-submit-form:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    }

    /* Articles & Poster Articles */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .article-item-card {
      background: #ffffff;
      border: 1px solid var(--mint-border-light);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .article-item-card:hover {
      transform: translateY(-3px);
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }
    .article-date-badge {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .article-item-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .article-item-card p {
      font-size: 0.88rem;
      color: var(--text-sub);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .article-read-link {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* Franchise / Agency Partner Banner */
    .franchise-banner {
      background: linear-gradient(135deg, #059669 0%, #065f46 100%);
      color: #ffffff;
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      box-shadow: var(--shadow-lg);
    }
    .franchise-banner-content h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .franchise-banner-content p {
      font-size: 1rem;
      opacity: 0.92;
      max-width: 640px;
      line-height: 1.6;
    }
    .btn-franchise-act {
      background: #ffffff;
      color: var(--primary-dark) !important;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 99px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
      transition: var(--transition);
    }
    .btn-franchise-act:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }

    /* Site Footer */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid var(--mint-border-light);
      padding: 50px 0 30px;
      color: var(--text-sub);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 36px;
      margin-bottom: 40px;
    }
    .footer-col h4 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
    }
    .footer-col p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .footer-links-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-links-list li a {
      font-size: 0.88rem;
      color: var(--text-sub);
    }
    .footer-links-list li a:hover {
      color: var(--primary-dark);
    }
    .footer-friends-bar {
      border-top: 1px solid var(--mint-border-light);
      padding: 20px 0;
      font-size: 0.84rem;
      color: var(--text-muted);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }
    .footer-friends-bar span {
      font-weight: 700;
      color: var(--text-main);
    }
    .footer-friends-bar a {
      color: var(--text-sub);
      margin-right: 8px;
    }
    .footer-friends-bar a:hover {
      color: var(--primary-dark);
    }
    .footer-bottom-bar {
      border-top: 1px solid var(--mint-border-light);
      padding-top: 24px;
      text-align: center;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* Floating Widget */
    .floating-contact-widget {
      position: fixed;
      right: 24px;
      bottom: 30px;
      z-index: 99;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .btn-float-action {
      width: 50px;
      height: 50px;
      background: #ffffff;
      border: 1px solid var(--mint-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition: var(--transition);
      position: relative;
    }
    .btn-float-action:hover {
      background: var(--primary-dark);
      color: #ffffff;
      transform: translateY(-3px);
    }
    .float-qr-pop {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      border: 1px solid var(--mint-border);
      border-radius: var(--radius-sm);
      padding: 12px;
      box-shadow: var(--shadow-lg);
      width: 140px;
      text-align: center;
      display: none;
      z-index: 100;
    }
    .float-qr-pop img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
      margin-bottom: 6px;
    }
    .float-qr-pop span {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--text-sub);
    }
    .btn-float-action:hover .float-qr-pop {
      display: block;
    }

    /* Responsive Queries */
    @media (max-width: 1024px) {
      .services-grid,
      .testimonials-grid,
      .token-grid,
      .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-timeline,
      .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .contact-form-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 18px 24px;
        border-bottom: 1px solid var(--mint-border-light);
        box-shadow: var(--shadow-md);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links li a {
        display: block;
        padding: 10px 0;
      }
      .nav-toggle-btn {
        display: block;
      }
      .hero-title {
        font-size: 2rem;
      }
      .section-title {
        font-size: 1.7rem;
      }
      .services-grid,
      .testimonials-grid,
      .token-grid,
      .articles-grid,
      .media-grid-2col,
      .process-timeline,
      .stats-bar-grid {
        grid-template-columns: 1fr;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .franchise-banner {
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
      }
    }