﻿:root {
      --bg: #f7f9fc;
      --surface: #ffffff;
      --surface-soft: #f3f7ff;
      --ink: #10213a;
      --muted: #5f7189;
      --line: #dfe7f2;
      --primary: #175eea;
      --primary-dark: #0e48bc;
      --primary-soft: #eaf1ff;
      --navy: #071d45;
      --navy-soft: #0d295d;
      --green-soft: #e8f8ef;
      --green: #27ae60;
      --purple-soft: #f3ebff;
      --purple: #8a56ff;
      --orange-soft: #fff0df;
      --orange: #ff8a1f;
      --shadow: 0 12px 36px rgba(16, 33, 58, 0.08);
      --radius: 18px;
      --radius-lg: 24px;
      --container: 1280px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
      color: var(--ink);
      line-height: 1.6;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .skip-link {
      position: absolute;
      left: 1rem;
      top: -4rem;
      z-index: 300;
      padding: 0.85rem 1rem;
      border-radius: 0 0 12px 12px;
      background: var(--primary-dark);
      color: #ffffff;
      font-weight: 700;
    }

    .skip-link:focus {
      top: 0;
    }

    .container {
      width: min(calc(100% - 2rem), var(--container));
      margin: 0 auto;
    }

    .page {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(223, 231, 242, 0.9);
    }

    .nav-shell {
      padding: 1rem 0;
    }

    .nav-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 1rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--ink);
      cursor: pointer;
      background: none;
      border: none;
    }

    .brand-word span {
      color: var(--primary);
    }

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

    .nav-links a {
      border: none;
      background: none;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0.75rem 1rem;
      border-radius: 999px;
      cursor: pointer;
      transition: color 0.2s ease, background-color 0.2s ease;
    }

    .nav-links a.active,
    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--primary);
      background: var(--primary-soft);
    }

    .nav-cta {
      border: none;
      background: var(--primary);
      color: #ffffff;
      font-weight: 800;
      padding: 0.95rem 1.35rem;
      border-radius: 14px;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(23, 94, 234, 0.18);
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      background: var(--primary-dark);
    }

    .hamburger {
      display: none;
      border: 1px solid var(--line);
      background: #fff;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--ink);
      margin: 4px auto;
    }

    .mobile-menu {
      display: none;
      padding: 0 0 1rem;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-card {
      margin-top: 0.85rem;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: var(--shadow);
      padding: 0.75rem;
      display: grid;
      gap: 0.35rem;
    }

    .mobile-card a {
      border: none;
      background: none;
      text-align: left;
      padding: 0.9rem 1rem;
      border-radius: 12px;
      font-weight: 700;
      color: var(--ink);
      cursor: pointer;
    }

    .mobile-card a:hover,
    .mobile-card a:focus-visible,
    .mobile-card a.active {
      background: var(--primary-soft);
      color: var(--primary);
    }

    .mobile-card .nav-cta {
      width: 100%;
      margin-top: 0.4rem;
      text-align: center;
    }

    .hero {
      padding: 2rem 0 0;
    }

    .hero-card,
    .section-card,
    .content-card,
    .footer-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }

    .hero-card {
      padding: 2rem;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: center;
      background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    }

    .hero-card.no-box {
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 800;
      margin-bottom: 1.1rem;
    }

    h1, h2, h3, h4 {
      line-height: 1.12;
      letter-spacing: -0.03em;
    }

    h1 {
      font-size: clamp(2.3rem, 4vw, 4rem);
      margin-bottom: 1rem;
    }

    h2 {
      font-size: clamp(1.7rem, 2.6vw, 2.6rem);
      margin-bottom: 0.8rem;
    }

    h3 {
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
    }

    p {
      color: var(--muted);
    }

    .hero-text p {
      max-width: 560px;
      margin-bottom: 1.5rem;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1.75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      border-radius: 14px;
      border: 1px solid transparent;
      min-height: 48px;
      padding: 0.9rem 1.25rem;
      font-weight: 800;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: var(--primary-dark);
    }

    .btn-secondary {
      background: #fff;
      border-color: var(--line);
      color: var(--ink);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      border-color: var(--primary);
      color: var(--primary);
    }

    .trusted-row {
      margin-top: 1.6rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem 1.4rem;
      padding-top: 1rem;
      border-top: 1px solid var(--line);
    }

    .trusted-row strong {
      font-size: 0.86rem;
      color: var(--muted);
    }

    .trusted-logo {
      color: #8b99ab;
      font-size: 0.86rem;
      font-weight: 700;
    }

    .illustration-wrap {
      position: relative;
      min-height: 360px;
      background: radial-gradient(circle at 60% 40%, rgba(23, 94, 234, 0.08), transparent 52%);
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .illus-bubble {
      position: absolute;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(16, 33, 58, 0.06);
    }

    .illus-bubble.small {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      color: var(--primary);
      font-size: 1.25rem;
      font-weight: 800;
    }

    .illus-bubble.card {
      width: 110px;
      height: 130px;
      padding: 1rem;
    }

    .illus-bubble.card::before,
    .illus-bubble.card::after {
      content: "";
      display: block;
      height: 10px;
      border-radius: 999px;
      background: #dbe8ff;
      margin-bottom: 0.6rem;
    }

    .illus-bubble.card::after {
      width: 70%;
    }

    .bubble-1 { top: 18px; left: 30px; }
    .bubble-2 { top: 150px; left: 10px; }
    .bubble-3 { top: 48px; right: 38px; }

    .device {
      width: 420px;
      max-width: 100%;
      background: #0a275f;
      border-radius: 20px;
      padding: 14px 14px 18px;
      box-shadow: 0 18px 34px rgba(16, 33, 58, 0.16);
    }

    .device-bar {
      display: flex;
      gap: 6px;
      margin-bottom: 10px;
    }

    .device-bar span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.55);
    }

    .device-screen {
      background: #ffffff;
      border-radius: 14px;
      min-height: 220px;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }

    .screen-lines {
      position: absolute;
      inset: 18px auto auto 18px;
      width: 90px;
      display: grid;
      gap: 8px;
    }

    .screen-lines span {
      height: 10px;
      border-radius: 999px;
      background: #e4ebf5;
    }

    .screen-lines.right {
      left: auto;
      right: 18px;
      width: 72px;
    }

    .access-circle {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 6px solid var(--primary);
      position: relative;
      display: grid;
      place-items: center;
    }

    .access-circle::before {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--primary);
      top: 20px;
    }

    .access-circle::after {
      content: "";
      position: absolute;
      width: 54px;
      height: 54px;
      border-left: 6px solid var(--primary);
      border-right: 6px solid var(--primary);
      border-bottom: 6px solid transparent;
      top: 46px;
      border-radius: 18px 18px 10px 10px;
    }

    .access-arms {
      position: absolute;
      width: 68px;
      height: 6px;
      background: var(--primary);
      border-radius: 999px;
      top: 62px;
    }

    .page-section {
      padding: 1.75rem 0 0;
    }

    .section-title-row {
      text-align: center;
      margin-bottom: 1.8rem;
    }

    .section-title-row p {
      max-width: 620px;
      margin: 0.5rem auto 0;
    }

    .service-grid,
    .reason-grid,
    .contact-cards {
      display: grid;
      gap: 1rem;
    }

    .service-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .reason-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .contact-cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .icon-card,
    .info-card,
    .blog-card,
    .service-list-card,
    .contact-box,
    .message-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .icon-card,
    .info-card,
    .service-list-card,
    .contact-box,
    .message-card {
      padding: 1.25rem;
    }

    .info-card.no-box {
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .service-list-card {
      background: none;
      border: none;
      box-shadow: none;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--line);
    }

    .service-stack article.service-list-card:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .icon-square {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
      font-size: 1.35rem;
      font-weight: 800;
    }

    .blue { background: var(--primary-soft); color: var(--primary); }
    .green { background: var(--green-soft); color: var(--green); }
    .purple { background: var(--purple-soft); color: var(--purple); }
    .orange { background: var(--orange-soft); color: var(--orange); }

    .view-link,
    .learn-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      color: var(--primary);
      font-weight: 800;
      font-size: 0.9rem;
      margin-top: 0.85rem;
    }

    .why-card {
      margin-top: 2rem;
      padding: 1.75rem;
      display: grid;
      grid-template-columns: 1fr 0.8fr;
      gap: 2rem;
      align-items: center;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    .check-list li {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      color: var(--muted);
    }

    .check-list li::before {
      content: "✓";
      color: var(--primary);
      font-weight: 900;
      margin-top: 0.05rem;
    }

    .cta-banner {
      margin-top: 1.8rem;
      padding: 2rem;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 30%);
    }

    .cta-banner p {
      color: rgba(255,255,255,0.88);
      max-width: 680px;
      margin: 0.5rem auto 1.2rem;
      position: relative;
    }

    .cta-banner h2,
    .cta-banner .btn {
      position: relative;
    }

    .cta-banner .btn {
      background: #fff;
      color: var(--primary);
    }

    .cta-banner .btn:hover,
    .cta-banner .btn:focus-visible {
      background: #eff4ff;
    }

    .about-mission {
      display: block;
      margin-top: 1.6rem;
    }

    .stats-band {
      margin-top: 1.5rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: #fff;
      padding: 1.35rem;
      border-radius: 20px;
      box-shadow: var(--shadow);
    }

    .stats-band strong {
      display: block;
      font-size: 1.5rem;
      margin-bottom: 0.2rem;
    }

    .stats-band span {
      color: rgba(255,255,255,0.86);
      font-size: 0.85rem;
    }

    .approach-row {
      display: grid;
      gap: 1rem;
      margin-top: 1.8rem;
    }

    .approach-row {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .standards-row {
      margin-top: 1.8rem;
    }

    .standards-row ul {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1rem;
      align-items: center;
      text-align: center;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .approach-step {
      text-align: center;
    }

    .approach-step .icon-square {
      margin: 0 auto 0.9rem;
    }

    .standard-badge {
      padding: 1rem;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: #fff;
      font-weight: 800;
      color: #4e6279;
    }

    .service-stack {
      display: grid;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .service-list-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      align-items: flex-start;
    }

    .service-list-card ul {
      list-style: none;
      margin-top: 0.8rem;
      display: grid;
      gap: 0.45rem;
      color: var(--muted);
    }

    .service-list-card li::before {
      content: "✓";
      color: var(--primary);
      font-weight: 900;
      margin-right: 0.45rem;
    }

    .blog-layout {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .blog-card {
      overflow: hidden;
    }

    .blog-thumb {
      min-height: 180px;
      background: linear-gradient(135deg, #dbe8ff 0%, #eef4ff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .blog-thumb::before {
      content: "";
      width: 110px;
      height: 110px;
      border-radius: 50%;
      border: 6px solid var(--primary);
      position: absolute;
    }

    .blog-thumb::after {
      content: "";
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--primary);
      position: absolute;
      top: 46px;
    }

    .featured-label,
    .mini-tag {
      display: inline-block;
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: var(--primary-soft);
      color: var(--primary);
    }

    .blog-content {
      padding: 1.2rem;
    }

    .blog-meta {
      font-size: 0.82rem;
      color: #8392a5;
      margin-top: 0.5rem;
    }

    .search-bar {
      margin-top: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      padding: 0.85rem 1rem;
    }

    .search-bar input {
      border: none;
      outline: none;
      width: 100%;
      background: transparent;
    }

    .blog-list {
      display: grid;
      gap: 1rem;
    }

    .blog-list-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 1rem;
      align-items: stretch;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .mini-thumb {
      background: linear-gradient(135deg, #dbe8ff 0%, #eef4ff 100%);
      position: relative;
    }

    .mini-thumb::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 18px;
      border: 4px solid rgba(23, 94, 234, 0.7);
    }

    .mini-content {
      padding: 1rem;
    }

    .filter-row,
    .pagination {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .chip,
    .page-pill {
      padding: 0.55rem 0.9rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--muted);
    }

    .chip.active,
    .page-pill.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .contact-box {
      text-align: center;
    }

    .contact-box strong {
      display: block;
      margin-top: 0.5rem;
      margin-bottom: 0.15rem;
    }

    .message-card label {
      display: block;
      font-size: 0.88rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
    }

    .message-card input,
    .message-card textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 0.9rem 1rem;
      margin-bottom: 0.95rem;
      background: #fff;
      color: var(--ink);
    }

    .message-card textarea {
      min-height: 140px;
      resize: vertical;
    }

    .map-card {
      margin-top: 1rem;
      min-height: 210px;
      border-radius: 20px;
      background:
        linear-gradient(90deg, rgba(23,94,234,0.08) 1px, transparent 1px),
        linear-gradient(rgba(23,94,234,0.08) 1px, transparent 1px),
        #f4f8fb;
      background-size: 36px 36px, 36px 36px, auto;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .map-pin {
      position: absolute;
      right: 20%;
      bottom: 24%;
      width: 18px;
      height: 18px;
      background: var(--primary);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
    }

    .map-pin::after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #fff;
      top: 5px;
      left: 5px;
    }

    .footer {
      padding: 1.4rem 0 2rem;
    }

    .footer-card {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
      color: #fff;
      padding: 1.8rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .footer-card::after {
      content: "";
      position: absolute;
      right: 28px;
      top: 26px;
      width: 180px;
      height: 180px;
      border: 14px solid rgba(255,255,255,0.05);
      border-radius: 44px;
      transform: rotate(12deg);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .footer-brand p,
    .footer-col a,
    .footer-contact-item span {
      color: rgba(255,255,255,0.78);
    }

    .footer-brand .brand {
      color: #fff;
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .footer-brand .brand span {
      color: #7db1ff;
    }

    .footer-brand .tagline {
      color: #9fc5ff;
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .footer-col ul,
    .social-row ul,
    .footer-bottom-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .social-row {
      margin-top: 1rem;
    }

    .social-row ul {
      display: flex;
      gap: 0.7rem;
    }

    .social-row a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.28);
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .social-row a svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .footer-col {
      border-left: 1px solid rgba(255,255,255,0.14);
      padding-left: 1.8rem;
    }

    .footer-col h2 {
      font-size: 1.4em;
      margin-bottom: 1rem;
    }

    .footer-col a {
      display: block;
      margin-bottom: 0.65rem;
    }

    .footer-contact-item {
      display: flex;
      gap: 0.7rem;
      margin-bottom: 0.85rem;
      align-items: flex-start;
    }

    .footer-contact-item svg {
      flex-shrink: 0;
      margin-top: 0.2rem;
      color: rgba(255,255,255,0.7);
    }

    .footer-contact-item a {
      margin-bottom: 0;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding-top: 1.35rem;
      margin-top: 1.35rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.6);
      font-size: 0.84rem;
      position: relative;
      z-index: 1;
    }

    .footer-bottom-links {
      display: flex;
      gap: 1rem;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 3px solid #1f6fff;
      outline-offset: 2px;
    }

    /* Elements sitting on a blue background need a white focus indicator
       so the outline still meets the 3:1 contrast requirement. */
    .nav-cta:focus-visible,
    .btn-primary:focus-visible,
    .home-cta .btn:focus-visible,
    .cta-banner .btn:focus-visible {
      outline-color: #ffffff;
    }

    @media (max-width: 1120px) {
      .service-grid,
      .reason-grid,
      .stats-band,
      .approach-row,
      .standards-row ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .blog-layout,
      .contact-layout,
      .hero-card,
      .about-mission,
      .why-card {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: inline-block;
      }

      .service-grid,
      .reason-grid,
      .contact-cards,
      .stats-band,
      .approach-row,
      .standards-row ul,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .blog-list-item {
        grid-template-columns: 1fr;
      }

      .footer-col {
        border-left: none;
        padding-left: 0;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .hero-card,
      .section-card,
      .content-card,
      .footer-card {
        border-radius: 20px;
      }
    }
  
    /* Homepage refresh */
    body {
      background: #ffffff;
    }

    .site-header {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: none;
      border-bottom: 1px solid #edf2fa;
    }

    .nav-shell {
      padding: 1rem 0 0.8rem;
    }

    .nav-card {
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
    }

    .brand {
      gap: 0.65rem;
      font-size: 1.55rem;
    }

    .nav-links {
      gap: 0.9rem;
    }

    .nav-links a {
      color: var(--ink);
      font-size: 1.02rem;
      padding: 0.55rem 0;
      border-radius: 0;
      border-bottom: 2px solid transparent;
    }

    .nav-links a.active,
    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--primary);
      background: transparent;
      border-bottom-color: var(--primary);
    }

    .nav-cta {
      min-height: 48px;
      padding: 0.9rem 1.2rem;
      border-radius: 10px;
      box-shadow: none;
    }

    .hero {
      padding-top: 2.4rem;
    }

    .home-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
      gap: 3rem;
      align-items: center;
      padding-bottom: 2.2rem;
      border-bottom: 1px solid #edf2fa;
    }

    .home-copy h1 {
      font-size: clamp(2.45rem, 6vw, 4.6rem);
      max-width: 12ch;
      margin-bottom: 1.15rem;
    }

    .home-copy p {
      max-width: 34rem;
      font-size: 1.02rem;
      margin-bottom: 1.6rem;
    }

    .home-copy .button-row {
      margin-bottom: 0;
    }

    .home-art {
      position: relative;
      min-height: 360px;
      display: grid;
      place-items: center;
    }

    .home-art::before {
      content: "";
      position: absolute;
      inset: 10% 8% 8%;
      border-radius: 30px;
      background: linear-gradient(180deg, #f8fbff 0%, #eff5ff 100%);
    }

    .home-art svg,
    .why-art svg {
      position: relative;
      z-index: 1;
      width: 100%;
      height: auto;
    }

    .trusted-strip {
      padding: 1.2rem 0 0;
    }

    .trusted-strip p {
      text-align: center;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 0.85rem;
    }

    .trusted-logos {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1rem;
      align-items: center;
      color: #7d8ca3;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .trusted-logos span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      min-height: 2rem;
      text-align: center;
    }

    .trusted-logos svg {
      width: 18px;
      height: 18px;
      color: #9eabc0;
      flex-shrink: 0;
    }

    .home-section {
      padding: 3.8rem 0 0;
    }

    .home-section .section-title-row {
      text-align: center;
      justify-items: center;
      margin-bottom: 1.7rem;
    }

    .home-section .section-title-row p {
      max-width: 42rem;
    }

    .home-service-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.1rem;
    }

    .home-service-card {
      padding: 1.4rem 1.1rem;
      border: none;
      border-radius: 0;
      background: transparent;
      text-align: center;
      box-shadow: none;
    }

    .home-service-card .icon-square {
      margin: 0 auto 1rem;
      width: 56px;
      height: 56px;
      border-radius: 18px;
      font-size: 1.2rem;
    }

    .home-service-card h3 {
      font-size: 1rem;
      margin-bottom: 0.65rem;
    }

    .home-service-card p {
      font-size: 0.92rem;
      margin-bottom: 0;
    }

    .home-link-row {
      text-align: center;
      margin-top: 1rem;
    }

    .learn-link {
      font-weight: 800;
    }

    .home-why {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
      gap: 2rem;
      align-items: center;
      padding: 2rem 0 1.4rem;
      background: linear-gradient(180deg, #f7faff 0%, #eff5ff 100%);
      border-radius: 0;
    }

    .home-why h2 {
      margin-bottom: 1rem;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 0.8rem;
    }

    .check-list li {
      position: relative;
      padding-left: 1.7rem;
      color: var(--ink);
      font-weight: 600;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.35rem;
      width: 0.9rem;
      height: 0.9rem;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: inset 0 0 0 3px #eaf1ff;
    }

    .why-art {
      min-height: 250px;
      display: grid;
      place-items: center;
    }

    .home-cta {
      margin-top: 1.2rem;
      padding: 2.7rem 1.5rem;
      border-radius: var(--radius-lg);
      text-align: center;
      color: #ffffff;
      background: linear-gradient(135deg, #0f55ea 0%, #175eea 48%, #0e49bd 100%);
    }

    .home-cta h2,
    .home-cta p {
      color: #ffffff;
    }

    .home-cta p {
      max-width: 40rem;
      margin: 0.75rem auto 1.35rem;
      color: rgba(255,255,255,0.88);
    }

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

    .footer {
      margin-top: 3.8rem;
      padding-bottom: 0;
    }

    .footer > .container {
      width: 100%;
      max-width: none;
      margin: 0;
    }

    .footer-card {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
      color: #fff;
      padding: 2.4rem min(6vw, 4rem) 1rem;
      border: none;
      border-radius: 0;
      box-shadow: none;
      position: relative;
      overflow: hidden;
    }

    .footer-card::after {
      content: "";
      position: absolute;
      right: 40px;
      top: 24px;
      width: 180px;
      height: 180px;
      border: 12px solid rgba(255,255,255,0.05);
      border-radius: 0;
      transform: rotate(12deg);
    }

    .footer-brand .brand {
      font-size: 1.5rem;
    }

    .footer-top {
      width: min(calc(100% - 2rem), var(--container));
      margin: 0 auto;
    }

    .footer-bottom {
      width: min(calc(100% - 2rem), var(--container));
      margin: 0.8rem auto 0;
    }

    @media (max-width: 1100px) {
      .home-service-grid,
      .trusted-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      .nav-card {
        align-items: center;
      }

      .home-hero,
      .home-why {
        grid-template-columns: 1fr;
      }

      .home-copy h1 {
        max-width: 100%;
      }

      .home-art {
        min-height: 300px;
      }

      .home-service-grid,
      .trusted-logos {
        grid-template-columns: 1fr 1fr;
      }

      .footer-card {
        border-radius: 0;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-top: 1.5rem;
      }

      .home-hero {
        gap: 1.8rem;
        padding-bottom: 1.5rem;
      }

      .home-art {
        min-height: 230px;
      }

      .home-section {
        padding-top: 2.7rem;
      }

      .home-service-grid,
      .trusted-logos {
        grid-template-columns: 1fr;
      }

      .home-why {
        padding: 1.5rem 0;
      }

      .footer-card {
        padding: 1.5rem 0 1rem;
        border-radius: 0;
      }
    }
