/* CSS Variables: Fresh Vivid Green Theme */
    :root {
      --primary-color: #059669;
      --primary-vivid: #10b981;
      --primary-dark: #047857;
      --primary-deep: #064e3b;
      --primary-light: #ecfdf5;
      --primary-tint: #d1fae5;
      --bg-page: #f8fafc;
      --bg-card: #ffffff;
      --text-main: #0f172a;
      --text-muted: #334155;
      --text-soft: #64748b;
      --border-color: #e2e8f0;
      --border-accent: #a7f3d0;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 16px -2px rgba(16, 185, 129, 0.12), 0 2px 6px -1px rgba(0,0,0,0.04);
      --shadow-lg: 0 12px 28px -4px rgba(5, 150, 105, 0.16), 0 4px 12px -2px rgba(0,0,0,0.06);
      --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      --max-width: 1200px;
    }

    /* Reset & Base Setup */
    *, *::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-page);
      color: var(--text-main);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    ul, ol {
      list-style: none;
    }

    /* Strict container unity */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    /* Header & Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

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

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

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

    .brand-name {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--primary-deep);
      letter-spacing: -0.5px;
    }

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

    .nav-links li a {
      display: inline-block;
      padding: 8px 14px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-muted);
      border-radius: 6px;
    }

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

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 22px;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-vivid) 0%, var(--primary-color) 100%);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #059669 0%, #047857 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
      color: #ffffff;
    }

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

    .btn-outline:hover {
      background: var(--primary-light);
      border-color: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn-vivid-cta {
      background: #10b981;
      color: #ffffff !important;
      font-weight: 700;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    }

    .btn-vivid-cta:hover {
      background: #059669;
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.35);
    }

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

    /* Section Global Headers */
    .section-spacing {
      padding: 72px 0;
    }

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

    .section-eyebrow {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 12px;
      background-color: var(--primary-tint);
      color: var(--primary-deep);
      border-radius: 20px;
      margin-bottom: 12px;
    }

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

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

    /* Hero Section (No Image Strictly) */
    .hero-section {
      background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
      padding: 64px 0 72px 0;
      position: relative;
      border-bottom: 1px solid var(--border-color);
      overflow: hidden;
    }

    .hero-inner {
      text-align: center;
      max-width: 960px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #ffffff;
      border: 1px solid var(--border-accent);
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
    }

    .hero-badge .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: var(--primary-vivid);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
    }

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

    .hero-subtitle {
      font-size: 1.2rem;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.7;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 48px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 20px;
    }

    .hero-stat-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-top: 3px solid var(--primary-vivid);
      padding: 20px 16px;
      border-radius: 12px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .hero-stat-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-top-color: var(--primary-color);
    }

    .stat-num {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.88rem;
      color: var(--text-soft);
    }

    .models-ticker-wrap {
      margin-top: 40px;
      padding: 16px 20px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      text-align: left;
    }

    .ticker-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .models-tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag-model {
      display: inline-block;
      font-size: 0.8rem;
      background: var(--primary-light);
      color: var(--primary-deep);
      padding: 3px 10px;
      border-radius: 6px;
      font-weight: 600;
      border: 1px solid var(--border-accent);
    }

    /* Cards Global */
    .card-grid {
      display: grid;
      gap: 24px;
    }

    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 28px;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .feature-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--primary-light);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
      border: 1px solid var(--border-accent);
    }

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

    .feature-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
      flex-grow: 1;
    }

    .feature-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
    }

    .tag-chip {
      font-size: 0.75rem;
      background: #f1f5f9;
      color: #475569;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 500;
    }

    /* Comparison Table Section */
    .eval-highlight-box {
      background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
      border: 2px solid var(--primary-vivid);
      border-radius: 14px;
      padding: 28px;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .eval-score-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .eval-score-num {
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--primary-dark);
      line-height: 1;
    }

    .eval-stars {
      color: #f59e0b;
      font-size: 1.3rem;
      letter-spacing: 2px;
    }

    .eval-score-text {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .eval-badge {
      background: var(--primary-vivid);
      color: #ffffff;
      padding: 8px 18px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .table-container {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      overflow-x: auto;
      box-shadow: var(--shadow-sm);
    }

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

    .eval-table th,
    .eval-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.92rem;
    }

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

    .eval-table th.col-highlight {
      background: var(--primary-light);
      color: var(--primary-deep);
      font-size: 1rem;
    }

    .eval-table td.col-highlight {
      background: rgba(236, 253, 245, 0.45);
      font-weight: 600;
      color: var(--primary-dark);
    }

    .eval-table tr:hover {
      background: #fcfdfd;
    }

    /* Case Gallery Media Section */
    .media-card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 24px;
    }

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

    .media-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .media-img-wrapper {
      position: relative;
      width: 100%;
      background: #e2e8f0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .media-img-wrapper img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .media-card:hover .media-img-wrapper img {
      transform: scale(1.04);
    }

    .media-content {
      padding: 20px;
      flex-grow: 1;
    }

    .media-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }

    .media-desc {
      font-size: 0.88rem;
      color: var(--text-soft);
      line-height: 1.6;
    }

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

    .process-step-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px 20px;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .step-number {
      width: 38px;
      height: 38px;
      background: var(--primary-vivid);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 14px;
    }

    .step-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }

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

    /* Token Price & Plan Cards */
    .pricing-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 32px 24px;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .pricing-card.featured {
      border: 2px solid var(--primary-vivid);
      position: relative;
      transform: scale(1.02);
      box-shadow: var(--shadow-md);
    }

    .pricing-badge-hot {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-vivid);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 12px;
    }

    .pricing-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .pricing-cost {
      font-size: 2.3rem;
      font-weight: 900;
      color: var(--primary-dark);
      margin-bottom: 14px;
    }

    .pricing-cost span {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-soft);
    }

    .pricing-features {
      margin: 20px 0 28px 0;
      text-align: left;
      flex-grow: 1;
    }

    .pricing-features li {
      font-size: 0.88rem;
      color: var(--text-muted);
      padding: 6px 0;
      border-bottom: 1px dashed var(--border-color);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Testimonials (6 Reviews) */
    .testimonial-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--primary-tint);
    }

    .review-stars {
      color: #f59e0b;
      margin-bottom: 12px;
      font-size: 0.9rem;
    }

    .review-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.68;
      margin-bottom: 18px;
      flex-grow: 1;
    }

    .reviewer-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
    }

    .reviewer-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      border: 1px solid var(--border-accent);
    }

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

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

    /* FAQ Accordion (12 FAQs) */
    .faq-wrapper {
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: var(--transition);
    }

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

    .faq-question {
      padding: 18px 22px;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--primary-color);
      transition: transform 0.25s ease;
    }

    .faq-item.active .faq-question::after {
      content: '−';
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #fdfefe;
      color: var(--text-muted);
      font-size: 0.94rem;
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      padding: 0 22px 20px 22px;
      max-height: 300px;
    }

    /* Articles & News Section */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .news-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .news-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-vivid);
    }

    .news-tag {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary-dark);
      background: var(--primary-light);
      padding: 3px 8px;
      border-radius: 4px;
      margin-bottom: 12px;
      display: inline-block;
    }

    .news-title {
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.45;
    }

    .news-summary {
      font-size: 0.88rem;
      color: var(--text-soft);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .news-link {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--primary-color);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .news-link:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }

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

    .contact-info-col h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
    }

    .contact-info-col p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.68;
    }

    .contact-methods {
      margin-bottom: 28px;
    }

    .contact-method-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .contact-icon-bubble {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--primary-light);
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.85rem;
    }

    .qr-container {
      display: inline-block;
      padding: 14px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }

    .qr-container img {
      width: 140px;
      height: 140px;
      object-fit: contain;
      display: block;
      margin-bottom: 8px;
    }

    .qr-label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .form-wrapper {
      background: #fdfdfd;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 28px;
    }

    .form-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--text-main);
    }

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

    .form-label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .form-control {
      width: 100%;
      padding: 11px 14px;
      font-size: 0.92rem;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      background: #ffffff;
      color: var(--text-main);
      outline: none;
      transition: var(--transition);
      font-family: inherit;
    }

    .form-control:focus {
      border-color: var(--primary-vivid);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    }

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

    /* Agent / Partner Section */
    .agent-banner {
      background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
      color: #ffffff;
      border-radius: 16px;
      padding: 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .agent-banner h3 {
      font-size: 2.1rem;
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .agent-banner p {
      font-size: 1.05rem;
      max-width: 760px;
      margin: 0 auto 32px auto;
      opacity: 0.92;
      line-height: 1.7;
    }

    .agent-perks {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 36px;
    }

    .agent-perk-card {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 18px 14px;
      text-align: center;
    }

    .perk-bold {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .perk-sub {
      font-size: 0.8rem;
      opacity: 0.8;
    }

    /* Footer Section */
    .site-footer {
      background: #0f172a;
      color: #94a3b8;
      padding: 56px 0 24px 0;
      border-top: 1px solid #1e293b;
      margin-top: 56px;
    }

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

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

    .footer-col p {
      font-size: 0.88rem;
      line-height: 1.68;
      margin-bottom: 14px;
    }

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

    .footer-links-list li a {
      color: #94a3b8;
      font-size: 0.88rem;
    }

    .footer-links-list li a:hover {
      color: var(--primary-vivid);
      padding-left: 4px;
    }

    .friend-links-box {
      border-top: 1px solid #1e293b;
      padding-top: 24px;
      margin-bottom: 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      font-size: 0.85rem;
    }

    .friend-links-box span {
      color: #cbd5e1;
      font-weight: 600;
    }

    .friend-links-box a {
      color: #94a3b8;
      padding: 2px 8px;
      background: #1e293b;
      border-radius: 4px;
    }

    .friend-links-box a:hover {
      color: #ffffff;
      background: var(--primary-color);
    }

    .footer-bottom-bar {
      border-top: 1px solid #1e293b;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.84rem;
    }

    /* Floating Customer Service & BackToTop */
    .float-widget-wrap {
      position: fixed;
      right: 20px;
      bottom: 28px;
      z-index: 990;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--primary-color);
      font-size: 1.2rem;
      transition: var(--transition);
    }

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

    .float-qr-modal {
      display: none;
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 14px;
      box-shadow: var(--shadow-lg);
      text-align: center;
      width: 170px;
    }

    .float-qr-modal img {
      width: 140px;
      height: 140px;
      display: block;
      margin: 0 auto 6px auto;
    }

    .float-widget-wrap:hover .float-qr-modal {
      display: block;
    }

    /* Responsive Queries */
    @media (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .process-timeline { grid-template-columns: repeat(2, 1fr); }
      .media-card-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
      .agent-perks { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .grid-3 { grid-template-columns: 1fr; }
      .grid-2 { grid-template-columns: 1fr; }
      .grid-4 { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .media-card-grid { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; padding: 24px; }
      .menu-toggle { display: block; }

      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 18px 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
      }

      .nav-links.show {
        display: flex;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
      }

      .hero-h1 {
        font-size: 2rem;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .process-timeline {
        grid-template-columns: 1fr;
      }

      .eval-highlight-box {
        flex-direction: column;
        align-items: flex-start;
      }

      .agent-banner {
        padding: 30px 20px;
      }

      .agent-perks {
        grid-template-columns: 1fr;
      }

      .footer-top-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }