/* CSS Base & Universal Reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
      background-color: #FFFBF8;
      color: #1E293B;
      line-height: 1.6;
    }

    body {
      overflow-x: hidden;
      background: #FFFBF8;
    }

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

    /* Color Palette - Vibrant Orange Enterprise Theme */
    :root {
      --primary: #FF5500;
      --primary-hover: #E04800;
      --primary-light: #FFF0E6;
      --primary-gradient: linear-gradient(135deg, #FF6B00 0%, #FF2A00 100%);
      --dark-title: #0F172A;
      --text-main: #334155;
      --text-muted: #64748B;
      --card-bg: #FFFFFF;
      --border-color: #FED7AA;
      --shadow-sm: 0 2px 8px rgba(255, 85, 0, 0.06);
      --shadow-md: 0 8px 24px rgba(255, 85, 0, 0.1);
      --shadow-lg: 0 16px 32px rgba(255, 85, 0, 0.14);
    }

    /* Standard Elements */
    a {
      color: var(--primary);
      text-decoration: none;
      transition: all 0.2s ease;
    }
    a:hover {
      color: var(--primary-hover);
    }

    ul, ol {
      list-style: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
      text-align: center;
    }

    .btn-primary {
      background: var(--primary-gradient);
      color: #FFFFFF !important;
      box-shadow: 0 4px 14px rgba(255, 85, 0, 0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 85, 0, 0.45);
    }

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

    .section-padding {
      padding: 80px 0;
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
    }
    .section-tag {
      display: inline-block;
      padding: 4px 14px;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      border-radius: 20px;
      margin-bottom: 12px;
      border: 1px solid rgba(255, 85, 0, 0.2);
    }
    .section-title {
      font-size: 32px;
      color: var(--dark-title);
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .section-desc {
      font-size: 16px;
      color: var(--text-muted);
    }

    /* Top Navigation Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #FFE4D6;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .logo-box {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-box img {
      max-height: 42px;
      width: auto;
    }
    
    /* Strict Requirement: .nav-links gap must be 0 */
    .nav-links {
      gap: 0;
      display: flex;
      align-items: center;
      list-style: none;
    }
    .nav-links li {
      display: inline-block;
    }
    .nav-links a {
      padding: 10px 14px;
      font-size: 15px;
      font-weight: 500;
      color: var(--dark-title);
      transition: color 0.2s ease;
    }
    .nav-links a:hover {
      color: var(--primary);
    }

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

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--dark-title);
      cursor: pointer;
    }

    /* Section 1: Hero 首屏 - NO IMAGES ALLOWED HERE */
    .hero-section {
      background: linear-gradient(180deg, #FFF0E6 0%, #FFFBF8 100%);
      padding: 90px 0 70px 0;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid #FFE4D6;
    }
    .hero-content {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      background: #FFFFFF;
      border: 1px solid #FFC7AA;
      border-radius: 30px;
      font-size: 14px;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 24px;
      box-shadow: 0 2px 8px rgba(255, 85, 0, 0.08);
    }
    .hero-title {
      font-size: 40px;
      font-weight: 800;
      color: var(--dark-title);
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }
    .hero-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .hero-highlights {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 50px;
    }
    .hero-card {
      background: #FFFFFF;
      padding: 20px;
      border-radius: 12px;
      border: 1px solid #FFE4D6;
      text-align: left;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease;
    }
    .hero-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .hero-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-card-title::before {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }
    .hero-card-desc {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Data Metrics Indicators */
    .metrics-section {
      background: #FFFFFF;
      padding: 40px 0;
      border-bottom: 1px solid #F1F5F9;
    }
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }
    .metric-number {
      font-size: 36px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
    }
    .metric-label {
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* Section 2: 关于我们 & 平台介绍 */
    .about-section {
      background: #FFFFFF;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .about-text h3 {
      font-size: 26px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 16px;
    }
    .about-text p {
      color: var(--text-main);
      margin-bottom: 16px;
      font-size: 15px;
    }
    .about-feature-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 20px;
    }
    .about-feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark-title);
    }
    .about-feature-item::before {
      content: "✓";
      color: var(--primary);
      font-weight: 800;
    }

    /* Section 3: AIGC服务 & 支持模型 */
    .services-section {
      background: #FFF8F5;
    }
    .models-cloud {
      background: #FFFFFF;
      padding: 24px;
      border-radius: 16px;
      border: 1px solid #FFE4D6;
      margin-bottom: 40px;
      box-shadow: var(--shadow-sm);
    }
    .models-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 16px;
      text-align: center;
    }
    .models-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .model-tag {
      padding: 6px 14px;
      background: #FFF0E6;
      color: var(--dark-title);
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      border: 1px solid #FFD8C2;
      transition: all 0.2s;
    }
    .model-tag:hover {
      background: var(--primary);
      color: #FFFFFF;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: #FFFFFF;
      border-radius: 12px;
      padding: 28px;
      border: 1px solid #FFE4D6;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .service-card h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Section 4: 一站式制作场景 */
    .scenes-section {
      background: #FFFFFF;
    }
    .scenes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .scene-box {
      background: #FFFBF8;
      border: 1px solid #FFE8DC;
      border-radius: 12px;
      padding: 20px;
      transition: all 0.3s ease;
    }
    .scene-box:hover {
      background: #FFFFFF;
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .scene-tag {
      font-size: 12px;
      color: var(--primary);
      background: #FFF0E6;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 8px;
    }
    .scene-box h5 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 8px;
    }
    .scene-box p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Section 5: 行业方案 */
    .solutions-section {
      background: #FFF8F5;
    }
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .solution-item {
      background: #FFFFFF;
      padding: 30px;
      border-radius: 12px;
      border: 1px solid #FFE4D6;
      box-shadow: var(--shadow-sm);
    }
    .solution-item h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 12px;
    }
    .solution-item p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .solution-benefits {
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
    }

    /* Section 6: 服务网络 */
    .network-section {
      background: #FFFFFF;
      text-align: center;
    }
    .network-map-box {
      background: linear-gradient(135deg, #FFF0E6 0%, #FFE4D6 100%);
      border-radius: 16px;
      padding: 40px;
      border: 1px solid #FFD4BD;
    }
    .network-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 24px;
    }
    .city-chip {
      background: #FFFFFF;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark-title);
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    /* Section 7: 标准流程 */
    .process-section {
      background: #FFF8F5;
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }
    .step-card {
      background: #FFFFFF;
      padding: 24px 16px;
      border-radius: 12px;
      border: 1px solid #FFE4D6;
      text-align: center;
      position: relative;
    }
    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--primary-gradient);
      color: #FFFFFF;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px auto;
      font-size: 16px;
    }
    .step-card h5 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 8px;
    }
    .step-card p {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Section 8: 案例中心 */
    .cases-section {
      background: #FFFFFF;
    }
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .case-card {
      border: 1px solid #FFE4D6;
      border-radius: 12px;
      overflow: hidden;
      background: #FFFFFF;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease;
    }
    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .case-img-wrap {
      width: 100%;
      overflow: hidden;
      background: #FFF0E6;
    }
    .case-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    .case-card:hover .case-img-wrap img {
      transform: scale(1.03);
    }
    .case-info {
      padding: 20px;
    }
    .case-category {
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .case-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 8px;
    }
    .case-info p {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Section 9: 对比评测 - Strict Requirements Included */
    .compare-section {
      background: #FFF8F5;
    }
    .rating-banner {
      background: linear-gradient(135deg, #FF6B00 0%, #FF2A00 100%);
      color: #FFFFFF;
      border-radius: 16px;
      padding: 30px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      box-shadow: 0 10px 30px rgba(255, 85, 0, 0.25);
    }
    .rating-score {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }
    .score-num {
      font-size: 48px;
      font-weight: 900;
      line-height: 1;
    }
    .score-max {
      font-size: 20px;
      opacity: 0.9;
    }
    .stars-text {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 2px;
    }
    .compare-table-wrapper {
      overflow-x: auto;
      background: #FFFFFF;
      border-radius: 12px;
      border: 1px solid #FFE4D6;
      box-shadow: var(--shadow-sm);
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 700px;
    }
    .compare-table th, .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #FFE8DC;
      font-size: 14px;
    }
    .compare-table th {
      background: #FFF0E6;
      color: var(--dark-title);
      font-weight: 700;
    }
    .compare-table td.highlight {
      background: #FFFBF8;
      font-weight: 700;
      color: var(--primary);
    }

    /* Section 10: 需求匹配 */
    .match-section {
      background: #FFFFFF;
    }
    .match-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .match-card {
      border: 2px dashed #FFD4BD;
      border-radius: 12px;
      padding: 24px;
      background: #FFFBF8;
      text-align: center;
    }
    .match-card h5 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 10px;
    }
    .match-card p {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    /* Section 11: Token 比价 */
    .token-section {
      background: #FFF8F5;
    }
    .token-table-wrap {
      background: #FFFFFF;
      border-radius: 12px;
      border: 1px solid #FFE4D6;
      overflow-x: auto;
    }
    .token-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 650px;
    }
    .token-table th, .token-table td {
      padding: 14px 20px;
      border-bottom: 1px solid #FFE8DC;
      font-size: 14px;
    }
    .token-table th {
      background: #FFF0E6;
      color: var(--dark-title);
      font-weight: 700;
    }
    .badge-cheap {
      background: #E6F4EA;
      color: #137333;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
    }

    /* Section 12: 帮助中心 & AI百科 */
    .help-section {
      background: #FFFFFF;
    }
    .help-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .help-box {
      background: #FFFBF8;
      border: 1px solid #FFE4D6;
      border-radius: 12px;
      padding: 28px;
    }
    .help-box h4 {
      font-size: 20px;
      font-weight: 700;
      color: var(--dark-title);
      margin-bottom: 16px;
      border-bottom: 2px solid var(--primary-light);
      padding-bottom: 10px;
    }
    .help-list li {
      margin-bottom: 12px;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Section 13: FAQ 常见问题 (>=10 items) */
    .faq-section {
      background: #FFF8F5;
    }
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: #FFFFFF;
      border: 1px solid #FFE4D6;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      padding: 18px 24px;
      font-size: 16px;
      font-weight: 700;
      color: var(--dark-title);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
      transition: background 0.2s;
    }
    .faq-question:hover {
      background: #FFF0E6;
    }
    .faq-icon {
      font-size: 20px;
      color: var(--primary);
      transition: transform 0.3s;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #FFFFFF;
      color: var(--text-main);
      font-size: 14px;
      line-height: 1.7;
    }
    .faq-item.active .faq-answer {
      max-height: 250px;
      padding: 0 24px 20px 24px;
      border-top: 1px dashed #FFE8DC;
    }

    /* Section 14: 用户评论 (6 条) */
    .reviews-section {
      background: #FFFFFF;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: #FFFBF8;
      border: 1px solid #FFE4D6;
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }
    .review-stars {
      color: #FF9900;
      font-size: 16px;
      margin-bottom: 12px;
    }
    .review-content {
      font-size: 14px;
      color: var(--text-main);
      margin-bottom: 16px;
      line-height: 1.6;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary-gradient);
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
    }
    .author-info h6 {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark-title);
    }
    .author-info span {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Section 15: 行业资讯 / 最新文章 */
    .articles-section {
      background: #FFF8F5;
    }
    .articles-list-box {
      background: #FFFFFF;
      border-radius: 12px;
      border: 1px solid #FFE4D6;
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }
    .article-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid #FFE8DC;
    }
    .article-item:last-child {
      border-bottom: none;
    }
    .article-link {
      font-size: 15px;
      font-weight: 600;
      color: var(--dark-title);
    }
    .article-link:hover {
      color: var(--primary);
    }
    .article-date {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Section 16: 联系我们 & 表单 */
    .contact-section {
      background: #FFFFFF;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .contact-info-box {
      background: #FFFBF8;
      border: 1px solid #FFE4D6;
      border-radius: 16px;
      padding: 32px;
    }
    .contact-detail {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 20px;
    }
    .contact-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
    }
    .contact-detail-item strong {
      color: var(--dark-title);
      min-width: 90px;
    }
    .qr-box {
      margin-top: 20px;
      text-align: center;
      background: #FFFFFF;
      padding: 16px;
      border-radius: 12px;
      border: 1px solid #FFE4D6;
      display: inline-block;
    }
    .qr-box img {
      max-width: 140px;
      height: auto;
      border-radius: 6px;
    }
    .qr-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .form-box {
      background: #FFFFFF;
      border: 1px solid #FFE4D6;
      border-radius: 16px;
      padding: 32px;
      box-shadow: var(--shadow-sm);
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark-title);
      margin-bottom: 8px;
    }
    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #CBD5E1;
      border-radius: 8px;
      font-size: 14px;
      color: var(--dark-title);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-control:focus {
      border-color: var(--primary);
    }
    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }

    /* Section 17: 加盟代理 */
    .agency-section {
      background: linear-gradient(135deg, #FFF0E6 0%, #FFE4D6 100%);
      border-top: 1px solid #FFD4BD;
      border-bottom: 1px solid #FFD4BD;
    }
    .agency-card {
      background: #FFFFFF;
      border-radius: 16px;
      padding: 40px;
      border: 1px solid #FFC7AA;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
    }
    .agency-card h3 {
      font-size: 28px;
      font-weight: 800;
      color: var(--dark-title);
      margin-bottom: 12px;
    }
    .agency-card p {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    /* Footer & Friend Links */
    .site-footer {
      background: #0F172A;
      color: #94A3B8;
      padding: 60px 0 30px 0;
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col h5 {
      color: #FFFFFF;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #94A3B8;
    }
    .footer-links a:hover {
      color: #FFFFFF;
    }
    .friend-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 10px;
    }
    .friend-links a {
      color: #94A3B8;
      background: rgba(255,255,255,0.05);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
    }
    .friend-links a:hover {
      color: #FFFFFF;
      background: var(--primary);
    }
    .footer-bottom {
      border-top: 1px solid #1E293B;
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* Floating Widget */
    .float-widget {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary-gradient);
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(255, 85, 0, 0.4);
      cursor: pointer;
      font-size: 20px;
      border: none;
      transition: transform 0.2s;
    }
    .float-btn:hover {
      transform: scale(1.1);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-highlights, .metrics-grid, .services-grid, .scenes-grid, .solutions-grid, .cases-grid, .reviews-grid, .match-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-steps {
        grid-template-columns: repeat(3, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .about-grid, .contact-grid, .help-grid {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid #FFE4D6;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-toggle {
        display: block;
      }
      .hero-highlights, .metrics-grid, .services-grid, .scenes-grid, .solutions-grid, .cases-grid, .reviews-grid, .match-grid, .process-steps {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .rating-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
      .hero-title {
        font-size: 26px;
      }
    }