:root {
      --primary-cyan: #0fa49f;
      --primary-teal: #087f7b;
      --accent-mint: #2ad1b8;
      --deep-slate: #132b31;
      --text-main: #1c3238;
      --text-muted: #536c74;
      --bg-page: #f4faf9;
      --bg-surface: #ffffff;
      --bg-soft: #eaf5f4;
      --border-cyan: #cde7e4;
      --shadow-sm: 0 4px 12px rgba(15, 164, 159, 0.08);
      --shadow-md: 0 10px 24px rgba(15, 164, 159, 0.12);
      --shadow-hover: 0 16px 36px rgba(15, 164, 159, 0.18);
      --radius-md: 10px;
      --radius-lg: 16px;
      --transition-base: all 0.28s ease;
    }

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

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

    body {
      background: radial-gradient(circle at 10% 10%, #eefbf9 0%, var(--bg-page) 60%, #e9f4f3 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      overflow-x: hidden;
    }

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

    a {
      text-decoration: none;
      color: var(--primary-teal);
      transition: var(--transition-base);
    }
    a:hover {
      color: var(--primary-cyan);
    }

    .site-header {
      width: 100%;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--border-cyan);
    }

    .header-inner {
      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-text {
      font-size: 20px;
      font-weight: 700;
      color: var(--deep-slate);
      letter-spacing: -0.5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-links li a {
      padding: 8px 11px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-main);
      border-radius: 6px;
      white-space: nowrap;
    }
    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--primary-teal);
      background: var(--bg-soft);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: var(--radius-md);
      cursor: pointer;
      border: 1px solid transparent;
      transition: var(--transition-base);
      line-height: 1.2;
      text-align: center;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
      color: #ffffff !important;
      box-shadow: 0 4px 14px rgba(15, 164, 159, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(15, 164, 159, 0.4);
    }
    .btn-outline {
      border-color: var(--primary-cyan);
      color: var(--primary-teal) !important;
      background: #ffffff;
    }
    .btn-outline:hover {
      background: var(--bg-soft);
      transform: translateY(-2px);
    }
    .btn-large {
      padding: 14px 32px;
      font-size: 16px;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--deep-slate);
      cursor: pointer;
      padding: 6px;
    }

    main {
      width: 100%;
    }

    .section {
      padding: 70px 0;
      width: 100%;
      border-bottom: 1px solid rgba(205, 231, 228, 0.5);
    }

    .section-title-wrap {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 46px;
    }
    .section-badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--primary-teal);
      background: var(--bg-soft);
      border: 1px solid var(--border-cyan);
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .section-title {
      font-size: 30px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .hero-section {
      padding: 80px 0 60px;
      position: relative;
      background: linear-gradient(180deg, rgba(234, 245, 244, 0.8) 0%, rgba(244, 250, 249, 0) 100%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 36px;
      align-items: center;
    }
    .hero-badge-live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      padding: 6px 14px;
      border-radius: 24px;
      font-size: 13px;
      font-weight: 500;
      color: var(--primary-teal);
      margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
    }
    .status-dot {
      width: 8px;
      height: 8px;
      background-color: var(--accent-mint);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(42, 209, 184, 0.2);
    }
    .hero-title {
      font-size: 36px;
      line-height: 1.25;
      font-weight: 800;
      color: var(--deep-slate);
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }
    .hero-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 30px;
      line-height: 1.8;
    }
    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 36px;
    }

    .hero-metrics-pill {
      display: flex;
      align-items: center;
      gap: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--border-cyan);
    }
    .metric-item-small {
      display: flex;
      flex-direction: column;
    }
    .metric-val {
      font-size: 20px;
      font-weight: 700;
      color: var(--deep-slate);
    }
    .metric-lbl {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-glass-card {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-md);
      position: relative;
    }
    .hero-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--bg-soft);
    }
    .hero-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--deep-slate);
    }
    .model-tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }
    .model-chip {
      background: var(--bg-soft);
      border: 1px solid var(--border-cyan);
      color: var(--deep-slate);
      font-size: 12px;
      padding: 5px 10px;
      border-radius: 6px;
      font-weight: 500;
      transition: var(--transition-base);
    }
    .model-chip:hover {
      background: var(--primary-cyan);
      color: #ffffff;
      border-color: var(--primary-cyan);
    }
    .hero-console-box {
      background: #f8fcfa;
      border: 1px dashed var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 16px;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .about-card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .about-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-base);
    }
    .about-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .about-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(15, 164, 159, 0.15) 0%, rgba(42, 209, 184, 0.25) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--primary-teal);
      margin-bottom: 16px;
      font-weight: bold;
    }
    .about-item h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--deep-slate);
    }
    .about-item p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .service-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition-base);
    }
    .service-card:hover {
      border-color: var(--primary-cyan);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }
    .service-card-top h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .badge-tag {
      font-size: 11px;
      background: var(--bg-soft);
      color: var(--primary-teal);
      padding: 2px 8px;
      border-radius: 4px;
      border: 1px solid var(--border-cyan);
    }
    .service-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .service-card-bottom {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-teal);
      border-top: 1px solid var(--bg-soft);
      padding-top: 10px;
    }

    .workflow-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .step-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }
    .step-number {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary-cyan);
      margin-bottom: 10px;
      font-family: monospace;
    }
    .step-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 8px;
    }
    .step-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .solutions-tabs-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .solution-block {
      background: var(--bg-surface);
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
    }
    .solution-block h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 10px;
    }
    .solution-block ul {
      list-style: none;
      margin: 12px 0;
    }
    .solution-block li {
      font-size: 13px;
      color: var(--text-muted);
      padding: 5px 0 5px 18px;
      position: relative;
    }
    .solution-block li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--primary-cyan);
      font-size: 18px;
      line-height: 1;
    }

    .network-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
      align-items: center;
    }
    .network-card {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
    }
    .network-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 14px;
      color: var(--deep-slate);
    }
    .network-nodes-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .network-node-item {
      background: var(--bg-soft);
      padding: 10px 14px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--deep-slate);
      display: flex;
      justify-content: space-between;
    }
    .network-node-item span {
      color: var(--primary-teal);
      font-size: 12px;
    }

    .cases-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .case-card {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }
    .case-img-box {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: var(--bg-soft);
      overflow: hidden;
    }
    .case-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .case-card:hover .case-img-box img {
      transform: scale(1.04);
    }
    .case-content {
      padding: 20px;
    }
    .case-content h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 8px;
    }
    .case-content p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .case-meta {
      font-size: 12px;
      color: var(--primary-teal);
      font-weight: 600;
    }

    .rating-banner {
      background: linear-gradient(135deg, #094749 0%, var(--primary-teal) 100%);
      border-radius: var(--radius-lg);
      padding: 36px;
      color: #ffffff;
      margin-bottom: 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .rating-left h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .rating-left p {
      font-size: 14px;
      opacity: 0.9;
    }
    .rating-score-box {
      text-align: right;
    }
    .stars-line {
      font-size: 20px;
      color: #ffd043;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .score-large {
      font-size: 38px;
      font-weight: 800;
      line-height: 1;
    }
    .score-total {
      font-size: 16px;
      opacity: 0.8;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }
    .benchmark-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }
    .benchmark-table th, 
    .benchmark-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-cyan);
    }
    .benchmark-table th {
      background: var(--bg-soft);
      font-weight: 700;
      color: var(--deep-slate);
    }
    .benchmark-table tr:last-child td {
      border-bottom: none;
    }
    .highlight-col {
      background: rgba(15, 164, 159, 0.05);
      font-weight: 600;
      color: var(--primary-teal);
    }

    .matching-form-card {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-md);
      max-width: 860px;
      margin: 0 auto;
    }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .form-group-full {
      grid-column: 1 / -1;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--deep-slate);
      margin-bottom: 8px;
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      font-size: 14px;
      outline: none;
      background: #fdfdfd;
      color: var(--text-main);
      transition: var(--transition-base);
    }
    .form-control:focus {
      border-color: var(--primary-cyan);
      box-shadow: 0 0 0 3px rgba(15, 164, 159, 0.15);
      background: #ffffff;
    }
    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pricing-card {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }
    .pricing-card.popular {
      border: 2px solid var(--primary-cyan);
      box-shadow: var(--shadow-md);
    }
    .popular-tag {
      position: absolute;
      top: -12px;
      right: 20px;
      background: var(--primary-cyan);
      color: #ffffff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 12px;
    }
    .pricing-card h3 {
      font-size: 18px;
      color: var(--deep-slate);
      margin-bottom: 6px;
    }
    .price-value {
      font-size: 28px;
      font-weight: 800;
      color: var(--primary-teal);
      margin-bottom: 16px;
    }
    .price-features {
      list-style: none;
      margin-bottom: 24px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .price-features li {
      padding: 6px 0;
      border-bottom: 1px dashed var(--bg-soft);
    }

    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-base);
    }
    .faq-question {
      padding: 18px 20px;
      font-size: 15px;
      font-weight: 600;
      color: var(--deep-slate);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
      user-select: none;
    }
    .faq-icon {
      font-size: 18px;
      color: var(--primary-teal);
      transition: transform 0.25s ease;
    }
    .faq-answer {
      padding: 0 20px 18px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      display: none;
      border-top: 1px solid var(--bg-soft);
      padding-top: 14px;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-item.active .faq-answer {
      display: block;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .reviewer-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--bg-soft);
      color: var(--primary-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      border: 1px solid var(--border-cyan);
    }
    .reviewer-info h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--deep-slate);
    }
    .reviewer-info span {
      font-size: 12px;
      color: var(--text-muted);
    }
    .review-body {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .review-stars {
      color: #ffb800;
      font-size: 13px;
    }

    .encyclopedia-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .encyclopedia-item {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }
    .encyclopedia-item h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 8px;
    }
    .encyclopedia-item p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .articles-block {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 30px;
    }
    .articles-links-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 14px;
    }
    .article-pill {
      background: var(--bg-soft);
      border: 1px solid var(--border-cyan);
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 13px;
      color: var(--deep-slate);
      font-weight: 500;
    }
    .article-pill:hover {
      background: var(--primary-cyan);
      color: #ffffff;
    }

    .agency-banner {
      background: linear-gradient(135deg, #e4f5f3 0%, #d4edea 100%);
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-lg);
      padding: 40px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
      align-items: center;
    }
    .agency-content h3 {
      font-size: 24px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 12px;
    }
    .agency-content p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .agency-box-card {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }
    .agency-box-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 8px;
    }
    .agency-box-card p {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 30px;
    }
    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .contact-card-box {
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }
    .contact-card-box h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--deep-slate);
      margin-bottom: 6px;
    }
    .contact-card-box p {
      font-size: 14px;
      color: var(--text-muted);
    }
    .contact-qr-wrap {
      text-align: center;
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
    }
    .contact-qr-wrap img {
      max-width: 170px;
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 10px auto;
      display: block;
      border: 1px solid var(--border-cyan);
    }
    .contact-qr-wrap span {
      font-size: 13px;
      color: var(--text-muted);
      display: block;
      margin-top: 6px;
    }

    .site-footer {
      width: 100%;
      background: #0d2227;
      color: #cfe3e2;
      padding: 50px 0 24px;
      font-size: 13px;
      border-top: 1px solid #1c3d44;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 30px;
    }
    .footer-col h4 {
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 14px;
    }
    .footer-col p {
      color: #a2c1c0;
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .footer-links-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-links-list a {
      color: #a2c1c0;
    }
    .footer-links-list a:hover {
      color: var(--accent-mint);
    }
    .friend-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid #1e3f46;
    }
    .friend-links-wrap a {
      color: #88aba9;
      font-size: 12px;
    }
    .friend-links-wrap a:hover {
      color: #ffffff;
    }
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #17343b;
      color: #698c8a;
      font-size: 12px;
    }

    .float-dock {
      position: fixed;
      right: 20px;
      bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 99;
    }
    .dock-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid var(--border-cyan);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-teal);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition-base);
      text-align: center;
    }
    .dock-btn:hover {
      background: var(--primary-cyan);
      color: #ffffff;
      transform: translateY(-3px);
    }

    @media (max-width: 992px) {
      .hero-grid,
      .about-card-grid,
      .service-grid,
      .workflow-strip,
      .solutions-tabs-content,
      .cases-gallery,
      .pricing-grid,
      .reviews-grid,
      .agency-banner,
      .contact-grid,
      .footer-top {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-title {
        font-size: 28px;
      }
      .rating-banner {
        flex-direction: column;
        align-items: flex-start;
      }
      .rating-score-box {
        text-align: left;
      }
    }

    @media (max-width: 600px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      .network-row {
        grid-template-columns: 1fr;
      }
      .encyclopedia-grid {
        grid-template-columns: 1fr;
      }
    }