:root {
  --home-ink: #17201c;
  --home-muted: #5d6862;
  --home-paper: #f8f7f2;
  --home-line: #dedfd8;
  --home-lilac: #9a78bd;
  --home-lilac-dark: #6d4b91;
  --home-lilac-soft: #eee7f4;
  --home-green: #bed6ad;
  --home-green-dark: #2f5140;
  --home-white: #fff;
}

.home-page {
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

.home-page .container {
  width: min(1240px, 100%);
  padding-inline: 28px;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  color: inherit;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -.035em;
}

.home-page h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.9rem);
  line-height: 1.05;
  text-wrap: balance;
}

.home-page h3 {
  letter-spacing: -.02em;
}

.home-page p {
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--home-ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.home-page .site-header {
  background: rgba(248, 247, 242, .9);
  border-color: rgba(23, 32, 28, .11);
  backdrop-filter: blur(14px);
}

.home-page .nav-bar {
  min-height: 78px;
  padding-block: 12px;
  gap: 32px;
}

.home-page .logo img {
  width: auto;
  height: 42px;
}

.home-page .nav-links {
  margin-left: auto;
  gap: 28px;
}

.home-page .nav-links a {
  position: relative;
  font-size: .94rem;
  font-weight: 650;
  color: #34423a;
}

.home-page .nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--home-lilac-dark);
  transition: transform .2s ease;
}

.home-page .nav-links a:hover::after {
  transform: scaleX(1);
}

.home-page .header-cta {
  flex: 0 0 auto;
  padding: 12px 20px;
  background: var(--home-ink);
  box-shadow: none;
  font-size: .88rem;
}

.home-page .header-cta:hover {
  background: var(--home-lilac-dark);
  box-shadow: none;
}

.home-page main {
  padding: 0;
  background: var(--home-paper);
}

.home-page section {
  border: 0;
}

.home-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--home-lilac-dark) !important;
  font-size: .78rem !important;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.home-eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.home-eyebrow-light {
  color: #f2e9fa !important;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 82px;
  background:
    radial-gradient(circle at 10% 10%, rgba(190, 214, 173, .5), transparent 32%),
    linear-gradient(135deg, #f8f7f2 0%, #f1ede7 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(109, 75, 145, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(154, 120, 189, .035), 0 0 0 148px rgba(154, 120, 189, .025);
  pointer-events: none;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.home-page .hero-copy h1 {
  max-width: 770px;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(3rem, 4.6vw, 4.5rem);
  font-weight: 760;
  line-height: .98;
  text-wrap: balance;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0 !important;
  color: #435149 !important;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem) !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 23px;
  font: inherit;
  font-size: .94rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
}

.home-btn-primary {
  background: var(--home-lilac-dark);
  color: #fff;
  box-shadow: 0 16px 36px rgba(109, 75, 145, .2);
}

.home-btn-primary:hover {
  background: #583777;
}

.home-btn-secondary {
  border-color: #b9bdb6;
  background: rgba(255, 255, 255, .64);
  color: var(--home-ink);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: var(--home-muted);
  font-size: .84rem;
}

.hero-proof span {
  margin-right: 5px;
  color: var(--home-green-dark);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 30px;
  border-radius: 18px;
  background: var(--home-lilac);
  opacity: .22;
}

.hero-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(420px, 46vw, 560px);
  border-radius: 18px;
  object-fit: cover;
  object-position: 52% center;
  box-shadow: 0 30px 80px rgba(30, 36, 32, .18);
}

.hero-result-card {
  position: absolute;
  right: -20px;
  bottom: 25px;
  display: flex;
  max-width: 320px;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 14px 36px rgba(23, 32, 28, .16);
  backdrop-filter: blur(10px);
}

.hero-result-card strong,
.hero-result-card small {
  display: block;
}

.hero-result-card strong {
  font-size: .92rem;
}

.hero-result-card small {
  margin-top: 2px;
  color: var(--home-muted);
  font-size: .75rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #50a875;
  box-shadow: 0 0 0 5px rgba(80, 168, 117, .14);
}

.platform-strip {
  padding: 20px 0;
  background: var(--home-ink);
  color: #fff;
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.platform-row > span {
  color: #aeb8b2;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.platform-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-row li {
  font-size: .9rem;
  font-weight: 750;
}

.home-section {
  padding: 112px 0 !important;
}

.intro-section {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 112px);
  align-items: start;
}

.intro-answer p {
  margin: 0 0 22px;
  color: var(--home-muted);
  font-size: 1.12rem;
}

.intro-answer strong {
  color: var(--home-ink);
}

.text-link {
  color: var(--home-lilac-dark);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(109, 75, 145, .3);
  text-underline-offset: 5px;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
}

.diagnostic-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: var(--home-paper);
}

.card-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--home-lilac-soft);
  color: var(--home-lilac-dark);
  font-size: .76rem;
  font-weight: 800;
}

.diagnostic-grid h3 {
  margin: 42px 0 10px;
  font-size: 1.32rem;
}

.diagnostic-grid p {
  margin: 0;
  color: var(--home-muted);
  font-size: .96rem;
}

.home-video-showcase {
  overflow: hidden;
  padding: 0;
  background: var(--home-ink);
}

.home-video-showcase video {
  display: block;
  width: 100%;
  height: min(56.25vw, 760px);
  min-height: 420px;
  border: 0;
  background: var(--home-ink);
  object-fit: cover;
  object-position: center;
}

.services-section {
  background: var(--home-paper);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}

.section-heading-row > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1.02rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.service-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 75, 145, .45);
  box-shadow: 0 24px 48px rgba(23, 32, 28, .08);
}

.service-card-featured {
  background: var(--home-lilac-dark);
  color: #fff;
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--home-lilac-soft);
  color: var(--home-lilac-dark);
  font-weight: 800;
}

.service-card-featured .service-icon {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.service-label {
  margin: 54px 0 10px !important;
  color: var(--home-lilac-dark) !important;
  font-size: .72rem !important;
  font-weight: 800;
  letter-spacing: .1em;
  opacity: 1;
  text-transform: uppercase;
}

.service-card .service-label {
  opacity: 1;
}

.service-card-featured .service-label {
  color: #f2e9fa !important;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.48rem;
}

.service-card-featured h3 {
  color: #fff;
}

.service-card p:not(.service-label) {
  margin: 0;
  color: #46514b;
  font-size: .93rem;
  opacity: 1;
}

.service-card-featured p:not(.service-label) {
  color: #f4eff8;
  opacity: 1;
}

.card-link {
  margin-top: auto;
  padding-top: 28px;
  font-size: .86rem;
  font-weight: 800;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-links a {
  padding: 9px 14px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-muted);
  font-size: .82rem;
  font-weight: 700;
}

.service-links a:hover {
  border-color: var(--home-lilac-dark);
  color: var(--home-lilac-dark);
}

.proof-section {
  padding: 0 !important;
  background: var(--home-ink);
  color: #fff;
}

.proof-grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0 !important;
}

.proof-image {
  margin: 0;
}

.proof-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.82) contrast(1.03);
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 100px);
}

.proof-copy p:not(.home-eyebrow) {
  max-width: 580px;
  margin: 24px 0 0;
  color: #cbd2ce;
  font-size: 1.02rem;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 42px 0 36px;
}

.metric-row div {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--home-green);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.metric-row span {
  margin-top: 9px;
  color: #aeb8b2;
  font-size: .79rem;
}

.home-btn-light {
  align-self: flex-start;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.home-btn-light:hover {
  background: #fff;
  color: var(--home-ink);
}

.process-section {
  background: #fff;
}

.process-list {
  margin-top: 62px;
  padding: 0 28px;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 29px 0;
  border-top: 1px solid var(--home-line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--home-line);
}

.process-list > li > span {
  color: var(--home-lilac-dark);
  font-size: .8rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  font-size: 1.55rem;
}

.process-list p {
  max-width: 700px;
  margin: 6px 0 0;
  color: var(--home-muted);
  font-size: .95rem;
}

.team-trust-section {
  background: var(--home-green);
}

.team-trust-section .home-eyebrow,
.team-trust-section .text-link {
  color: #4f326f !important;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(50px, 10vw, 140px);
}

.trust-copy p:not(.home-eyebrow) {
  max-width: 640px;
  margin: 25px 0;
  color: #405248;
}

.trust-points {
  align-self: end;
}

.trust-points div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(47, 81, 64, .25);
}

.trust-points div:last-child {
  border-bottom: 1px solid rgba(47, 81, 64, .25);
}

.trust-points strong {
  font-size: .9rem;
}

.trust-points span {
  color: #344b3e;
  font-size: .88rem;
}

.knowledge-section {
  background: var(--home-paper);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.knowledge-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(23,32,28,.08);
}

.knowledge-card-wide {
  grid-row: span 2;
  min-height: 646px;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(109,75,145,.05), rgba(109,75,145,.18)),
    #f1ecf5;
}

.knowledge-card > span {
  color: var(--home-lilac-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.knowledge-card h3 {
  margin: 20px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.knowledge-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: .94rem;
}

.knowledge-card strong {
  margin-top: auto;
  padding-top: 34px;
  font-size: .86rem;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 9vw, 130px);
}

.faq-layout > div:first-child > p:last-child {
  margin-top: 22px;
  color: var(--home-muted);
}

.faq-list details {
  border-top: 1px solid var(--home-line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--home-line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-size: 1.05rem;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--home-lilac-dark);
  font-size: 1.4rem;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -3px 45px 24px 0;
  color: var(--home-muted);
  font-size: .94rem;
}

.home-cta-section {
  padding: 82px 0 !important;
  background: var(--home-lilac-dark);
  color: #fff;
}

.home-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 54px;
  align-items: center;
}

.home-cta-grid h2 {
  max-width: 820px;
}

.home-cta-grid p:not(.home-eyebrow) {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
}

.cta-action {
  display: flex;
  min-width: 290px;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.home-btn-white {
  background: #fff;
  color: var(--home-lilac-dark);
}

.cta-action small {
  color: #f2ebf8;
  font-size: .72rem;
}

.home-footer {
  padding: 72px 0 28px;
  background: #111815;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand img {
  width: auto;
  height: 42px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin-top: 22px;
  color: #9fa9a3;
  font-size: .88rem;
}

.home-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-footer li + li {
  margin-top: 9px;
}

.home-footer a,
.home-footer address {
  color: #b8c1bc;
  font-size: .86rem;
  font-style: normal;
  line-height: 1.8;
}

.home-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #818c86;
  font-size: .75rem;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 20px;
}

.home-page .modal-overlay {
  z-index: 1000;
  padding: 20px;
  background: rgba(10, 15, 12, .72);
  backdrop-filter: blur(6px);
}

.home-page .home-modal-content {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 40px;
  border: 0;
  border-radius: 18px;
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-modal-content > h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.home-modal-content > p:not(.home-eyebrow) {
  margin: 15px 0 24px;
  color: var(--home-muted);
  font-size: .94rem;
}

.home-page .modal-close-btn {
  top: 15px;
  right: 15px;
  color: var(--home-ink);
}

.home-modal-content .form-group {
  margin-bottom: 15px;
}

.home-modal-content label {
  display: block;
  margin-bottom: 6px;
  color: var(--home-ink);
  font-size: .8rem;
  font-weight: 750;
}

.home-modal-content input[type="text"],
.home-modal-content input[type="email"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd2cb;
  border-radius: 9px;
  padding: 10px 13px;
  background: #fff;
  color: var(--home-ink);
  font: inherit;
}

.home-modal-content input:focus {
  outline: 2px solid var(--home-lilac);
  outline-offset: 1px;
}

.home-modal-content .form-group-checkbox {
  align-items: flex-start;
  margin: 17px 0;
}

.home-modal-content .form-group-checkbox label {
  margin: 0;
  color: var(--home-muted);
  font-weight: 500;
  line-height: 1.45;
}

.home-modal-content .form-group-checkbox a {
  color: var(--home-lilac-dark);
  text-decoration: underline;
}

.home-modal-content .form-submit {
  width: 100%;
}

#form-status {
  margin-top: 12px;
  font-size: .85rem;
}

@media (max-width: 1060px) {
  .home-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.8rem, 5.6vw, 4.2rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 330px;
  }

  .footer-top {
    grid-template-columns: 1.3fr repeat(3, .8fr);
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .home-page .nav-links {
    display: none;
  }

  .home-page .header-cta {
    margin-left: auto;
  }

  .home-hero {
    padding-top: 54px;
  }

  .home-hero-grid,
  .intro-grid,
  .section-heading-row,
  .proof-grid,
  .trust-grid,
  .faq-layout,
  .home-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 680px;
  }

  .hero-result-card {
    right: 12px;
  }

  .platform-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-grid article {
    min-height: auto;
  }

  .diagnostic-grid h3 {
    margin-top: 26px;
  }

  .proof-grid {
    padding: 0 !important;
  }

  .proof-image img {
    min-height: 460px;
    max-height: 580px;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-card-wide {
    grid-row: auto;
    min-height: 460px;
  }

  .home-cta-grid {
    align-items: start;
  }

  .cta-action {
    min-width: 0;
    align-items: flex-start;
    text-align: left;
  }

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

@media (max-width: 580px) {
  .home-page .container {
    padding-inline: 20px;
  }

  .home-page .nav-bar {
    min-height: 68px;
    padding-inline: 20px;
  }

  .home-page .logo img {
    height: 34px;
  }

  .home-page .header-cta {
    padding: 10px 14px;
    font-size: .76rem;
  }

  .home-hero {
    padding: 44px 0 58px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .hero-lead {
    margin-top: 22px !important;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-btn {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual img {
    height: min(420px, 105vw);
  }

  .hero-result-card {
    right: 9px;
    bottom: 12px;
    left: 9px;
  }

  .platform-row ul {
    gap: 10px 17px;
  }

  .platform-row li {
    font-size: .8rem;
  }

  .home-section {
    padding: 78px 0 !important;
  }

  .home-video-showcase video {
    height: 66vw;
    min-height: 260px;
  }

  .home-page h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .diagnostic-grid {
    margin-top: 46px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card {
    min-height: 315px;
  }

  .proof-image img {
    min-height: 380px;
  }

  .proof-copy {
    padding: 58px 20px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .home-btn-light {
    width: auto;
  }

  .process-list {
    padding-inline: 20px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .trust-points div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .knowledge-card,
  .knowledge-card-wide {
    min-height: 330px;
  }

  .home-cta-section {
    padding: 62px 0 !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .home-modal-content {
    padding: 34px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
