/* Current shared components and homepage composition. Global primitives live in site.css. */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  margin: 12px 16px 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.site-header__inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  min-height: 68px;
  padding: 0 27px;
  background: #091a36;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-control);
  box-shadow: 0 12px 32px rgba(7, 27, 59, 0.13);
}
.site-logo {
  display: block;
  flex: none;
  width: 188px;
  line-height: 0;
}
.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__list a {
  position: relative;
  color: #edf5ff;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav__list a[aria-current] {
  color: #72e5d5;
}
.site-nav__list a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--brand-teal);
  transition: right 0.2s ease;
}
.site-nav__list a:hover::after,
.site-nav__list a[aria-current]::after {
  right: 0;
}
.button--nav {
  background: #fff;
  color: #0b2a58;
  min-height: 42px;
  padding: 10px 21px;
  font-size: 0.8rem;
}
.button--nav:hover {
  background: #d7f7f1;
  color: #072d56;
}
.menu-toggle {
  display: none;
}
.home-section {
  padding-block: clamp(70px, 7vw, 80px);
}
.home-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: #0b3d91;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.home-kicker__dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #00c2a8;
  box-shadow: 0 0 0 5px #d9f7f2;
}
.home-hero {
  overflow: hidden;
  background: radial-gradient(
    ellipse 60% 36% at 50% 56%,
    #f2faff 0%,
    #fff 100%
  );
}
.home-hero__content {
  max-width: 1000px;
  text-align: center;
  padding-top: clamp(78px, 7vw, 104px);
  padding-bottom: 48px;
}
.home-hero .home-kicker {
  display: inline-flex;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 27px;
  padding: 9px 16px;
  border: 1px solid #dcecf3;
  border-radius: var(--radius-control);
  background: #f5fbfd;
  letter-spacing: 0.1em;
}
.home-hero h1 {
  max-width: 1000px;
  margin: 0 auto 21px;
  color: #091b39;
  font-size: clamp(2.5rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-hero h1 span {
  position: relative;
  display: table;
  margin: 1px auto 0;
  padding-bottom: 10px;
  color: #0b3d91;
  background: linear-gradient(110deg, #0b3d91 20%, #087bb0 70%, #009b92 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-hero h1 span::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 1px;
  width: 44%;
  height: 4px;
  border-radius: 100%;
  background: linear-gradient(90deg, #0b3d91, #00c2a8);
  transform: rotate(-1.5deg);
}
.home-hero__lead {
  max-width: 1000px;
  margin: 0 auto 23px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #52647d;
}
.home-hero__capabilities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  min-height: 39px;
  margin: 0 auto 26px;
  padding: 9px 18px;
  border: 1px solid #e1edf4;
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(7, 60, 120, 0.04);
  color: #385876;
  font-size: 0.77rem;
  font-weight: 600;
}
.home-hero__capabilities i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00c2a8;
}
.home-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.home-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 52px;
  padding: 12px 25px;
  border: 1px solid #cbd9e7;
  border-radius: var(--radius-control);
  background: #fff;
  color: #0b2e61;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.home-hero__secondary:hover {
  border-color: #0b3d91;
  background: #f2f8ff;
  color: #0b3d91;
}
.home-hero__secondary span {
  margin: 0;
}
.home-hero__image-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
}
.home-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 50%;
}
.home-hero__image-label {
  position: absolute;
  bottom: 22px;
  right: 24px;
  left: auto;
  display: flex;
  gap: 7px;
}
.home-hero__image-label span {
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(8px);
  color: #0b3d91;
  border: 1px solid #e7f0f7;
  border-radius: var(--radius-control);
  padding: 7px 11px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(7, 27, 59, 0.07);
}
.home-intro {
  overflow: hidden;
  padding-bottom: clamp(68px, 7vw, 96px);
  background:
    radial-gradient(circle at 91% 45%, #eef8ff 0, transparent 30%), #fbfdff;
}
.home-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(330px, 0.9fr);
  gap: clamp(14px, 2.5vw, 38px);
  align-items: center;
}
.home-intro__copy {
  position: relative;
  z-index: 1;
}
.home-intro .home-kicker {
  color: #0b4da7;
}
.home-intro .home-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.home-services h2,
.feature-story h2,
.home-process h2,
.home-faq h2 {
  font-size: var(--font-section-title);
  font-weight: 600;
  line-height: 1.27;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-intro h2 {
  max-width: 810px;
  margin: 0 0 22px;
  color: #102349;
  font-size: var(--font-section-title);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-intro h2 span,
.home-services h2 span,
.home-process h2 span,
.home-faq h2 span {
  color: #0b3d91;
}
.home-intro h2 span {
  display: block;
  background: linear-gradient(110deg, #1255bd, #168dd0 58%, #0aa9a3);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-intro__copy > p:not(.home-kicker) {
  max-width: 620px;
  margin-bottom: 33px;
  color: #50627d;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.home-intro__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
}
.home-intro__value {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 18px;
  border-right: 1px solid #cbdaf0;
  color: #475b78;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}
.home-intro__value:first-child {
  padding-left: 0;
}
.home-intro__value:last-child {
  padding-right: 0;
  border-right: 0;
}
.home-intro__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #1767c7;
}
.home-intro__value:last-child .home-intro__icon {
  background: #e4f9f8;
  color: #0aafb5;
}
.home-intro__icon svg {
  width: 30px;
  height: 30px;
}
.home-intro__art {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  justify-self: end;
}
.home-services {
  background: #fff;
}
.home-services__layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.85fr) minmax(0, 1.75fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: start;
}
.home-services__intro {
  position: sticky;
  top: 115px;
  padding-top: 24px;
}
.home-services h2 {
  margin: 0 0 20px;
  max-width: 390px;
}
.home-services__intro > p:not(.home-kicker) {
  max-width: 365px;
  color: #53647a;
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 28px;
}
.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.solution-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 368px;
  padding: 22px 24px 24px;
  border-radius: var(--radius-lg);
  background: #e8f5ff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(11, 61, 145, 0.14);
}
.solution-card--shop {
  background: #e7f8f3;
}
.solution-card--shopify {
  background: #eaf0ff;
}
.solution-card--seo {
  background: #ecf6fa;
}
.solution-card__number {
  z-index: 2;
  color: #19518c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.solution-card__art {
  position: relative;
  flex: 1;
  min-height: 222px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.solution-card__art::before {
  content: "";
  position: absolute;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.47);
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.17);
  z-index: -1;
}
.solution-card__bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: end;
  z-index: 2;
}
.solution-card h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 7px;
  letter-spacing: -0.03em;
}
.solution-card p {
  font-size: 0.77rem;
  line-height: 1.5;
  color: #59708b;
  max-width: 250px;
}
.solution-card__arrow {
  display: grid;
  place-items: center;
  flex: none;
  width: 35px;
  height: 35px;
  background: #fff;
  color: #0b3d91;
  border-radius: 50%;
  font-size: 1.25rem;
}
.mini-browser {
  position: absolute;
  width: 190px;
  height: 142px;
  left: calc(50% - 105px);
  top: 37px;
  background: #fff;
  border: 5px solid #0b3d91;
  border-radius: var(--radius-sm);
  box-shadow: 13px 18px 20px rgba(11, 61, 145, 0.22);
  transform: rotate(-8deg);
  overflow: hidden;
}
.mini-browser__bar {
  height: 18px;
  background: #0b3d91;
  display: flex;
  gap: 4px;
  align-items: center;
  padding-left: 9px;
}
.mini-browser__bar i {
  width: 4px;
  height: 4px;
  background: #a4e9e0;
  border-radius: 50%;
}
.mini-browser__scene {
  height: calc(100% - 18px);
  padding: 12px;
  background: linear-gradient(135deg, #f8fbff, #c8e6fb);
}
.mini-browser__scene b {
  display: block;
  width: 95%;
  height: 54px;
  border-radius: 3px;
  background: linear-gradient(135deg, #06408a, #00c2a8);
}
.mini-browser__scene span {
  display: block;
  width: 57%;
  height: 5px;
  margin-top: 9px;
  background: #8cb4d4;
  border-radius: var(--radius-xs);
}
.mini-browser__scene span + span {
  width: 38%;
  margin-top: 5px;
}
.mini-browser__scene em {
  display: block;
  width: 42px;
  height: 8px;
  margin-top: 8px;
  border-radius: var(--radius-xs);
  background: #00c2a8;
}
.mini-device {
  position: absolute;
  width: 54px;
  height: 104px;
  left: calc(50% + 61px);
  top: 91px;
  border: 4px solid #0b3d91;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 8px 12px 15px rgba(11, 61, 145, 0.19);
  transform: rotate(8deg);
  padding: 17px 5px;
}
.mini-device i {
  display: block;
  height: 29px;
  background: #71cbd3;
  border-radius: 2px;
}
.mini-device b,
.mini-device span {
  display: block;
  height: 5px;
  background: #bad4e4;
  border-radius: var(--radius-xs);
}
.mini-device b {
  margin-top: 7px;
}
.mini-device span {
  width: 60%;
  margin-top: 4px;
}
.shop-object {
  position: relative;
  width: 140px;
  height: 135px;
  transform: rotate(-8deg);
  filter: drop-shadow(15px 20px 14px rgba(0, 100, 113, 0.2));
}
.shop-object__handle {
  position: absolute;
  left: 45px;
  top: 0;
  width: 55px;
  height: 69px;
  border: 13px solid #087f91;
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.shop-object__body {
  position: absolute;
  bottom: 0;
  width: 140px;
  height: 103px;
  border-radius: var(--radius-xs) var(--radius-xs) var(--radius-md)
    var(--radius-md);
  background: linear-gradient(135deg, #0b3d91, #00c2a8);
  display: grid;
  place-items: center;
  transform: skewY(-3deg);
}
.shop-object__body span {
  font-size: 69px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.shop-spark {
  position: absolute;
  top: 31px;
  right: 42px;
  font-size: 38px;
  color: #00a893;
}
.stack {
  position: absolute;
  width: 147px;
  height: 108px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 10px 14px 22px rgba(11, 61, 145, 0.17);
  border: 3px solid #aecdec;
}
.stack--one {
  transform: translate(-28px, -24px) rotate(-13deg);
  background: linear-gradient(150deg, #0b3d91 55%, #5ed8c7 55%);
}
.stack--two {
  transform: translate(5px, 2px) rotate(4deg);
  background: linear-gradient(140deg, #fff 50%, #b5e9e7 50%);
}
.stack--three {
  width: 102px;
  height: 75px;
  transform: translate(46px, 37px) rotate(14deg);
  background: linear-gradient(135deg, #fff 45%, #00c2a8 45%);
}
.stack__spark {
  position: absolute;
  right: 34px;
  top: 14px;
  font-size: 34px;
  color: #0b3d91;
}
.growth-bars {
  position: absolute;
  bottom: 29px;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 145px;
  transform: perspective(300px) rotateY(-10deg);
}
.growth-bars i {
  display: block;
  width: 27px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(#0ac7ae, #0b3d91);
  box-shadow: 7px 9px 14px rgba(11, 61, 145, 0.18);
}
.growth-bars i:nth-child(1) {
  height: 46px;
}
.growth-bars i:nth-child(2) {
  height: 73px;
}
.growth-bars i:nth-child(3) {
  height: 90px;
}
.growth-bars i:nth-child(4) {
  height: 115px;
}
.growth-bars i:nth-child(5) {
  height: 139px;
}
.growth-arrow {
  position: absolute;
  top: -2px;
  right: 51px;
  font-size: 110px;
  line-height: 1;
  color: #0b3d91;
  transform: rotate(-5deg);
  text-shadow: 6px 9px 0 rgba(0, 194, 168, 0.3);
}
.feature-story {
  background: #f6f9fc;
}
.feature-story--reverse {
  background: #fff;
}
.feature-story__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}
.feature-story--reverse .feature-story__grid {
  grid-template-columns: 0.94fr 1.06fr;
}
.feature-story__visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: #e6f3fc;
  box-shadow: 0 18px 42px rgba(17, 73, 127, 0.08);
}
.feature-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-story__copy {
  max-width: 530px;
}
.feature-story h2 {
  margin: 0 0 23px;
}
.feature-story__copy > p:not(.home-kicker) {
  font-size: 1.02rem;
  color: #53647a;
  line-height: 1.75;
  margin-bottom: 26px;
}
.feature-story__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 13px;
}
.feature-story__list li {
  position: relative;
  padding-left: 25px;
  font-size: 0.9rem;
  font-weight: 500;
}
.feature-story__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #008e80;
  font-weight: 700;
}
.home-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 84% 3%,
      rgba(12, 110, 153, 0.28),
      transparent 34%
    ),
    linear-gradient(135deg, #071b34, #0a2443 62%, #092b48);
  color: #fff;
}
.home-process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(155, 219, 250, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 219, 250, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 28%, #000 100%);
  pointer-events: none;
}
.home-process::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 580px;
  height: 580px;
  right: -260px;
  bottom: -380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.16), transparent 68%);
  pointer-events: none;
}
.home-process .home-kicker {
  color: #71e3d5;
}
.home-process__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  column-gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: 46px;
}
.home-process__head .home-kicker {
  grid-column: 1/-1;
}
.home-process h2 {
  margin: 0;
  max-width: 630px;
}
.home-process h2 span {
  background: linear-gradient(105deg, #81e6dc, #7bbefa);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-process__head > p:not(.home-kicker) {
  max-width: 430px;
  justify-self: end;
  padding-left: 22px;
  border-left: 2px solid #58d6cf;
  color: #c5d5e7;
  font-size: 1rem;
  line-height: 1.7;
}
.home-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.home-process__step {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 282px;
  padding: 25px;
  border: 1px solid rgba(151, 201, 235, 0.22);
  border-radius: var(--radius-md);
  background: linear-gradient(
    145deg,
    rgba(26, 65, 107, 0.82),
    rgba(10, 35, 64, 0.9)
  );
  box-shadow: 0 16px 36px rgba(1, 13, 31, 0.13);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.home-process__step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #58e1d2, #61a8f3);
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.home-process__step::after {
  content: "";
  position: absolute;
  top: -105px;
  right: -110px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(89, 175, 246, 0.16),
    transparent 68%
  );
  pointer-events: none;
}
.home-process__step:hover {
  transform: translateY(-7px);
  border-color: rgba(107, 225, 216, 0.62);
  box-shadow: 0 24px 46px rgba(1, 13, 31, 0.25);
}
.home-process__step:hover::before {
  transform: scaleX(1);
}
.home-process__step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.home-process__number {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(111, 226, 214, 0.26);
  border-radius: var(--radius-control);
  background: rgba(33, 123, 143, 0.18);
  color: #86e9df;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.home-process__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(134, 203, 240, 0.19);
  border-radius: 10px;
  background: rgba(130, 195, 235, 0.1);
  color: #92dff0;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.home-process__icon svg {
  width: 32px;
  height: 32px;
}
.home-process__step:hover .home-process__icon {
  transform: translateY(-3px);
  background: rgba(130, 225, 219, 0.17);
}
.home-process__steps h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 45px 0 10px;
}
.home-process__steps p {
  color: #c1d0e1;
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 230px;
}
@keyframes process-step-enter {
  from {
    opacity: 0.45;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-process.is-visible .home-process__step {
  animation: process-step-enter 0.65s ease-out backwards;
}
.home-process.is-visible .home-process__step:nth-child(2) {
  animation-delay: 0.09s;
}
.home-process.is-visible .home-process__step:nth-child(3) {
  animation-delay: 0.18s;
}
.home-process.is-visible .home-process__step:nth-child(4) {
  animation-delay: 0.27s;
}
@media (max-width: 959px) {
  .home-process__head {
    display: block;
    margin-bottom: 30px;
  }
  .home-process__head > p:not(.home-kicker) {
    justify-self: start;
    max-width: 580px;
    margin-top: 24px;
  }
  .home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-process__step {
    min-height: 254px;
  }
}
.home-faq {
  background: #fff;
}
.home-faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(55px, 8vw, 115px);
}
.home-faq h2 {
  margin: 0 0 22px;
  max-width: 390px;
}
.home-faq__grid > div:first-child > p:not(.home-kicker) {
  color: #53647a;
  max-width: 350px;
  line-height: 1.7;
  margin-bottom: 23px;
}
.home-faq .faq-list summary {
  font-size: 1rem;
}
@media (max-width: 1100px) {
  .site-logo {
    width: 165px;
  }
  .site-nav {
    gap: 18px;
  }
  .site-nav__list {
    gap: 17px;
  }
  .home-services__layout {
    grid-template-columns: 1fr 1.65fr;
    gap: 35px;
  }
  .solution-card {
    min-height: 330px;
    padding: 18px;
  }
  .solution-card__art {
    min-height: 190px;
  }
  .growth-arrow {
    right: 18px;
  }
}
@media (max-width: 959px) {
  .site-header {
    top: 8px;
    margin: 8px 12px 0;
  }
  .site-header__inner {
    min-height: 66px;
    padding-inline: 20px;
  }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    border: 1px solid #385579;
    border-radius: 50%;
    background: #163458;
  }
  .menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 19px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }
  .site-nav__list a {
    color: #091b39;
  }
  .site-nav .button--nav {
    background: #0b3d91;
    color: #fff;
  }
  .home-hero__content {
    padding-top: 82px;
  }
  .home-services__layout {
    display: block;
  }
  .home-services__intro {
    position: static;
    padding: 0;
    margin-bottom: 44px;
  }
  .home-services h2,
  .home-services__intro > p:not(.home-kicker) {
    max-width: 620px;
  }
  .home-services__grid {
    max-width: 780px;
    margin-inline: auto;
  }
  .feature-story__grid,
  .feature-story--reverse .feature-story__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .feature-story--reverse .feature-story__copy {
    order: 2;
  }
  .feature-story--reverse .feature-story__visual {
    order: 1;
  }
  .feature-story__visual {
    max-width: 780px;
  }
  .feature-story__copy {
    max-width: 680px;
  }
  .home-intro__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .home-intro__art {
    justify-self: center;
    max-width: 500px;
  }
  .home-faq__grid {
    gap: 50px;
  }
}
@media (max-width: 639px) {
  .site-header {
    margin: 8px 10px 0;
  }
  .site-header__inner {
    padding-inline: 15px;
    min-height: 62px;
    border-radius: 10px;
  }
  .site-logo {
    width: 156px;
  }
  .home-section {
    padding-block: 64px;
  }
  .home-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    margin-bottom: 21px;
  }
  .home-hero__content {
    padding-top: 64px;
    padding-bottom: 38px;
  }
  .home-hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
    line-height: 1.22;
    margin-bottom: 20px;
    letter-spacing: -0.042em;
  }
  .home-hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }
  .home-hero__actions {
    gap: 11px;
  }
  .home-hero__image-wrap {
    width: calc(100% - 20px);
    aspect-ratio: 1.18;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .home-hero__image {
    object-position: 55% center;
  }
  .home-hero__image-label {
    right: 10px;
    bottom: 11px;
    left: 10px;
    justify-content: center;
    gap: 5px;
  }
  .home-hero__image-label span {
    padding: 5px 8px;
    font-size: 0.47rem;
  }
  .home-hero .home-kicker {
    margin-bottom: 22px;
    padding: 8px 12px;
    font-size: 0.59rem;
  }
  .home-hero h1 span {
    padding-bottom: 8px;
  }
  .home-hero h1 span::after {
    height: 3px;
  }
  .home-hero__capabilities {
    width: auto;
    max-width: 340px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px 10px;
    padding: 10px 13px;
    line-height: 1.4;
  }
  .home-hero__capabilities i {
    display: none;
  }
  .home-hero__capabilities span + span::before {
    content: "·";
    margin-right: 9px;
    color: #00aa9c;
  }
  .home-hero__secondary {
    gap: 15px;
    padding: 12px 20px;
  }
  .home-intro {
    padding-bottom: 64px;
  }
  .home-intro__layout {
    gap: 18px;
  }
  .home-intro .home-kicker {
    margin: 0 0 22px;
  }
  .home-intro h2,
  .home-services h2,
  .feature-story h2,
  .home-process h2,
  .home-faq h2 {
    font-size: var(--font-section-title);
    line-height: 1.28;
  }
  .home-intro h2 {
    margin-bottom: 19px;
  }
  .home-intro__copy > p:not(.home-kicker) {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }
  .home-intro__values {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-intro__value,
  .home-intro__value:first-child {
    padding: 0;
    border-right: 0;
  }
  .home-intro__icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
  }
  .home-intro__icon svg {
    width: 26px;
    height: 26px;
  }
  .home-intro__value br {
    display: none;
  }
  .home-intro__art {
    max-width: 400px;
  }
  .home-process__step {
    padding: 22px;
  }
  .home-process__icon {
    width: 54px;
    height: 54px;
  }
  .home-process__icon svg {
    width: 30px;
    height: 30px;
  }
  .home-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .solution-card {
    min-height: 328px;
    border-radius: var(--radius-lg);
    padding: 20px 23px;
  }
  .solution-card__art {
    min-height: 205px;
  }
  .solution-card h3 {
    font-size: 1.4rem;
  }
  .feature-story__grid,
  .feature-story--reverse .feature-story__grid {
    gap: 38px;
  }
  .feature-story__visual {
    aspect-ratio: 1.13;
    border-radius: var(--radius-md);
  }
  .feature-story__copy > p:not(.home-kicker) {
    font-size: 0.98rem;
  }
  .home-process__head {
    display: block;
    margin-bottom: 30px;
  }
  .home-process__head > p:not(.home-kicker) {
    margin-top: 20px;
  }
  .home-process__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-process__step {
    min-height: 0;
  }
  .home-process__steps h3 {
    margin: 27px 0 8px;
  }
  .home-process__steps p {
    font-size: 0.88rem;
  }
  .home-faq__grid {
    display: block;
  }
  .home-faq__grid > div:first-child {
    margin-bottom: 40px;
  }
  .home-faq .faq-list summary {
    font-size: 0.94rem;
  }
}
@media (max-width: 359px) {
  .home-hero__actions {
    flex-direction: column;
  }
  .home-hero__capabilities {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 18px;
  }
  .home-hero__capabilities i {
    display: none;
  }
  .home-process__steps {
    grid-template-columns: 1fr;
  }
  .home-hero h1 {
    font-size: 1.75rem;
  }
  .home-hero__secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Fallback service detail template. */
.page-hero--detail {
  padding-block: 90px;
  background: #f6f9fc;
}
.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: center;
}
.detail-hero__copy h1 {
  max-width: 610px;
}
.detail-hero__copy > p:not(.eyebrow) {
  max-width: 560px;
}
.detail-hero__visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e5f4fc;
  box-shadow: 0 20px 46px rgba(11, 61, 145, 0.1);
}
.detail-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 959px) {
  .detail-hero__grid {
    grid-template-columns: 1fr;
  }
  .detail-hero__visual {
    max-width: 780px;
  }
}
@media (max-width: 639px) {
  .page-hero--detail {
    padding-block: 72px;
  }
  .detail-hero__grid {
    gap: 42px;
  }
  .detail-hero__visual {
    border-radius: var(--radius-md);
    aspect-ratio: 1.16;
  }
}

/* Shared header dropdowns. The same panels become accordions inside the mobile menu. */
.site-header__inner {
  position: relative;
}
.site-nav {
  display: block;
  position: static;
  justify-self: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.site-nav__dropdown-item {
  position: static;
}
.site-nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 960px) {
  /* Stretch the hover target to meet the panel: no dead strip below the nav link. */
  .site-nav {
    display: flex;
    align-self: stretch;
    align-items: stretch;
  }
  .site-nav__list {
    align-items: stretch;
  }
  .site-nav__list > li {
    display: flex;
    align-items: center;
  }
  .site-nav__dropdown-trigger {
    height: 100%;
  }
}
.nav-dropdown-toggle {
  appearance: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #e9f4ff;
  cursor: pointer;
}
.nav-dropdown-toggle span {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.nav-dropdown-toggle[aria-expanded="true"] span {
  transform: translateY(2px) rotate(225deg);
}
.nav-dropdown-toggle:focus-visible {
  outline: 2px solid #65e4d0;
  outline-offset: 1px;
  border-radius: 4px;
}
.site-nav__mobile-cta {
  display: none;
}
.site-header__cta {
  justify-self: end;
}
.site-header__inner:has(.site-nav__dropdown-item.is-open) {
  border-radius: var(--radius-control) var(--radius-control) 0 0;
}
.nav-mega {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 5;
  max-height: calc(100vh - 95px);
  overflow-y: auto;
  padding: 30px 38px 35px;
  background: #fff;
  color: #091b39;
  border: 1px solid #e1e9f2;
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 24px 50px rgba(7, 27, 59, 0.17);
}
.site-nav__dropdown-item.is-open .nav-mega {
  display: block;
}
.nav-mega a::after {
  display: none;
}
.nav-mega__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4ebf2;
}
.nav-mega__heading span {
  color: #60758f;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.nav-mega__heading p {
  margin: 7px 0 0;
  color: #091b39;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.nav-mega__heading a {
  flex: none;
  padding: 9px 16px;
  border: 1px solid #cfdcef;
  border-radius: var(--radius-control);
  color: #0b3d91;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-mega__heading a span {
  margin-left: 8px;
  color: inherit;
  font-size: 1rem;
  letter-spacing: 0;
}
.nav-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 30px;
}
.site-nav__list .nav-mega__link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 14px;
  min-height: 112px;
  padding: 22px 2px 20px;
  border-bottom: 1px solid #e4ebf2;
  color: #091b39;
  white-space: normal;
  transition: background 0.2s ease;
}
.site-nav__list .nav-mega__link:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.nav-mega__link:hover strong,
.nav-mega__link:focus-visible strong,
.nav-mega__link[aria-current] strong {
  color: #0b3d91;
}
.nav-mega__number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: #eaf5fc;
  color: #0b3d91;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
}
.nav-mega__link:nth-child(2) .nav-mega__number,
.nav-mega__link:nth-child(5) .nav-mega__number {
  background: #e1f7f3;
  color: #008b80;
}
.nav-mega__link strong {
  display: block;
  margin: 1px 0 7px;
  font-size: 0.93rem;
  line-height: 1.35;
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-mega__link small {
  display: block;
  max-width: 300px;
  color: #5c6d82;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.55;
}
.nav-mega__arrow {
  color: #7a97b5;
  font-size: 1.05rem;
}
.nav-mega__link--contact .nav-mega__number {
  background: #0b3d91;
  color: #fff;
  font-size: 1.1rem;
}

@media (max-width: 959px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }
  .site-header__cta {
    display: none;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    width: 100%;
    justify-self: stretch;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 12px 22px 24px;
    background: #fff;
    border: 1px solid #d6e5f2;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 30px rgba(7, 27, 59, 0.12);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav__list {
    display: block;
  }
  .site-nav__list > li {
    border-bottom: 1px solid #e5ecf3;
  }
  .site-nav__list > li > a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
  }
  .site-nav__list a::after {
    display: none;
  }
  .site-nav__dropdown-trigger > a {
    flex: 1;
    padding: 14px 0;
    font-size: 1.1rem;
  }
  .nav-dropdown-toggle {
    width: 44px;
    height: 44px;
    color: #0b3d91;
  }
  .site-header__inner:has(.site-nav__dropdown-item.is-open) {
    border-radius: var(--radius-md);
  }
  .nav-mega {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0 0 16px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .nav-mega__heading {
    padding: 8px 0 13px;
  }
  .nav-mega__heading p {
    font-size: 0.9rem;
  }
  .nav-mega__heading a {
    padding: 7px 10px;
    font-size: 0.72rem;
  }
  .nav-mega__grid {
    display: block;
  }
  .site-nav__list .nav-mega__link {
    min-height: 0;
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    gap: 11px;
    padding: 13px 0;
    border-bottom: 1px solid #e4ebf2;
  }
  .site-nav__list .nav-mega__link:nth-last-child(-n + 3) {
    border-bottom: 1px solid #e4ebf2;
  }
  .site-nav__list .nav-mega__link:last-child {
    border-bottom: 0;
  }
  .nav-mega__number {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-xs);
  }
  .nav-mega__link strong {
    font-size: 0.88rem;
    margin: 0 0 3px;
  }
  .nav-mega__link small {
    font-size: 0.75rem;
  }
  .site-nav__mobile-cta {
    display: flex;
    width: 100%;
    margin-top: 24px;
  }
}
@media (max-width: 639px) {
  .nav-mega__heading {
    display: block;
  }
  .nav-mega__heading p {
    max-width: none;
    line-height: 1.4;
  }
  .nav-mega__heading a {
    display: inline-flex;
    margin-top: 12px;
  }
}
/* Homepage decision guides and handover details. */
.home-content-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: end;
  gap: clamp(36px, 6vw, 88px);
  margin-bottom: 44px;
}
.home-content-head h2 {
  max-width: 740px;
  margin: 0;
  font-size: var(--font-section-title);
  line-height: 1.27;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-content-head h2 span {
  color: #0b3d91;
}
.home-content-head > p {
  max-width: 440px;
  color: #53647a;
  line-height: 1.75;
  font-size: 1rem;
}
.home-needs {
  padding-top: clamp(64px, 6vw, 82px);
  border-top: 1px solid #e8f0fa;
  background: #fbfdff;
}
.home-needs .home-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.home-needs .home-content-head h2 span {
  background: linear-gradient(110deg, #1255bd, #168dd0 58%, #0aa9a3);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-needs__grid,
.home-platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.home-needs__card,
.home-platforms__card {
  min-width: 0;
}
.home-needs__card {
  --needs-accent: #1767c7;
  --needs-soft: #e9f2ff;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid #dce7f5;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 61, 145, 0.035);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.home-needs__card:hover {
  transform: translateY(-3px);
  border-color: #b9d3f2;
  box-shadow: 0 15px 30px rgba(11, 61, 145, 0.08);
}
.home-needs__card--commerce {
  --needs-accent: #0aafb5;
  --needs-soft: #e5f9f9;
}
.home-needs__card--growth {
  --needs-accent: #1758b8;
  --needs-soft: #e9f2ff;
}
.home-needs__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.home-needs__number {
  display: block;
  margin: 10px 0 15px;
  padding: 0;
  color: #0b4da7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.home-needs__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--needs-soft);
  color: var(--needs-accent);
}
.home-needs__icon svg {
  width: 34px;
  height: 34px;
}
.home-needs__card h3 {
  max-width: 310px;
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.home-needs__card p {
  flex: 1;
  max-width: 330px;
  margin-bottom: 23px;
  color: #53647a;
  font-size: 0.84rem;
  line-height: 1.65;
}
.home-needs__action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 13px;
  margin-top: auto;
  color: #0b56b3;
  font-size: 0.86rem;
  font-weight: 700;
}
.home-needs__action span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.22s ease;
}
.home-needs__card:hover .home-needs__action span {
  transform: translateX(4px);
}
.home-platforms__card .text-link {
  align-self: flex-start;
  font-size: 0.86rem;
}
.home-platforms {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 8%, #edf8ff 0, transparent 24%),
    radial-gradient(circle at 2% 96%, #e5f7ff 0, transparent 27%), #fff;
}
.home-platforms::before,
.home-platforms::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 460px;
  height: 460px;
  border: 54px solid rgba(141, 204, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.home-platforms::before {
  top: -330px;
  right: -155px;
}
.home-platforms::after {
  bottom: -340px;
  left: -190px;
}
.home-platforms > .container {
  position: relative;
  z-index: 1;
}
.home-platforms .home-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}
.home-platforms .home-content-head h2 {
  font-size: var(--font-section-title);
  max-width: 760px;
}
.home-platforms .home-content-head {
  margin-bottom: 46px;
}
.home-platforms__card {
  --platform: #0b56b3;
  --platform-line: #c9defb;
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  min-height: 570px;
  padding: 24px 28px 28px;
  border: 1px solid var(--platform-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(19, 72, 134, 0.09);
}
.home-platforms__card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -74px;
  bottom: -108px;
  width: 220px;
  height: 220px;
  border: 32px solid var(--platform-line);
  border-radius: 50%;
  opacity: 0.55;
}
.home-platforms__card:nth-child(2) {
  --platform: #008c84;
  --platform-line: #bde9e3;
}
.home-platforms__card:nth-child(3) {
  --platform: #3557cf;
  --platform-line: #ccd7fb;
}
.home-platforms__visual {
  position: relative;
  height: 162px;
  flex: none;
  margin-bottom: 16px;
}
.home-platforms__visual img {
  position: absolute;
  top: -9px;
  right: -16px;
  width: 84%;
  height: 170px;
  object-fit: contain;
}
.home-platforms__badge {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 0;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 11px;
  background: var(--platform);
  box-shadow: 0 9px 18px rgba(11, 61, 145, 0.16);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.home-platforms__card--wordpress .home-platforms__badge {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
}
.home-platforms__card--woocommerce .home-platforms__badge {
  background: #765193;
  font-size: 1.02rem;
  letter-spacing: -0.05em;
}
.home-platforms__card--shopify .home-platforms__badge {
  background: #79a832;
  font-size: 1.8rem;
}
.home-platforms__label {
  display: block;
  margin-bottom: 8px;
  color: var(--platform);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.home-platforms__card h3 {
  margin: 0 0 14px;
  font-size: var(--font-card-feature-title);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.home-platforms__card > p {
  flex: 1;
  margin-bottom: 23px;
  color: #53647a;
  font-size: 0.94rem;
  line-height: 1.7;
}
.home-platforms__focus {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border-top: 1px solid var(--platform-line);
  padding-top: 18px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.home-platforms__focus > div {
  display: grid;
  gap: 4px;
}
.home-platforms__focus strong {
  color: var(--platform);
  font-size: 0.77rem;
}
.home-platforms__focus div > span {
  color: #385876;
}
.home-platforms__target {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border: 2px solid var(--platform);
  border-radius: 50%;
}
.home-platforms__target::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid var(--platform);
  border-radius: 50%;
}
.home-platforms__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-start;
  gap: 24px;
  min-width: 188px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: var(--radius-control);
  background: var(--platform);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.home-platforms__button:hover {
  transform: translateY(-3px);
  filter: brightness(0.9);
}
.home-platforms__button span {
  font-size: 1.3rem;
  line-height: 1;
}
.home-platforms__note {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  padding: 14px 24px;
  border: 1px solid #d8e9f8;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(19, 72, 134, 0.06);
}
.home-platforms__note-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eaf5ff;
  color: #0b56b3;
}
.home-platforms__note-icon svg {
  width: 26px;
  height: 26px;
}
.home-platforms__note p {
  color: #091b39;
  line-height: 1.65;
  font-size: 0.94rem;
}
.home-platforms__note a {
  color: #0b3d91;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.home-platforms__note-sign {
  display: grid;
  gap: 3px;
  border-top: 1px solid #b7ccec;
  padding-top: 8px;
  color: #738ba9;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  white-space: nowrap;
}
.home-platforms__note-sign small {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.home-handover {
  background:
    radial-gradient(circle at 0 100%, #e7f3ff, transparent 29%), #f4f8fc;
}
.home-handover__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.home-handover__card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 170px;
  padding: 22px 68px 22px 24px;
  border: 1px solid #e5edf8;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 13px 32px rgba(11, 61, 145, 0.055);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.home-handover__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(11, 61, 145, 0.11);
}
.home-handover__icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: var(--radius-md);
  background: #edf5ff;
  color: #0b56b3;
}
.home-handover__card:nth-child(2) .home-handover__icon,
.home-handover__card:nth-child(3) .home-handover__icon {
  background: #e9f9fb;
  color: #0796aa;
}
.home-handover__icon svg {
  width: 42px;
  height: 42px;
}
.home-handover__number {
  display: inline-block;
  min-width: 36px;
  padding: 3px 10px;
  margin-bottom: 8px;
  border-radius: var(--radius-control);
  background: #e9f2ff;
  color: #0b3d91;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.home-handover__card:nth-child(2) .home-handover__number,
.home-handover__card:nth-child(3) .home-handover__number {
  background: #dff8f6;
  color: #008b89;
}
.home-handover__copy {
  min-width: 0;
}
.home-handover__grid h3 {
  margin: 0 0 7px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.home-handover__grid p {
  color: #53647a;
  font-size: 0.89rem;
  line-height: 1.65;
}
.home-handover__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d7e6fa;
  border-radius: 50%;
  background: #f8fbff;
  color: #0b56b3;
  box-shadow: 0 3px 8px rgba(11, 61, 145, 0.06);
  font-size: 1.45rem;
  line-height: 1;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.home-handover__card:hover .home-handover__arrow {
  transform: translateX(3px);
  background: #eaf4ff;
}
.home-handover__note {
  margin-top: 24px;
  color: #53647a;
  font-size: 0.86rem;
  line-height: 1.6;
}

/* Homepage project inquiry */
.home-contact {
  border-top: 1px solid #e7eef6;
  border-bottom: 1px solid #e7eef6;
  background: var(--surface-soft);
}
.home-contact__layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 8vw, 112px);
}
.home-contact__intro h2 {
  margin: 0;
  font-size: var(--font-section-title);
  font-weight: 600;
  line-height: 1.27;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.home-contact__intro h2 span { color: var(--brand-navy); }
.home-contact__intro > p:not(.home-kicker) {
  max-width: 440px;
  margin-top: 23px;
  color: var(--muted);
  line-height: 1.72;
}
.home-contact__steps {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid #d8e3ee;
  list-style: none;
}
.home-contact__steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid #d8e3ee;
}
.home-contact__steps li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #087f78;
  background: #def5f0;
  font-size: .62rem;
  font-weight: 700;
}
.home-contact__steps strong {
  display: block;
  margin: 1px 0 5px;
  color: #183652;
  font-size: .86rem;
  font-weight: 700;
}
.home-contact__steps p { color: #64768a; font-size: .78rem; line-height: 1.55; }
.home-contact .contact-form-wrap { border-color: #d3e0eb; background: #fff; }

/* Homepage knowledge highlights */
.home-news {
  border-bottom: 1px solid #e7eef6;
  background: #fff;
}
.home-news__head-aside {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 390px;
  justify-self: end;
}
.home-news__head-aside p {
  color: var(--muted);
  line-height: 1.7;
}
.home-news__layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  align-items: stretch;
  gap: 24px;
}
.home-news__layout--single {
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
}
.home-news__list {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-news__item {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color .22s ease;
}
.home-news__item:hover { border-color: #b9cfe3; }
.home-news__item:focus-within,
.home-news__featured:focus-within {
  outline: 3px solid var(--brand-teal);
  outline-offset: 3px;
}
.home-news__item-media {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  background: #e9f3fa;
}
.home-news__item-media > img,
.home-news__item-media > .knowledge-cover-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.home-news__item:hover .home-news__item-media > img { transform: scale(1.035); }
.home-news__item-body { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 14px 16px; }
.home-news__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: #6b7d91;
  font-size: .7rem;
  font-weight: 600;
}
.home-news__meta a,
.home-news__meta > span {
  position: relative;
  z-index: 2;
  color: #087f78;
  font-weight: 700;
}
.home-news__meta a:hover { text-decoration: underline; text-underline-offset: 3px; }
.home-news__item h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(.94rem, 1.15vw, 1.05rem);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -.025em;
}
.home-news__item h3 a::after,
.home-news__featured h3 a::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
}
.home-news__featured {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.home-news__media {
  position: relative;
  z-index: 2;
  display: block;
  aspect-ratio: 1.72;
  overflow: hidden;
  background: #e9f3fa;
}
.home-news__media > img,
.home-news__media > .knowledge-cover-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.home-news__featured:hover .home-news__media > img { transform: scale(1.035); }
.home-news__featured-body {
  display: flex;
  align-items: start;
  flex: 1;
  flex-direction: column;
  padding: 25px 28px 27px;
}
.home-news__featured h3 {
  margin: 14px 0 11px;
  color: var(--ink);
  font-size: var(--font-card-feature-title);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.035em;
}
.home-news__featured-body > p {
  max-width: 590px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.7;
}
.home-news__read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--brand-navy);
  font-size: .78rem;
  font-weight: 700;
}
.home-news__read span { transition: transform .22s ease; }
.home-news__featured:hover .home-news__read span { transform: translate(3px, -3px); }
.home-news .knowledge-cover-fallback {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
  background: radial-gradient(circle at 85% 20%, rgba(0, 194, 168, .4), transparent 35%), linear-gradient(135deg, #082e68, #0b3d91);
}
.home-news .knowledge-cover-fallback > span { font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.home-news .knowledge-cover-fallback__art {
  position: relative;
  display: block;
  align-self: center;
  width: min(74%, 300px);
  height: 58%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .94);
  box-shadow: 18px 19px 0 rgba(0, 194, 168, .16);
  transform: rotate(-4deg);
}
.home-news .knowledge-cover-fallback__art::before {
  content: "";
  display: block;
  height: 24px;
  border-bottom: 1px solid #dce5ef;
  background: radial-gradient(circle at 16px 12px, #9fc2d9 2px, transparent 3px), radial-gradient(circle at 28px 12px, #9fc2d9 2px, transparent 3px), radial-gradient(circle at 40px 12px, #9fc2d9 2px, transparent 3px);
}
.home-news .knowledge-cover-fallback__art i { display: block; height: 9px; margin: 14px 15px 0; border-radius: var(--radius-control); background: #dcebf7; }
.home-news .knowledge-cover-fallback__art i:nth-child(1) { width: 56%; height: 22px; background: var(--brand-navy); }
.home-news .knowledge-cover-fallback__art i:nth-child(2) { width: 78%; }
.home-news .knowledge-cover-fallback__art i:nth-child(3) { width: 62%; }

@media (max-width: 959px) {
  .home-content-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-content-head > p {
    max-width: 680px;
  }
  .home-needs__grid,
  .home-platforms__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-needs__grid {
    max-width: 630px;
    margin-inline: auto;
  }
  .home-needs__card,
  .home-platforms__card {
    min-height: 0;
  }
  .home-needs__card h3,
  .home-needs__card p {
    max-width: none;
  }
  .home-platforms__grid {
    max-width: 630px;
    margin-inline: auto;
  }
  .home-handover__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-contact__layout { grid-template-columns: 1fr; gap: 46px; }
  .home-contact__intro { max-width: 720px; }
  .home-contact .contact-form-wrap { width: 100%; max-width: 800px; }
  .home-news__head-aside { max-width: 680px; justify-self: start; }
  .home-news__layout { grid-template-columns: 1fr; max-width: 720px; }
  .home-news__featured { order: -1; }
}
@media (max-width: 639px) {
  .home-content-head {
    margin-bottom: 30px;
  }
  .home-content-head h2 {
    font-size: var(--font-section-title);
    line-height: 1.28;
  }
  .home-content-head > p {
    font-size: 0.98rem;
  }
  .home-needs__card,
  .home-platforms__card {
    padding: 24px;
    border-radius: var(--radius-md);
  }
  .home-needs__card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }
  .home-needs {
    padding-top: 52px;
  }
  .home-needs__icon {
    width: 56px;
    height: 56px;
  }
  .home-needs__icon svg {
    width: 31px;
    height: 31px;
  }
  .home-needs__number {
    margin: 4px 0 12px;
  }
  .home-needs__card p {
    margin-bottom: 20px;
  }
  .home-platforms .home-content-head h2 {
    font-size: var(--font-section-title);
  }
  .home-platforms__visual {
    height: 145px;
  }
  .home-platforms__visual img {
    right: -18px;
    width: 84%;
    height: 150px;
  }
  .home-platforms__badge {
    width: 58px;
    height: 58px;
  }
  .home-platforms__note {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
  .home-platforms__note-icon {
    width: 44px;
    height: 44px;
  }
  .home-platforms__note-sign {
    display: none;
  }
  .home-handover__card {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 20px;
    border-radius: var(--radius-md);
  }
  .home-handover__icon {
    width: 68px;
    height: 68px;
    border-radius: 11px;
  }
  .home-handover__icon svg {
    width: 36px;
    height: 36px;
  }
  .home-handover__arrow {
    top: 20px;
    right: 20px;
  }
  .home-handover__grid h3 {
    font-size: 1.25rem;
  }
  .home-contact__intro h2 { line-height: 1.28; }
  .home-contact__intro > p:not(.home-kicker) { margin-top: 20px; }
  .home-contact__steps { margin-top: 30px; }
  .home-contact__steps li { padding: 17px 0; }
  .home-news__head-aside { gap: 14px; }
  .home-news__layout { gap: 22px; }
  .home-news__media { aspect-ratio: 1.45; }
  .home-news__featured-body { padding: 21px 20px 23px; }
  .home-news__featured h3 { font-size: var(--font-card-feature-title); }
  .home-news__list { gap: 12px; }
  .home-news__item { grid-template-columns: 112px minmax(0, 1fr); min-height: 126px; }
  .home-news__item-body { padding: 12px 13px; }
  .home-news__item h3 { font-size: .91rem; line-height: 1.48; }
  .home-news__item .home-news__meta { gap: 5px 8px; font-size: .62rem; }
  .home-news .knowledge-cover-fallback { padding: 18px; }
  .home-news .knowledge-cover-fallback__art { height: 62%; }
  .home-platforms__note {
    margin-top: 24px;
  }
}

/* Closing invitation and global footer */
.closing-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(42px, 3.5vw, 52px);
  background:
    radial-gradient(
      circle at 89% 0%,
      rgba(67, 207, 210, 0.22),
      transparent 34%
    ),
    linear-gradient(115deg, #0a3474 0%, #0b4c93 58%, #08687d 100%);
  color: #fff;
  isolation: isolate;
}
.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
  pointer-events: none;
}
.closing-cta::after {
  content: none;
}
.closing-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.closing-cta__copy {
  min-width: 0;
}
.closing-cta .section-index {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  color: #b6f6e9;
  letter-spacing: 0.13em;
}
.closing-cta .section-index::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: none;
  background: #8df0e1;
}
.closing-cta h2 {
  max-width: 800px;
  margin: 0;
  font-size: var(--font-cta-title);
  line-height: 1.22;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.closing-cta h2 em {
  color: #b4f6e9;
}
.closing-cta .closing-cta__button {
  min-width: 210px;
  min-height: 56px;
  padding: 11px 13px 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  color: #0b3d91;
}
.closing-cta__button:hover {
  background: #e7fbf7;
}
.closing-cta__button span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #c9e5ef;
  border-radius: 50%;
  transition: transform 0.22s ease;
}
.closing-cta__button:hover span {
  transform: translate(2px, -2px);
}
.site-footer {
  padding-top: clamp(64px, 6vw, 86px);
  background: #07192f;
  color: #fff;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.13fr) minmax(0, 0.9fr);
  gap: clamp(30px, 4.4vw, 60px);
  padding-bottom: clamp(56px, 5vw, 72px);
}
.site-footer__brand a {
  display: block;
  width: min(250px, 100%);
  line-height: 0;
}
.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__brand p {
  max-width: 290px;
  margin-top: 19px;
  color: #a9bfd5;
  line-height: 1.7;
}
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.site-footer__links h2,
.site-footer__contact h2 {
  margin: 0 0 25px;
  color: #84e4d6;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__links li + li {
  margin-top: 13px;
}
.site-footer__links a {
  display: inline-block;
  color: #d2dfec;
  line-height: 1.5;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.site-footer__links a:hover {
  color: #90eee0;
  transform: translateX(3px);
}
.site-footer__contact {
  padding-left: clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}
.site-footer__contact p {
  max-width: 260px;
  color: #d2dfec;
  font-size: 1.05rem;
  line-height: 1.55;
}
.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  margin-top: 18px;
  color: #91eadf;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.site-footer__contact a:hover {
  gap: 24px;
  color: #fff;
}
.site-footer__contact a span {
  font-size: 1.25rem;
  font-weight: 400;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 25px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #a6bdd1;
  font-size: 0.76rem;
}
.site-footer__bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d2dfec;
  transition: color 0.2s ease;
}
.site-footer__bottom a:hover {
  color: #fff;
}
.floating-contact {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 24px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-contact__link {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 27, 59, 0.13);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.floating-contact__link:hover {
  border-color: var(--brand-navy);
  box-shadow: 0 12px 26px rgba(7, 27, 59, 0.18);
  transform: translateY(-2px);
}
.floating-contact__link svg {
  display: block;
  width: 25px;
  height: 25px;
}
.floating-contact__link--phone svg {
  fill: none;
  stroke: #9a691d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}
.floating-contact__link--zalo span {
  color: #1478f2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.floating-contact__link--zalo span::after {
  content: "";
  display: block;
  width: 24px;
  margin: 2px auto 0;
  border-bottom: 1.5px solid currentColor;
  border-radius: 50%;
}
.floating-contact__link--facebook svg {
  padding: 3px;
  border-radius: 50%;
  background: #2777ee;
  fill: #fff;
}
@media (max-width: 959px) {
  .closing-cta {
    padding-block: 34px;
  }
  .closing-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .closing-cta h2 {
    max-width: 700px;
  }
  .closing-cta .closing-cta__button {
    justify-self: start;
  }
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 45px;
  }
  .site-footer__links {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 560px;
  }
}
@media (max-width: 639px) {
  .floating-contact {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 18px));
    gap: 10px;
  }
  .floating-contact__link {
    width: 50px;
    height: 50px;
  }
  .closing-cta {
    padding-block: 42px;
  }
  .closing-cta__inner {
    gap: 24px;
  }
  .closing-cta .section-index {
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.68rem;
  }
  .closing-cta .section-index::before {
    width: 24px;
  }
  .closing-cta h2 {
    font-size: var(--font-cta-title);
  }
  .closing-cta .closing-cta__button {
    min-height: 52px;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .site-footer__links {
    grid-column: auto;
    grid-row: auto;
  }
  .site-footer__contact {
    padding: 32px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }
  .site-footer__contact h2 {
    margin-bottom: 16px;
  }
  .site-footer__bottom {
    align-items: flex-start;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-news__item,
  .home-news__item-media > img,
  .home-news__media > img,
  .home-news__read span,
  .closing-cta__button span,
  .site-footer__links a,
  .site-footer__contact a,
  .site-footer__bottom a,
  .floating-contact__link {
    transition: none;
  }
}
