:root {
  --ink: #17232f;
  --blue: #0f416e;
  --teal: #55d8c9;
  --cream: #f8f6f0;
  --muted: #68737b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3,
.brand {
  font-family: Outfit, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.announcement {
  height: 34px;
  background: #102e4b;
  color: #d5eff0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  gap: 8px;
}
.announcement a {
  color: var(--teal);
  font-weight: 700;
}
.nav-shell {
  max-width: 1240px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 0.8;
}
.brand img {
  display: block;
  width: 178px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.brand small {
  font-family: "DM Sans";
  display: block;
  font-size: 7px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-left: 2px;
  margin-top: 6px;
}
.brand-mark {
  color: #fff;
  background: var(--blue);
  height: 33px;
  width: 33px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: Outfit;
  font-size: 23px;
  font-weight: 800;
  font-style: italic;
}
.nav-shell nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.nav-shell nav > a:not(.nav-cta) {
  color: #4e5a62;
}
.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 12px 17px;
  border-radius: 99px;
}
.nav-cta span {
  color: var(--teal);
  padding-left: 8px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
}
.hero {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 610px;
  padding: 85px 28px 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 45px;
  align-items: center;
}
.eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  color: #52606a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow i {
  width: 22px;
  height: 2px;
  background: #e26a52;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(52px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -4px;
  max-width: 680px;
  margin: 20px 0 24px;
}
.hero h1 em,
h2 em {
  font-style: normal;
  color: #e66a52;
}
.hero-text {
  font-size: 17px;
  color: #58646b;
  line-height: 1.65;
  max-width: 510px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 35px 0 48px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 99px;
  padding: 16px 21px;
  font-weight: 700;
  font-size: 14px;
}
.button-dark {
  background: var(--blue);
  color: #fff;
}
.button span {
  color: var(--teal);
  font-size: 19px;
}
.text-link {
  font-weight: 700;
  font-size: 14px;
}
.text-link span {
  color: #e66a52;
  padding-left: 6px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 13px;
}
.trust-row p {
  font-size: 12px;
  line-height: 1.45;
  color: #68737b;
  margin: 0;
}
.avatars {
  display: flex;
}
.avatars b {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d69d79;
  color: #fff;
  border: 2px solid var(--cream);
  margin-right: -8px;
  font-size: 9px;
}
.avatars b:nth-child(2) {
  background: #5f8494;
}
.avatars b:nth-child(3) {
  background: #c76b77;
}
.avatars b:last-child {
  background: #172f48;
}
.hero-visual {
  height: 458px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #b9dfdc;
}
.orbit-one {
  height: 440px;
  width: 440px;
  border-top-color: transparent;
  transform: rotate(-25deg);
}
.orbit-two {
  height: 340px;
  width: 340px;
  border-bottom-color: transparent;
  transform: rotate(52deg);
}
.device {
  width: 355px;
  height: 270px;
  background: #fff;
  box-shadow: 0 25px 55px #1737502e;
  border-radius: 13px;
  padding: 12px;
  transform: rotate(-4deg);
  z-index: 1;
}
.device-bar {
  display: flex;
  gap: 4px;
  padding: 2px 2px 10px;
}
.device-bar span {
  width: 6px;
  height: 6px;
  background: #f0b2a4;
  border-radius: 50%;
}
.device-bar span:nth-child(2) {
  background: #f2ce8a;
}
.device-bar span:last-child {
  background: #79b89e;
}
.dashboard {
  display: flex;
  height: calc(100% - 18px);
  background: #f7fafb;
}
.dash-nav {
  width: 38px;
  background: #103d66;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #55d8c9;
}
.dash-nav b {
  font-size: 19px;
}
.dash-nav i {
  height: 4px;
  background: #86a8c1;
  border-radius: 9px;
}
.dash-main {
  padding: 19px;
  width: 100%;
}
.dash-main p,
.dash-main h3 {
  margin: 0;
}
.dash-main p {
  font-size: 9px;
  color: #71808a;
}
.dash-main h3 {
  font-size: 19px;
  margin-top: 3px;
}
.dash-stats {
  display: flex;
  gap: 10px;
  margin-top: 17px;
}
.dash-stats div {
  background: #fff;
  border-radius: 5px;
  padding: 8px;
  width: 50%;
}
.dash-stats small {
  font-size: 7px;
  color: #869098;
}
.dash-stats b {
  font-size: 16px;
  display: block;
}
.dash-stats span {
  font-size: 7px;
  color: #32ad98;
}
.dash-chart {
  height: 72px;
  background: #fff;
  margin-top: 10px;
  color: #47c6ba;
  padding: 7px;
}
.dash-chart svg {
  width: 100%;
  height: 100%;
}
.hero-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  box-shadow: 0 15px 30px #17375020;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.hero-card strong,
.hero-card small {
  display: block;
}
.hero-card strong {
  font-family: Outfit;
  font-size: 13px;
}
.hero-card small {
  color: #78848a;
  font-size: 8px;
  margin-top: 2px;
}
.card-top {
  right: 10px;
  top: 15px;
}
.mini-icon,
.check {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e7f8f5;
  color: #1f9489;
  font-weight: bold;
}
.card-bottom {
  left: 8px;
  bottom: 24px;
}
.check {
  background: #fff1ec;
  color: #e66a52;
}
.logo-strip {
  border-top: 1px solid #e6e4dd;
  border-bottom: 1px solid #e6e4dd;
  padding: 28px;
  text-align: center;
}
.logo-strip p {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: #818b90;
  margin-bottom: 21px;
}
.logos {
  max-width: 1020px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #53626b;
  font-weight: 700;
  font-size: 21px;
}
.logos span span {
  font-weight: 400;
}
.logo-script {
  font-family: cursive;
  font-size: 28px;
}
.logo-plus {
  font-size: 18px;
}
.logo-strip small {
  display: block;
  margin-top: 18px;
  color: #98a0a0;
  font-size: 10px;
}
.section {
  max-width: 1240px;
  margin: auto;
  padding: 120px 28px;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.section-intro h2,
.stories h2,
.impact h2,
.contact h2 {
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -2.8px;
  margin: 17px 0 0;
}
.section-intro > p:last-child {
  color: #67727a;
  line-height: 1.65;
  align-self: end;
  max-width: 330px;
}
.solution-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.solution-card {
  min-height: 345px;
  padding: 31px;
  border: 1px solid #e2e5e2;
  border-radius: 7px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.solution-card.feature {
  background: #dff4ef;
  border-color: #dff4ef;
}
.solution-icon {
  height: 43px;
  width: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #103d66;
  color: #fff;
  font-size: 21px;
  margin-bottom: 45px;
}
.phone {
  font-size: 30px;
}
.solution-card > p {
  font-size: 10px;
  letter-spacing: 1px;
  color: #63717a;
  font-weight: 700;
  margin-bottom: 9px;
}
.solution-card h3 {
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.solution-card > span {
  font-size: 13px;
  line-height: 1.55;
  color: #637078;
  max-width: 260px;
}
.solution-card a {
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
}
.solution-card a b {
  color: #e66a52;
  margin-left: 4px;
}
.cross-pattern {
  position: absolute;
  width: 155px;
  height: 155px;
  border: 20px solid #bee7dd;
  border-radius: 50%;
  right: -45px;
  bottom: -55px;
}
.impact {
  background: var(--blue);
  color: #fff;
  padding: 112px max(28px, calc((100% - 1184px) / 2));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}
.eyebrow.light {
  color: #abc5d1;
}
.impact h2,
.contact h2 {
  margin: 19px 0 21px;
}
.impact h2 em,
.contact h2 em {
  color: var(--teal);
}
.impact-copy > p:not(.eyebrow) {
  color: #c3d4dc;
  line-height: 1.65;
  max-width: 420px;
}
.button-light {
  background: #fff;
  color: var(--blue);
  margin-top: 18px;
}
.impact-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.impact-numbers div {
  border-left: 1px solid #4d718b;
  padding-left: 16px;
}
.impact-numbers b {
  font-family: Outfit;
  font-size: 42px;
  letter-spacing: -2px;
}
.impact-numbers b span {
  color: var(--teal);
}
.impact-numbers p {
  font-size: 11px;
  color: #bbd0db;
  line-height: 1.5;
  margin: 5px 0;
}
.stories-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.stories-top > p {
  color: #647077;
  line-height: 1.6;
  font-size: 14px;
  max-width: 330px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 20px;
  margin-top: 50px;
}
.video-cover {
  height: 210px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.testimonial-video-cover {
  background: #102e4b;
}
.testimonial-video-cover video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .84;
}
.video-play-indicator {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  color: var(--blue);
  font-size: 15px;
  cursor: pointer;
}
.testimonial-video-cover.is-playing .video-play-indicator { opacity: 0; }
.testimonial-video-cover:hover video { opacity: 1; }
.cover-one {
  background: linear-gradient(135deg, #23556d, #7fc6be);
}
.cover-two {
  background: linear-gradient(135deg, #dc937d, #4c6577);
}
.video-cover:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 20px solid #ffffff55;
  border-radius: 50%;
  transform: translate(40px, -35px);
}
.video-cover button {
  z-index: 1;
  border: 0;
  background: #fff;
  color: #103d66;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding-left: 5px;
  cursor: pointer;
}
.duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #102e4baa;
  color: #fff;
  padding: 5px 7px;
  border-radius: 4px;
  font-size: 10px;
}
.video-card > div:last-child {
  padding: 17px 3px;
}
.video-card small {
  font-size: 9px;
  letter-spacing: 1px;
  color: #df6c55;
  font-weight: 700;
}
.video-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin: 7px 0;
}
.video-card p {
  font-size: 12px;
  color: #768187;
  margin: 0;
}
.quote-card {
  background: #f0b19d;
  border-radius: 8px;
  padding: 29px;
  color: #813a32;
  display: flex;
  flex-direction: column;
}
.quote-card > span {
  font-family: Georgia;
  font-size: 65px;
  line-height: 0.7;
}
.quote-card p {
  font-family: Outfit;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.25;
  margin: 21px 0;
}
.quote-card b {
  font-size: 11px;
  margin-top: auto;
}
.contact {
  background: #132f4d;
  color: #fff;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 85px max(28px, calc((100% - 1184px) / 2));
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid #4d7595;
  border-radius: 50%;
  left: -220px;
  bottom: -440px;
}
.contact-copy,
.contact-actions {
  z-index: 1;
}
.contact-copy > p:not(.eyebrow) {
  color: #c3d4dc;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.whatsapp {
  background: #fff;
  color: #173650;
  border-radius: 9px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 30px #06182835;
}
.whatsapp > span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dff7ea;
  color: #27a768;
  font-size: 25px;
}
.whatsapp small,
.whatsapp b {
  display: block;
}
.whatsapp small {
  font-size: 9px;
  color: #7c898e;
  letter-spacing: 1px;
}
.whatsapp b {
  font-family: Outfit;
  font-size: 17px;
  margin-top: 4px;
}
.whatsapp i {
  font-style: normal;
  color: #e66a52;
  padding-left: 8px;
}
.email-link {
  font-size: 14px;
  font-weight: 700;
  color: #d8e7ec;
  border-bottom: 1px solid #52718a;
  padding-bottom: 11px;
}
.email-link span {
  color: var(--teal);
  float: right;
}
footer {
  max-width: 1240px;
  margin: auto;
  padding: 37px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #617078;
  font-size: 11px;
}
footer p {
  margin: 0;
}
footer address {
  font-style: normal;
  text-align: right;
  line-height: 1.6;
}
footer a {
  text-decoration: underline;
}
.reveal {
  animation: rise 0.7s ease both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 760px) {
  .nav-shell {
    padding: 17px 20px;
  }
  .brand img {
    width: 150px;
    max-height: 42px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-shell nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    z-index: 10;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 12px 20px #0001;
  }
  .nav-shell nav.open {
    display: flex;
  }
  .hero {
    padding: 55px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero h1 {
    letter-spacing: -2.8px;
  }
  .hero-visual {
    height: 370px;
    transform: scale(0.85);
    transform-origin: center;
  }
  .logos {
    gap: 17px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section {
    padding: 75px 22px;
  }
  .section-intro,
  .impact,
  .contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .solution-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: 290px;
  }
  .stories-top {
    display: block;
  }
  .stories-top > p {
    margin-top: 25px;
  }
  .impact {
    padding: 76px 22px;
  }
  .impact-numbers {
    gap: 8px;
  }
  .impact-numbers b {
    font-size: 35px;
  }
  .contact {
    padding: 76px 22px;
  }
  .contact h2 {
    font-size: 46px;
  }
  footer {
    padding: 30px 22px;
    display: grid;
    gap: 18px;
  }
  footer address {
    text-align: left;
  }
  .announcement {
    font-size: 10px;
  }
  .logo-strip {
    padding: 26px 18px;
  }
  .hero-actions {
    gap: 18px;
  }
  .device {
    width: 355px;
  }
  .card-top {
    right: -13px;
  }
  .card-bottom {
    left: -12px;
  }
}
/* Day and night theme controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-toggle {
  border: 1px solid #d7dcda;
  background: #fff;
  color: #355061;
  border-radius: 99px;
  padding: 8px 11px;
  display: flex;
  gap: 6px;
  align-items: center;
  font: 700 11px "DM Sans", sans-serif;
  cursor: pointer;
  transition: 0.2s;
}
.theme-toggle:hover {
  border-color: #5ccbbe;
  transform: translateY(-1px);
}
.theme-icon {
  font-size: 16px;
  line-height: 1;
  color: #e06c54;
}
.theme-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid #55d8c9;
  outline-offset: 3px;
}
body.dark-theme {
  --cream: #101a23;
  --ink: #edf6f5;
  --muted: #a5bac3;
  background: #101a23;
  color: #edf6f5;
}
body.dark-theme .nav-shell nav > a:not(.nav-cta),
body.dark-theme .hero-text,
body.dark-theme .trust-row p,
body.dark-theme .section-intro > p:last-child,
body.dark-theme .stories-top > p,
body.dark-theme .solution-card > span,
body.dark-theme .video-card p,
body.dark-theme footer {
  color: #aec0c6;
}
body.dark-theme .theme-toggle {
  background: #1d2b37;
  border-color: #405462;
  color: #e4f3f1;
}
body.dark-theme .theme-icon {
  color: #ffd36c;
}
body.dark-theme .logo-strip {
  border-color: #263743;
  background: #14212b;
}
body.dark-theme .logos {
  color: #c4d7d8;
}
body.dark-theme .logo-strip small {
  color: #829ba4;
}
body.dark-theme .solution-card {
  background: #182630;
  border-color: #2d4350;
}
body.dark-theme .solution-card.feature {
  background: #183a3d;
  border-color: #225155;
}
body.dark-theme .solution-card > p {
  color: #a7c2c6;
}
body.dark-theme .device,
body.dark-theme .hero-card {
  box-shadow: 0 20px 45px #0008;
}
body.dark-theme .hero-card {
  background: #21323d;
  color: #f1fbfa;
}
body.dark-theme .dash-main {
  color: #17232f;
}
body.dark-theme .quote-card {
  background: #b55e50;
  color: #fff5f0;
}
body.dark-theme .email-link {
  color: #d8eaec;
}
body.dark-theme .announcement {
  background: #08121a;
}
body.dark-theme .brand-mark {
  background: #55bfb4;
  color: #102936;
}
body.dark-theme .orbit {
  border-color: #39726f;
}
.client-preview {
  max-width: 1184px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}
.client-card {
  min-height: 190px;
  padding: 20px;
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid #e2e5e2;
  border-radius: 7px;
  text-align: left;
}
.client-monogram {
  flex: 0 0 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #dff4ef;
  color: var(--blue);
  font: 700 12px Outfit, sans-serif;
}
.client-card-body { min-width: 0; }
.client-card-compact {
  min-height: 400px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  /* background: #fff; */
  background: var(--cream);
  /* border-color: #dce4e1; */
  border-color: var(--cream);
  transition: transform .25s ease, box-shadow .25s ease;
}
.client-logo {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  /* background: #f4f8f6; */
  background: var(--cream); 
  color: var(--blue);
  font: 700 24px Outfit, sans-serif;
}
.client-logo img { width: 92%; height: 88%; object-fit: contain; }
.client-logo-name {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 15px;
  background: linear-gradient(145deg, transparent 18%, #102e4be8 100%);
  color: #fff;
  font: 600 14px/1.15 Outfit, sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.client-card-compact:hover,
.client-card-compact:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 25px #17375020;
}
.client-card-compact:hover .client-logo-name,
.client-card-compact:focus-visible .client-logo-name { opacity: 1; transform: none; }
.client-card-compact:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.client-directory-logo {
  width: 145px;
  height: 145px;
  flex: 0 0 145px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #f1f7f5;
  color: var(--blue);
  font: 700 20px Outfit, sans-serif;
}
.client-directory-logo img { width: 92%; height: 92%; object-fit: contain; }
.client-type,
.client-card h3,
.client-card > p,
.client-card address { margin: 0; }
.client-type {
  color: #df6c55;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.client-card h3 {
  margin: 5px 0 7px;
  font: 600 17px/1.12 Outfit, sans-serif;
}
.client-card-body > p:not(.client-type) {
  color: #68757b;
  font-size: 12px;
  line-height: 1.45;
}
.client-card address {
  margin-top: 12px;
  color: #7c878b;
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}
.client-video-preview {
  position: relative;
  width: 100%;
  height: 135px;
  margin-top: 15px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #102e4b;
  cursor: pointer;
}
.client-video-preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .78;
}
.client-video-preview > span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
}
.client-video-preview:hover video { opacity: 1; }
.client-video-preview:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.client-actions a,
.client-directory-link {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.client-actions span,
.client-directory-link span { color: #e66a52; margin-left: 3px; }
.client-status,
.client-empty {
  display: block;
  margin-top: 14px;
  color: #98a0a0;
  font-size: 10px;
}
.client-directory-link {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e66a52;
}
.directory-hero {
  max-width: 1184px;
  margin: auto;
  padding: 90px 28px 75px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.directory-hero h1 {
  margin: 20px 0 20px;
  max-width: 700px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -3.5px;
}
.directory-hero h1 em { color: #e66a52; font-style: normal; }
.directory-hero > div:first-child > p:last-child {
  max-width: 500px;
  color: #68757b;
  line-height: 1.6;
}
.directory-count {
  min-width: 180px;
  padding: 18px 0 18px 22px;
  border-left: 1px solid #e66a52;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.directory-count strong { color: var(--blue); font: 700 54px/1 Outfit, sans-serif; }
.directory-count span { color: #68757b; font-size: 11px; line-height: 1.4; }
.client-directory { padding-top: 75px; }
.directory-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.directory-toolbar h2 { margin: 12px 0 0; font: 600 38px/1 Outfit, sans-serif; }
.client-search {
  width: min(100%, 330px);
  border-bottom: 1px solid #bbc6c4;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e66a52;
}
.client-search span { font-size: 22px; }
.client-search input { width: 100%; padding: 12px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font: 13px "DM Sans", sans-serif; }
.client-search input::placeholder { color: #899397; }
.client-directory-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.client-video-panel {
  position: relative;
  margin-top: 30px;
  padding: 28px;
  background: #dff4ef;
  border-radius: 8px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 28px;
}
.client-video-panel[hidden] { display: none; }
.video-panel-heading h2 { margin: 10px 0 0; font: 600 30px/1.1 Outfit, sans-serif; }
.client-video-panel video { width: 100%; max-height: 380px; display: block; border-radius: 5px; background: #102e4b; }
.video-panel-close { position: absolute; top: 15px; right: 18px; border: 0; background: transparent; color: var(--blue); font-size: 27px; cursor: pointer; }
.client-video-link { padding: 0; border: 0; background: transparent; color: var(--blue); font: 700 11px "DM Sans", sans-serif; cursor: pointer; }
body.dark-theme .client-card { background: #182630; border-color: #2d4350; }
body.dark-theme .client-card-compact { background: #182630; }
body.dark-theme .client-card-compact .client-logo { background: #21323d; }
body.dark-theme .client-monogram { background: #24484a; color: #d9f7f0; }
body.dark-theme .client-logo { background: #24484a; color: #d9f7f0; }
body.dark-theme .client-directory-logo { background: #213b42; color: #d9f7f0; }
body.dark-theme .client-card-body > p:not(.client-type),
body.dark-theme .client-card address,
body.dark-theme .directory-hero > div:first-child > p:last-child,
body.dark-theme .directory-count span { color: #aec0c6; }
body.dark-theme .client-actions a,
body.dark-theme .client-directory-link,
body.dark-theme .directory-count strong { color: var(--teal); }
body.dark-theme .client-search input { color: var(--ink); }
body.dark-theme .directory-count { border-color: var(--teal); }
body.dark-theme .client-video-panel { background: #183a3d; }
body.dark-theme .video-panel-close,
body.dark-theme .client-video-link { color: var(--teal); }
.products-hero { max-width: 1184px; margin: auto; padding: 90px 28px 82px; display: flex; align-items: end; justify-content: space-between; gap: 45px; }
.products-hero h1 { margin: 20px 0; font-size: clamp(50px, 6vw, 78px); line-height: .97; letter-spacing: -3.5px; }
.products-hero h1 em { color: #e66a52; font-style: normal; }
.products-hero > div:first-child > p:last-child { max-width: 470px; color: #68757b; line-height: 1.65; }
.products-hero-note { min-width: 180px; padding: 15px 0 15px 20px; border-left: 1px solid #e66a52; display: flex; align-items: baseline; gap: 10px; }
.products-hero-note span { color: var(--blue); font: 700 54px/1 Outfit, sans-serif; }
.products-hero-note p { color: #68757b; font-size: 11px; line-height: 1.4; margin: 0; }
.products-list { padding-top: 80px; }
.products-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.products-intro h2 { margin: 17px 0 0; font-size: clamp(40px, 4.5vw, 60px); line-height: 1; letter-spacing: -2.8px; }
.products-intro h2 em { color: #e66a52; font-style: normal; }
.product-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.product-card { min-height: 255px; padding: 27px 29px 24px; display: flex; flex-direction: column; border: 1px solid #e2e5e2; border-radius: 7px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:nth-child(3n + 1) { background: #dff4ef; border-color: #dff4ef; }
.product-card:hover { transform: translateY(-5px); border-color: #9ed9d0; box-shadow: 0 15px 30px #17375018; }
.product-number { color: #e66a52; font: 700 13px Outfit, sans-serif; }
.product-card-content { margin-top: 35px; }
.product-card-content p { margin: 0 0 8px; color: #df6c55; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.product-card h3 { margin: 0 0 11px; font-size: 26px; line-height: 1.04; letter-spacing: -1px; }
.product-card-content span { display: block; max-width: 470px; color: #68757b; font-size: 13px; line-height: 1.55; }
.product-card > a { margin-top: auto; color: var(--blue); font-size: 12px; font-weight: 700; }
.product-card > a b { color: #e66a52; margin-left: 5px; }
.products-cta { padding: 82px max(28px, calc((100% - 1184px) / 2)); background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.products-cta h2 { margin: 18px 0 0; font-size: clamp(40px, 4.5vw, 60px); line-height: .98; letter-spacing: -2.8px; }
.products-cta h2 em { color: var(--teal); font-style: normal; }
body.dark-theme .products-hero > div:first-child > p:last-child,
body.dark-theme .products-hero-note p { color: #aec0c6; }
body.dark-theme .products-hero-note span { color: var(--teal); }
body.dark-theme .product-card { background: #182630; border-color: #2d4350; }
body.dark-theme .product-card:nth-child(3n + 1) { background: #183a3d; border-color: #225155; }
body.dark-theme .product-card-content span { color: #aec0c6; }
body.dark-theme .product-card > a { color: var(--teal); }
@media (max-width: 760px) {
  .theme-label {
    display: none;
  }
  .theme-toggle {
    padding: 8px 10px;
  }
  .nav-shell nav {
    top: 79px;
  }
  body.dark-theme .nav-shell nav {
    background: #182630;
  }
  .client-preview,
  .client-directory-grid { grid-template-columns: 1fr; }
  .client-video-panel { grid-template-columns: 1fr; padding: 24px 18px 18px; }
  .products-hero { display: block; padding: 65px 22px 50px; }
  .products-hero h1 { letter-spacing: -2.5px; }
  .products-hero-note { margin-top: 35px; }
  .products-list { padding-top: 55px; }
  .products-intro { display: block; }
  .product-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .product-card { min-height: 245px; padding: 24px; }
  .products-cta { padding: 70px 22px; display: block; }
  .products-cta .button { margin-top: 30px; }
  .directory-hero { display: block; padding: 65px 22px 50px; }
  .directory-hero h1 { letter-spacing: -2.5px; }
  .directory-count { margin-top: 35px; }
  .directory-toolbar { display: block; }
  .client-search { margin-top: 26px; width: 100%; }
  .client-directory { padding-top: 55px; }
}
