:root {
      --primary: #F59E0B;
      --primary-bright: #FBBF24;
      --primary-glory: #FFD21E;
      --primary-soft: #FFFBEB;
      --primary-light: #FEF3C7;
      --accent-dark: #78350F;
      --dark-title: #1E293B;
      --dark-body: #334155;
      --dark-muted: #64748B;
      --bg-page: #FFFDF9;
      --bg-card: #FFFFFF;
      --border-color: #FDE68A;
      --shadow-sm: 0 2px 4px rgba(245, 158, 11, 0.08);
      --shadow-md: 0 6px 18px rgba(217, 119, 6, 0.12);
      --shadow-lg: 0 12px 30px rgba(180, 83, 9, 0.14);
      --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-page);
      color: var(--dark-body);
      line-height: 1.68;
      font-size: 15px;
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 10% 20%, rgba(254, 240, 138, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(253, 230, 138, 0.2) 0%, transparent 45%);
      background-attachment: fixed;
    }

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

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

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

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 253, 245, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--primary-glory);
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.08);
    }

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

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

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

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark-title);
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .brand-tag {
      font-size: 11px;
      color: var(--accent-dark);
      background: var(--primary-light);
      padding: 1px 6px;
      border-radius: 4px;
      font-weight: 600;
      margin-top: 2px;
    }

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

    .nav-links li a {
      font-weight: 600;
      font-size: 14px;
      color: var(--dark-title);
      padding: 8px 11px;
      border-radius: 6px;
      display: inline-block;
      white-space: nowrap;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      color: #000;
      background: var(--primary-glory);
    }

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

    .btn-top-portal {
      background: linear-gradient(135deg, #FACC15 0%, #F59E0B 100%);
      color: #1E293B;
      font-weight: 700;
      padding: 9px 18px;
      border-radius: 30px;
      box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
      font-size: 14px;
      border: 1px solid #FBBF24;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-top-portal:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 14px rgba(245, 158, 11, 0.4);
      background: linear-gradient(135deg, #FDE047 0%, #D97706 100%);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    /* 区域公共样式 */
    .section-block {
      padding: 68px 0;
      position: relative;
    }

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

    .section-badge {
      display: inline-block;
      background: var(--primary-glory);
      color: #3b2800;
      font-size: 12px;
      font-weight: 800;
      padding: 4px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-bottom: 12px;
      box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--dark-title);
      margin-bottom: 14px;
      line-height: 1.35;
    }

    .section-desc {
      font-size: 16px;
      color: var(--dark-muted);
      line-height: 1.6;
    }

    /* 首屏 Hero（无图片） */
    .hero-section {
      padding: 80px 0 65px;
      background: linear-gradient(180deg, #FEF9C3 0%, #FFFDF5 100%);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }

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

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: #EAB308;
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(0.95); opacity: 0.8; }
      50% { transform: scale(1.3); opacity: 1; }
      100% { transform: scale(0.95); opacity: 0.8; }
    }

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

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

    .hero-highlight {
      background: linear-gradient(180deg, transparent 65%, #FACC15 65%);
      padding: 0 4px;
      color: #000;
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--dark-body);
      max-width: 800px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    .hero-cta-group {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
      color: #111827;
      font-size: 18px;
      font-weight: 800;
      padding: 16px 38px;
      border-radius: 40px;
      box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 2px solid #FDE047;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 28px rgba(217, 119, 6, 0.45);
      background: linear-gradient(135deg, #FDE047 0%, #B45309 100%);
    }

    .btn-hero-secondary {
      background: #FFFFFF;
      color: var(--dark-title);
      font-size: 16px;
      font-weight: 700;
      padding: 15px 32px;
      border-radius: 40px;
      border: 2px solid #E2E8F0;
      box-shadow: var(--shadow-sm);
    }

    .btn-hero-secondary:hover {
      background: var(--primary-soft);
      border-color: var(--primary-bright);
      color: #000;
    }

    /* 纯CSS首屏科技感数据卡片 */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 15px;
    }

    .stat-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      padding: 22px 16px;
      border-radius: 16px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .stat-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #FACC15, #D97706);
    }

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

    .stat-num {
      font-size: 32px;
      font-weight: 900;
      color: #B45309;
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark-muted);
    }

    /* 模型矩阵徽章条 */
    .models-marquee-wrap {
      background: #FFFBEB;
      border-top: 1px dashed var(--border-color);
      border-bottom: 1px dashed var(--border-color);
      padding: 14px 0;
      overflow: hidden;
    }

    .model-tags-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .model-tag {
      background: #FFFFFF;
      border: 1px solid #FDE68A;
      padding: 4px 12px;
      border-radius: 14px;
      font-size: 12px;
      font-weight: 700;
      color: #78350F;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .model-tag::before {
      content: "✦";
      color: #F59E0B;
      font-size: 10px;
    }

    /* 卡片网格通用布局 */
    .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: 28px;
    }

    /* 平台核心服务卡片 */
    .service-card {
      background: var(--bg-card);
      border: 1px solid #FEF08A;
      border-radius: 18px;
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
    }

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

    .service-icon-box {
      width: 50px;
      height: 50px;
      background: #FEF3C7;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px;
      color: #B45309;
    }

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

    .service-desc {
      font-size: 14px;
      color: var(--dark-body);
      line-height: 1.65;
    }

    /* 场景矩阵卡片 */
    .scene-card {
      background: #FFFFFF;
      border: 1px solid #FDE68A;
      border-radius: 14px;
      padding: 22px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .scene-card:hover {
      background: #FFFDF5;
      border-color: #F59E0B;
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }

    .scene-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .scene-title {
      font-size: 17px;
      font-weight: 800;
      color: #1E293B;
    }

    .scene-pill {
      font-size: 11px;
      background: #FEF3C7;
      color: #92400E;
      padding: 2px 8px;
      border-radius: 10px;
      font-weight: 700;
    }

    .scene-text {
      font-size: 13.5px;
      color: #475569;
      line-height: 1.6;
    }

    /* 评测与对比板块 */
    .evaluation-box {
      background: #FFFFFF;
      border: 2px solid var(--primary-bright);
      border-radius: 20px;
      padding: 36px;
      box-shadow: var(--shadow-md);
    }

    .eval-score-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #FFFBEB;
      padding: 24px;
      border-radius: 14px;
      border: 1px solid var(--border-color);
      margin-bottom: 30px;
      flex-wrap: wrap;
      gap: 18px;
    }

    .score-badge-area {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .score-circle {
      width: 72px;
      height: 72px;
      background: #F59E0B;
      color: #FFFFFF;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
    }

    .score-circle .val {
      font-size: 24px;
      line-height: 1;
    }

    .score-circle .max {
      font-size: 10px;
      opacity: 0.9;
    }

    .score-text-area h4 {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark-title);
      margin-bottom: 4px;
    }

    .stars-render {
      color: #F59E0B;
      font-size: 18px;
      letter-spacing: 2px;
    }

    .eval-table-container {
      overflow-x: auto;
      margin-top: 15px;
    }

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

    .eval-table th {
      background: #FEF3C7;
      color: #78350F;
      padding: 16px;
      font-weight: 800;
      border-bottom: 2px solid #FDE68A;
    }

    .eval-table td {
      padding: 16px;
      border-bottom: 1px solid #F3F4F6;
      font-size: 14px;
    }

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

    .eval-highlight {
      font-weight: 800;
      color: #B45309;
      background: #FEF9C3;
      padding: 3px 8px;
      border-radius: 6px;
      display: inline-block;
    }

    /* 案例展示画廊 */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 24px;
    }

    .gallery-item {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .gallery-caption {
      padding: 18px;
    }

    .gallery-caption h4 {
      font-size: 16px;
      font-weight: 800;
      color: var(--dark-title);
      margin-bottom: 6px;
    }

    .gallery-caption p {
      font-size: 13px;
      color: var(--dark-muted);
    }

    .gallery-sub-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .sub-item {
      background: #FFF;
      border: 1px solid #FEF08A;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .sub-caption {
      padding: 10px;
      font-size: 12px;
      text-align: center;
      font-weight: 700;
      color: var(--dark-title);
    }

    /* 流程步骤 */
    .steps-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .step-box {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .step-badge {
      width: 44px;
      height: 44px;
      background: #FACC15;
      color: #000;
      font-weight: 900;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 16px;
    }

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

    .step-desc {
      font-size: 13px;
      color: var(--dark-muted);
      line-height: 1.5;
    }

    /* 真实用户评价 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .review-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-user-info {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 18px;
      border-top: 1px solid #FEF3C7;
      padding-top: 14px;
    }

    .user-avatar-initial {
      width: 44px;
      height: 44px;
      background: #FBBF24;
      color: #1E293B;
      font-weight: 900;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .user-details h5 {
      font-size: 15px;
      font-weight: 800;
      color: var(--dark-title);
    }

    .user-details span {
      font-size: 12px;
      color: var(--dark-muted);
    }

    .review-quote {
      font-size: 14px;
      color: #334155;
      line-height: 1.65;
      position: relative;
    }

    /* FAQ 手风琴 */
    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

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

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

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

    .faq-toggle-icon {
      font-size: 18px;
      color: #B45309;
      transition: transform 0.25s ease;
    }

    .faq-answer {
      padding: 0 22px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 14px;
      color: var(--dark-body);
      background: #FFFFFF;
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      padding: 16px 22px 20px;
      max-height: 300px;
      border-top: 1px solid #FEF9C3;
    }

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

    /* 表单与需求匹配 */
    .form-container-card {
      background: #FFFFFF;
      border: 2px solid var(--primary-bright);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow-md);
      max-width: 860px;
      margin: 0 auto;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }

    .form-label {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark-title);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #CBD5E1;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      transition: var(--transition);
      background: #FAFAFA;
    }

    .form-control:focus {
      border-color: #F59E0B;
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    }

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

    .btn-submit-form {
      background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
      color: #111827;
      font-size: 16px;
      font-weight: 800;
      padding: 14px 36px;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      width: 100%;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
      transition: var(--transition);
    }

    .btn-submit-form:hover {
      background: linear-gradient(135deg, #FDE047 0%, #B45309 100%);
      transform: translateY(-2px);
    }

    /* 资讯与百科文章 */
    .article-links-box {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }

    .article-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .article-link-list li a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: #FFFDF7;
      border: 1px solid #FEF3C7;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark-title);
    }

    .article-link-list li a:hover {
      background: #FEF9C3;
      border-color: var(--primary);
      padding-left: 18px;
    }

    /* 商务合作与社群 */
    .contact-card-box {
      background: #FFFBEB;
      border: 2px solid var(--border-color);
      border-radius: 18px;
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 24px;
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 15px;
    }

    .contact-info-list span {
      font-weight: 700;
      color: var(--dark-title);
    }

    .qr-container {
      text-align: center;
      background: #FFFFFF;
      padding: 16px;
      border-radius: 14px;
      box-shadow: var(--shadow-sm);
      border: 1px solid #FDE68A;
    }

    .qr-container img {
      width: 140px;
      height: 140px;
      object-fit: contain;
      margin: 0 auto 8px;
    }

    .qr-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--accent-dark);
    }

    /* 友情链接与页脚 */
    .site-footer {
      background: #1E293B;
      color: #94A3B8;
      padding: 50px 0 25px;
      border-top: 4px solid #F59E0B;
    }

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

    .footer-about h4,
    .footer-col h4 {
      color: #F8FAFC;
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: #CBD5E1;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #FBBF24;
    }

    .friendly-links-wrap {
      border-top: 1px solid #334155;
      padding-top: 24px;
      margin-bottom: 24px;
    }

    .friendly-title {
      font-size: 13px;
      font-weight: 700;
      color: #FDE047;
      margin-bottom: 12px;
    }

    .friendly-links-list {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .friendly-links-list a {
      color: #94A3B8;
      font-size: 13px;
    }

    .friendly-links-list a:hover {
      color: #FBBF24;
      text-decoration: underline;
    }

    .copyright-area {
      border-top: 1px solid #334155;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      color: #64748B;
    }

    /* 浮动客服入口 */
    .floating-contact-panel {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .floating-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #F59E0B;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
      cursor: pointer;
      font-weight: 800;
      font-size: 14px;
      border: 2px solid #FEF08A;
      transition: var(--transition);
    }

    .floating-btn:hover {
      transform: scale(1.08);
      background: #FBBF24;
    }

    /* 响应式调整 */
    @media (max-width: 1024px) {
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
      .steps-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .gallery-sub-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #FFFDF5;
        border-bottom: 2px solid var(--primary-glory);
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
      }
      .nav-links.mobile-active li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #FEF3C7;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-subtitle {
        font-size: 15px;
      }
      .grid-2, .grid-3, .grid-4, .gallery-grid, .reviews-grid {
        grid-template-columns: 1fr;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .steps-container {
        grid-template-columns: 1fr;
      }
      .contact-card-box {
        flex-direction: column;
        text-align: center;
      }
      .eval-score-header {
        flex-direction: column;
        text-align: center;
      }
      .score-badge-area {
        flex-direction: column;
      }
    }