:root {
      --primary-red: #d32f2f;
      --primary-dark: #b71c1c;
      --primary-light: #ef5350;
      --accent-warm: #ff6f00;
      --bg-light: #fdfbfb;
      --bg-card: #ffffff;
      --bg-alt: #fef4f4;
      --text-main: #1f2937;
      --text-muted: #4b5563;
      --text-light: #6b7280;
      --border-color: #fee2e2;
      --shadow-sm: 0 2px 8px rgba(211, 47, 47, 0.06);
      --shadow-md: 0 8px 24px rgba(211, 47, 47, 0.1);
      --shadow-lg: 0 16px 36px rgba(183, 28, 28, 0.14);
      --radius: 12px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

    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-light);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

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

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

    .brand-group {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .brand-logo-wrap {
      max-height: 48px;
      display: flex;
      align-items: center;
    }

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

    .brand-tagline {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-red);
      background: var(--bg-alt);
      padding: 3px 10px;
      border-radius: 20px;
      border: 1px solid var(--border-color);
    }

    .nav-menu {
      display: flex;
      align-items: center;
    }

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

    .nav-links li a,
    .ai-page-home-link {
      display: inline-block;
      padding: 10px 14px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-main);
      border-radius: 6px;
      transition: var(--transition);
    }

    .nav-links li a:hover,
    .ai-page-home-link:hover {
      color: var(--primary-red);
      background-color: var(--bg-alt);
    }

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

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

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(211, 47, 47, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(211, 47, 47, 0.45);
      color: #ffffff;
    }

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

    .btn-outline:hover {
      background: var(--bg-alt);
      transform: translateY(-2px);
    }

    .btn-glow {
      background: linear-gradient(135deg, #e53935, #ff6f00);
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(229, 57, 53, 0.35);
      animation: pulseGlow 2.5s infinite;
    }

    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 4px 16px rgba(229, 57, 53, 0.3); }
      50% { box-shadow: 0 8px 26px rgba(229, 57, 53, 0.55); }
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--text-main);
      margin: 5px 0;
      transition: var(--transition);
    }

    /* Section Base */
    section {
      padding: 80px 0;
      position: relative;
    }

    .section-alt {
      background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 50%, #ffffff 100%);
    }

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

    .section-badge {
      display: inline-block;
      padding: 4px 14px;
      font-size: 13px;
      font-weight: 700;
      color: var(--primary-red);
      background: rgba(211, 47, 47, 0.08);
      border-radius: 30px;
      margin-bottom: 14px;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: #111827;
      line-height: 1.3;
      margin-bottom: 16px;
    }

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

    /* Hero Section (strictly NO images) */
    .hero-section {
      padding: 90px 0 80px;
      background: radial-gradient(circle at 50% 10%, #ffebee 0%, #ffffff 70%);
      border-bottom: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
    }

    .hero-decor-1, .hero-decor-2 {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
      z-index: 0;
    }

    .hero-decor-1 {
      width: 420px;
      height: 420px;
      background: rgba(229, 57, 53, 0.12);
      top: -100px;
      right: 5%;
    }

    .hero-decor-2 {
      width: 360px;
      height: 360px;
      background: rgba(255, 111, 0, 0.1);
      bottom: -60px;
      left: 5%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 920px;
      margin: 0 auto;
    }

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

    .hero-pill-dot {
      width: 8px;
      height: 8px;
      background-color: var(--primary-red);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--primary-red);
    }

    .hero-title {
      font-size: 44px;
      font-weight: 900;
      color: #0f172a;
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-title span {
      color: var(--primary-red);
      background: linear-gradient(135deg, #c62828, #e53935);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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

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

    .hero-btn-large {
      padding: 14px 34px;
      font-size: 17px;
      font-weight: 700;
      border-radius: 10px;
    }

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

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

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

    .hero-stat-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--primary-red);
      margin-bottom: 4px;
    }

    .hero-stat-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* Model Matrix Banner */
    .model-badge-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 36px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.85);
      border-radius: 12px;
      border: 1px dashed var(--border-color);
    }

    .model-chip {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-main);
      background: #fdf2f2;
      border: 1px solid #fed7d7;
      padding: 4px 10px;
      border-radius: 6px;
      transition: var(--transition);
    }

    .model-chip:hover {
      background: var(--primary-red);
      color: #ffffff;
      border-color: var(--primary-red);
    }

    /* Cards & Grids */
    .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: 30px;
    }

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

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

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, #ffebee, #fce4ec);
      color: var(--primary-red);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
      border: 1px solid #ffcdd2;
    }

    .card-title {
      font-size: 19px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 10px;
    }

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

    .card-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .card-mini-tag {
      font-size: 12px;
      background: #fef2f2;
      color: var(--primary-dark);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 500;
    }

    /* Comparison Table Component */
    .eval-highlight-box {
      background: linear-gradient(135deg, #b71c1c, #d32f2f);
      color: #ffffff;
      border-radius: var(--radius);
      padding: 32px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-lg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

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

    .eval-stars {
      font-size: 24px;
      color: #ffd700;
      letter-spacing: 2px;
    }

    .eval-score-big {
      font-size: 52px;
      font-weight: 900;
      line-height: 1;
    }

    .eval-score-sub {
      font-size: 14px;
      opacity: 0.9;
    }

    .eval-quote {
      max-width: 540px;
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.95;
    }

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

    .custom-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .custom-table th,
    .custom-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #f1f5f9;
      font-size: 14px;
    }

    .custom-table th {
      background: #fdf2f2;
      color: #1f2937;
      font-weight: 700;
    }

    .custom-table tr:last-child td {
      border-bottom: none;
    }

    .custom-table tr:hover td {
      background: #fffafa;
    }

    .highlight-col {
      background: rgba(254, 242, 242, 0.4);
      font-weight: 600;
      color: var(--primary-red);
    }

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

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

    .flow-num {
      width: 36px;
      height: 36px;
      background: var(--primary-red);
      color: #ffffff;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .flow-title {
      font-size: 17px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 8px;
    }

    .flow-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Showcase & Gallery (With allowed images) */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .gallery-card {
      background: #ffffff;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

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

    .gallery-img-wrap {
      width: 100%;
      overflow: hidden;
      background: #f8fafc;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-img-wrap.square-ratio {
      aspect-ratio: 1 / 1;
    }

    .gallery-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-card:hover .gallery-img-wrap img {
      transform: scale(1.04);
    }

    .gallery-body {
      padding: 20px;
    }

    .gallery-tag {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-red);
      margin-bottom: 6px;
      display: inline-block;
    }

    .gallery-title {
      font-size: 16px;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 8px;
    }

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

    /* Testimonials */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

    .review-text {
      font-size: 14px;
      color: var(--text-main);
      line-height: 1.7;
      margin-bottom: 20px;
      position: relative;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f3f4f6;
      padding-top: 14px;
    }

    .review-avatar-text {
      width: 40px;
      height: 40px;
      background: #fee2e2;
      color: var(--primary-red);
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    .author-name {
      font-size: 14px;
      font-weight: 700;
      color: #111827;
    }

    .author-role {
      font-size: 12px;
      color: var(--text-light);
    }

    /* FAQ Accordion */
    .faq-wrapper {
      max-width: 860px;
      margin: 0 auto;
    }

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

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

    .faq-question {
      padding: 18px 22px;
      font-size: 16px;
      font-weight: 700;
      color: #1f2937;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-arrow {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
      color: var(--primary-red);
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-item.active .faq-arrow {
      transform: rotate(180deg);
    }

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

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

    /* Contact & Form */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 36px;
    }

    .contact-info-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

    .info-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      align-items: flex-start;
    }

    .info-icon {
      width: 42px;
      height: 42px;
      background: #fee2e2;
      color: var(--primary-red);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .info-title {
      font-size: 14px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
    }

    .info-value {
      font-size: 14px;
      color: var(--text-muted);
      word-break: break-all;
    }

    .qr-container {
      margin-top: 24px;
      padding: 16px;
      background: var(--bg-alt);
      border-radius: 8px;
      text-align: center;
      border: 1px solid var(--border-color);
      max-width: 200px;
    }

    .qr-container img {
      width: 140px;
      height: 140px;
      margin: 0 auto 8px;
      border-radius: 6px;
    }

    .qr-caption {
      font-size: 12px;
      color: var(--primary-dark);
      font-weight: 600;
    }

    .form-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 36px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
    }

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

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 6px;
    }

    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 14px;
      background: #ffffff;
      color: #1f2937;
      transition: var(--transition);
      font-family: inherit;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-red);
      box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
    }

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

    /* Article and Resource Links */
    .article-links-box {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      margin-top: 30px;
    }

    .article-links-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 14px;
    }

    .article-tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .article-link-chip {
      display: inline-block;
      font-size: 13px;
      color: var(--text-muted);
      background: #f9fafb;
      padding: 6px 14px;
      border-radius: 6px;
      border: 1px solid #e5e7eb;
      transition: var(--transition);
    }

    .article-link-chip:hover {
      color: var(--primary-red);
      border-color: var(--primary-light);
      background: var(--bg-alt);
    }

    /* Footer */
    .site-footer {
      background: #1e293b;
      color: #e2e8f0;
      padding: 60px 0 24px;
      border-top: 4px solid var(--primary-red);
    }

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

    .footer-brand h3 {
      font-size: 20px;
      color: #ffffff;
      margin-bottom: 12px;
      font-weight: 800;
    }

    .footer-brand p {
      font-size: 13px;
      color: #94a3b8;
      line-height: 1.7;
    }

    .footer-col h4 {
      font-size: 15px;
      color: #ffffff;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .footer-links {
      list-style: none;
    }

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

    .footer-links a {
      font-size: 13px;
      color: #94a3b8;
    }

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

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

    .friend-links-title {
      font-size: 13px;
      font-weight: 700;
      color: #cbd5e1;
      margin-bottom: 10px;
    }

    .friend-links-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .friend-links-flex a {
      font-size: 12px;
      color: #94a3b8;
      background: #0f172a;
      padding: 4px 10px;
      border-radius: 4px;
    }

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

    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      color: #64748b;
    }

    /* Floating Utilities */
    .float-panel {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

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

    .float-btn:hover {
      background: var(--primary-red);
      color: #ffffff;
      transform: scale(1.08);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .grid-4, .hero-stats-grid, .flow-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3, .gallery-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .hero-title {
        font-size: 36px;
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        height: 64px;
      }
      .nav-menu {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
      }
      .nav-menu.active {
        display: flex;
      }
      .nav-links {
        flex-direction: column;
        align-items: stretch;
      }
      .nav-links li a,
      .ai-page-home-link {
        padding: 12px 16px;
        border-bottom: 1px solid #f3f4f6;
      }
      .nav-toggle {
        display: block;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-subtitle {
        font-size: 15px;
      }
      .hero-stats-grid, .grid-3, .grid-4, .grid-2, .gallery-grid, .reviews-grid, .flow-steps {
        grid-template-columns: 1fr;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .eval-highlight-box {
        flex-direction: column;
        align-items: flex-start;
      }
    }