/* CSS Reset & Global Variables */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    :root {
      --primary-yellow: #FFD000;
      --primary-yellow-hover: #F5B800;
      --yellow-light: #FFF9DB;
      --yellow-border: #FCE588;
      --yellow-glow: rgba(255, 208, 0, 0.4);
      --dark-navy: #0F172A;
      --dark-slate: #1E293B;
      --text-main: #1E293B;
      --text-muted: #64748B;
      --text-light: #94A3B8;
      --bg-page: #FAF9F6;
      --bg-card: #FFFFFF;
      --bg-card-alt: #FFFDF5;
      --border-color: #E2E8F0;
      --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
      --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
      --shadow-yellow: 0 8px 20px rgba(255, 208, 0, 0.3);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 18px;
      --radius-xl: 24px;
      --transition: all 0.28s ease;
    }
    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;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    /* Typography Utilities */
    .section-title-wrap {
      text-align: center;
      margin-bottom: 48px;
    }
    .badge-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--primary-yellow);
      color: var(--dark-navy);
      font-size: 0.85rem;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 12px;
      box-shadow: var(--shadow-sm);
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--dark-navy);
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 720px;
      margin: 0 auto;
    }

    /* Button Styles */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 28px;
      font-size: 1rem;
      font-weight: 700;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-yellow {
      background: linear-gradient(135deg, #FFE600 0%, #FFBE00 100%);
      color: var(--dark-navy);
      box-shadow: var(--shadow-yellow);
    }
    .btn-yellow:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(255, 190, 0, 0.45);
      background: linear-gradient(135deg, #FFF04D 0%, #FFC919 100%);
    }
    .btn-dark {
      background: var(--dark-navy);
      color: #FFFFFF;
    }
    .btn-dark:hover {
      background: var(--dark-slate);
      transform: translateY(-2px);
      color: var(--primary-yellow);
    }
    .btn-outline {
      border-color: var(--dark-navy);
      color: var(--dark-navy);
      background: transparent;
    }
    .btn-outline:hover {
      background: var(--dark-navy);
      color: var(--primary-yellow);
    }

    /* Header & Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--yellow-border);
      box-shadow: var(--shadow-sm);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .ai-page-logo {
      height: 38px;
      width: auto;
      object-fit: contain;
    }
    .brand-title-text {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--dark-navy);
      letter-spacing: -0.5px;
    }
    .brand-title-text span {
      background: var(--primary-yellow);
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 4px;
      font-size: 0.8rem;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0; /* Gap explicitly set to 0 as required */
      list-style: none;
    }
    .nav-links li {
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      display: block;
      padding: 8px 14px;
      color: var(--dark-slate);
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
      transition: var(--transition);
      border-radius: var(--radius-sm);
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--dark-navy);
      background: var(--yellow-light);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--dark-navy);
      padding: 4px 8px;
    }

    /* Section Base */
    section {
      padding: 72px 0;
      position: relative;
    }
    .section-alt {
      background-color: var(--bg-card-alt);
      border-top: 1px solid var(--yellow-border);
      border-bottom: 1px solid var(--yellow-border);
    }

    /* Hero Section (NO IMAGES PER REQUIREMENT) */
    .hero-section {
      padding: 88px 0 72px;
      background: linear-gradient(180deg, #FFFDE8 0%, #FAF9F6 100%);
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--yellow-border);
    }
    .hero-glow-1 {
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 650px;
      height: 380px;
      background: radial-gradient(circle, rgba(255, 208, 0, 0.45) 0%, rgba(255, 208, 0, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 920px;
      margin: 0 auto;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #FFFFFF;
      border: 2px solid var(--primary-yellow);
      padding: 6px 18px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }
    .hero-title {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--dark-navy);
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-title .highlight-yellow {
      background: linear-gradient(180deg, transparent 65%, #FFE500 65%);
      display: inline;
    }
    .hero-lead {
      font-size: 1.15rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
    }
    .hero-features-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 20px;
    }
    .hero-feature-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-top: 3px solid var(--primary-yellow);
      padding: 20px 16px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      text-align: left;
      transition: var(--transition);
    }
    .hero-feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-top-color: var(--dark-navy);
    }
    .hero-card-icon {
      font-size: 1.5rem;
      margin-bottom: 8px;
      display: inline-block;
    }
    .hero-card-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 4px;
    }
    .hero-card-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* Stats Grid */
    .stats-bar {
      background: var(--dark-navy);
      color: #FFFFFF;
      padding: 36px 0;
      border-radius: var(--radius-xl);
      margin-top: -36px;
      position: relative;
      z-index: 2;
      box-shadow: var(--shadow-lg);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }
    .stat-item {
      padding: 0 16px;
      border-right: 1px solid rgba(255, 255, 255, 0.12);
    }
    .stat-item:last-child {
      border-right: none;
    }
    .stat-number {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--primary-yellow);
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.9rem;
      color: #CBD5E1;
      font-weight: 500;
    }

    /* Model Logos Cloud */
    .models-marquee-section {
      padding: 36px 0;
      background: #FFFFFF;
      border-bottom: 1px solid var(--border-color);
    }
    .models-title {
      text-align: center;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .model-tags-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .model-tag {
      background: var(--bg-page);
      border: 1px solid var(--border-color);
      color: var(--dark-slate);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
      transition: var(--transition);
    }
    .model-tag:hover {
      background: var(--primary-yellow);
      color: var(--dark-navy);
      border-color: var(--primary-yellow);
      transform: translateY(-2px);
    }

    /* Cards Grid System */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    /* Service Cards */
    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-yellow);
    }
    .service-badge {
      align-self: flex-start;
      font-size: 0.75rem;
      font-weight: 700;
      background: var(--yellow-light);
      color: var(--dark-navy);
      border: 1px solid var(--yellow-border);
      padding: 3px 8px;
      border-radius: 4px;
      margin-bottom: 12px;
    }
    .service-card-icon {
      width: 48px;
      height: 48px;
      background: var(--primary-yellow);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
      color: var(--dark-navy);
    }
    .service-card-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--dark-navy);
      margin-bottom: 8px;
    }
    .service-card-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
      flex-grow: 1;
      margin-bottom: 16px;
    }
    .service-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
    }
    .tag-item {
      font-size: 0.75rem;
      background: #F1F5F9;
      color: var(--text-muted);
      padding: 2px 8px;
      border-radius: 4px;
    }

    /* Platform Overview Grid */
    .platform-intro-box {
      background: #FFFFFF;
      border: 2px solid var(--yellow-border);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .platform-pill-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    .platform-pill-item {
      background: var(--bg-page);
      border-left: 4px solid var(--primary-yellow);
      padding: 16px;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }
    .platform-pill-title {
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 6px;
      font-size: 1rem;
    }
    .platform-pill-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.45;
    }

    /* Step Process Timeline */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }
    .step-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px 16px;
      text-align: center;
      position: relative;
      transition: var(--transition);
    }
    .step-card:hover {
      border-color: var(--primary-yellow);
      transform: translateY(-4px);
      box-shadow: var(--shadow-sm);
    }
    .step-number {
      width: 40px;
      height: 40px;
      line-height: 40px;
      background: var(--dark-navy);
      color: var(--primary-yellow);
      font-weight: 900;
      border-radius: 50%;
      margin: 0 auto 12px;
      font-size: 1.1rem;
    }
    .step-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 6px;
    }
    .step-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* Comparison Review Table Section */
    .rating-highlight-banner {
      background: linear-gradient(135deg, #FFF9DB 0%, #FFF3B8 100%);
      border: 2px solid var(--primary-yellow);
      border-radius: var(--radius-lg);
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      box-shadow: var(--shadow-sm);
    }
    .rating-score-box {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
    .rating-score-num {
      font-size: 3rem;
      font-weight: 900;
      color: var(--dark-navy);
      line-height: 1;
    }
    .rating-stars {
      color: #D97706;
      font-size: 1.4rem;
      letter-spacing: 2px;
    }
    .rating-text {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark-navy);
    }
    .table-container {
      overflow-x: auto;
      background: #FFFFFF;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 680px;
    }
    .comparison-table th, 
    .comparison-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.95rem;
    }
    .comparison-table th {
      background: #F8FAFC;
      font-weight: 800;
      color: var(--dark-navy);
    }
    .comparison-table th.highlight-col,
    .comparison-table td.highlight-col {
      background: #FFFDF0;
      font-weight: 700;
      color: var(--dark-navy);
      border-left: 2px solid var(--primary-yellow);
      border-right: 2px solid var(--primary-yellow);
    }
    .comparison-table tr:last-child td {
      border-bottom: none;
    }
    .table-tag-yes {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: #059669;
      font-weight: 700;
    }
    .table-tag-no {
      color: #94A3B8;
    }

    /* Media & Cases Showcase */
    .case-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .case-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-yellow);
    }
    .case-img-wrap {
      position: relative;
      overflow: hidden;
      background: #E2E8F0;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .case-img-wrap.aspect-square {
      aspect-ratio: 1 / 1;
    }
    .ai-page-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .case-card:hover .ai-page-image {
      transform: scale(1.03);
    }
    .case-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .case-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 6px;
    }
    .case-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 12px;
      flex-grow: 1;
    }

    /* Token Price Comparison Table */
    .token-table-wrap {
      background: #FFFFFF;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      overflow-x: auto;
      box-shadow: var(--shadow-sm);
    }
    .token-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
    }
    .token-table th, .token-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.9rem;
    }
    .token-table th {
      background: #F8FAFC;
      color: var(--dark-navy);
      font-weight: 700;
    }
    .price-low {
      color: #D97706;
      font-weight: 800;
      font-size: 1rem;
    }
    .price-official {
      text-decoration: line-through;
      color: var(--text-light);
    }

    /* Testimonials / User Reviews */
    .review-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }
    .review-quote {
      font-size: 0.92rem;
      color: var(--text-main);
      line-height: 1.6;
      margin-bottom: 18px;
      position: relative;
    }
    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #F1F5F9;
      padding-top: 14px;
    }
    .review-avatar {
      width: 42px;
      height: 42px;
      background: var(--yellow-light);
      border: 2px solid var(--primary-yellow);
      color: var(--dark-navy);
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
    }
    .review-meta-name {
      font-weight: 700;
      color: var(--dark-navy);
      font-size: 0.95rem;
    }
    .review-meta-role {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* FAQ Accordions */
    .faq-wrapper {
      max-width: 860px;
      margin: 0 auto;
    }
    .faq-item {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item.active {
      border-color: var(--primary-yellow);
      box-shadow: var(--shadow-sm);
    }
    .faq-header {
      width: 100%;
      padding: 18px 24px;
      text-align: left;
      background: none;
      border: none;
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark-navy);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .faq-header:hover {
      background: var(--bg-card-alt);
    }
    .faq-icon {
      font-size: 1.2rem;
      font-weight: 700;
      transition: transform 0.2s ease;
      color: var(--dark-navy);
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-body {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .faq-item.active .faq-body {
      padding: 0 24px 20px 24px;
      max-height: 300px;
    }

    /* Articles & News Section */
    .article-link-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 24px;
    }
    .article-item-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-left: 4px solid var(--primary-yellow);
      border-radius: var(--radius-md);
      padding: 18px;
      text-decoration: none;
      color: var(--text-main);
      display: block;
      transition: var(--transition);
    }
    .article-item-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
      border-left-color: var(--dark-navy);
    }
    .article-item-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 6px;
    }
    .article-item-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* Contact & Form Section */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .contact-info-panel {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }
    .info-icon {
      width: 40px;
      height: 40px;
      background: var(--yellow-light);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--dark-navy);
      flex-shrink: 0;
    }
    .info-text-label {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .info-text-val {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark-navy);
    }
    .qr-block {
      background: var(--bg-page);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px;
      text-align: center;
      max-width: 180px;
      margin-top: 10px;
    }
    .qr-block img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      display: block;
    }
    .qr-desc {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-top: 8px;
    }

    /* Demand Form */
    .form-group {
      margin-bottom: 18px;
    }
    .form-label {
      display: block;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 6px;
    }
    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      background: #FAF9F6;
      transition: var(--transition);
      font-family: inherit;
    }
    .form-control:focus {
      outline: none;
      border-color: var(--primary-yellow);
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.25);
    }
    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }

    /* Franchise / Agency Block */
    .agency-banner-box {
      background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
      color: #FFFFFF;
      border-radius: var(--radius-xl);
      padding: 48px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .agency-banner-inner {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }
    .agency-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-yellow);
      margin-bottom: 14px;
    }
    .agency-desc {
      font-size: 1.05rem;
      color: #E2E8F0;
      line-height: 1.6;
      margin-bottom: 28px;
    }
    .agency-perks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 32px;
    }
    .agency-perk-item {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 208, 0, 0.2);
      border-radius: var(--radius-md);
      padding: 16px;
    }
    .agency-perk-item h4 {
      font-size: 0.95rem;
      color: var(--primary-yellow);
      margin-bottom: 4px;
    }
    .agency-perk-item p {
      font-size: 0.8rem;
      color: #CBD5E1;
      line-height: 1.4;
    }

    /* Friendly Links & Footer */
    .footer-links-section {
      background: #F8FAFC;
      padding: 24px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .links-heading {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark-navy);
      margin-bottom: 12px;
    }
    .friend-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
    .friend-links-wrap a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: var(--transition);
    }
    .friend-links-wrap a:hover {
      color: var(--dark-navy);
      text-decoration: underline;
    }
    
    .site-footer {
      background: var(--dark-navy);
      color: #94A3B8;
      padding: 48px 0 24px;
      font-size: 0.88rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 32px;
      margin-bottom: 36px;
    }
    .footer-col-title {
      font-size: 1rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 16px;
    }
    .footer-menu {
      list-style: none;
    }
    .footer-menu li {
      margin-bottom: 8px;
    }
    .footer-menu a {
      color: #94A3B8;
      text-decoration: none;
      transition: var(--transition);
    }
    .footer-menu a:hover {
      color: var(--primary-yellow);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      text-align: center;
      font-size: 0.82rem;
      color: #64748B;
    }
    .footer-bottom a {
      color: #94A3B8;
      text-decoration: none;
    }

    /* Floating Customer Service Widget */
    .floating-widget {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--dark-navy);
      color: var(--primary-yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      text-decoration: none;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      border: 2px solid var(--primary-yellow);
      transition: var(--transition);
    }
    .float-btn:hover {
      transform: scale(1.1);
      background: var(--primary-yellow);
      color: var(--dark-navy);
    }
    .back-top-btn {
      display: none;
    }

    /* Responsive Media Queries */
    @media (max-width: 1024px) {
      .grid-4, .hero-features-strip, .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3, .platform-pill-list, .agency-perks-grid, .article-link-list {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2rem;
      }
      .section-title {
        font-size: 1.6rem;
      }
      .mobile-menu-btn {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 16px;
        border-bottom: 2px solid var(--yellow-border);
        box-shadow: var(--shadow-md);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links a {
        padding: 12px 16px;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .stat-item {
        border-right: none;
      }
      .grid-3, .grid-4, .grid-2, .hero-features-strip, .steps-grid, .platform-pill-list, .agency-perks-grid, .article-link-list {
        grid-template-columns: 1fr;
      }
      .contact-layout {
        grid-template-columns: 1fr;
        padding: 24px;
      }
      .rating-highlight-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }