﻿:root {
  --gs-primary: #3975ef;
  --gs-primary-deep: #2e63da;
  --gs-primary-soft: #ebf2ff;
  --gs-heading: #1d243d;
  --gs-body: #5f6b84;
  --gs-white: #ffffff;
  --gs-dark-topbar: #272d4a;
  --gs-dark-footer: #050505;
  --gs-border: rgba(17, 25, 47, 0.12);
  --gs-border-light: rgba(255, 255, 255, 0.14);
  --gs-shadow-sm: 0 14px 28px rgba(16, 23, 44, 0.08);
  --gs-shadow-md: 0 20px 50px rgba(16, 23, 44, 0.12);
  --gs-shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.18);
  --gs-radius-sm: 8px;
  --gs-radius-md: 20px;
  --gs-radius-lg: 30px;
  --gs-radius-pill: 999px;
  --gs-container: 1240px;
  --gs-font-heading: "Montserrat", sans-serif;
  --gs-font-body: "Barlow", sans-serif;
  --gs-action-cue-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233975ef' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='%23ebf2ff' stroke='%233975ef'/%3E%3Cpath d='M8.5 12h6.7'/%3E%3Cpath d='m12.4 8.9 3.1 3.1-3.1 3.1'/%3E%3C/svg%3E");
  --gs-header-topbar-height: 80px;
  --gs-header-main-height: 118px;
  --gs-header-total-height: calc(var(--gs-header-topbar-height) + var(--gs-header-main-height));
  --gs-submenu-offset: 50px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--gs-font-body);
  color: var(--gs-body);
  background:
    radial-gradient(circle at top left, rgba(57, 117, 239, 0.06), transparent 20%),
    #ffffff;
}

body.is-preloading {
  overflow: hidden;
}

body.is-preloading .site-shell {
  opacity: 0;
}

body.preloader-done .site-shell {
  opacity: 1;
  transition: opacity 0.45s ease;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(57, 117, 239, 0.1), transparent 30%),
    #ffffff;
  transition: opacity 0.46s ease, visibility 0.46s ease;
}

.site-preloader > div {
  display: grid;
  justify-items: center;
  width: 180px;
  text-align: center;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
}

.site-preloader__mark::before,
.site-preloader__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.site-preloader__mark::before {
  border: 3px solid rgba(57, 117, 239, 0.12);
}

.site-preloader__mark::after {
  display: none;
}

.site-preloader__ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--gs-primary) 0deg 112deg,
    transparent 112deg 174deg,
    #ff651c 174deg 246deg,
    transparent 246deg 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  transform-origin: 50% 50%;
  animation: gs-preloader-spin 0.72s linear infinite;
  will-change: transform;
}

.site-preloader__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  animation: gs-preloader-pulse 1.35s ease-in-out infinite;
}

.site-preloader__text {
  display: block;
  width: 100%;
  margin-top: 18px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-indent: 0.18em;
  text-transform: uppercase;
  animation: gs-preloader-text 1.1s ease-in-out infinite;
}

body.has-mobile-nav {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-page-content {
  flex: 1;
}

.site-container {
  width: min(var(--gs-container), calc(100% - 32px));
  margin: 0 auto;
}

.site-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.site-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-icon--facebook svg,
.site-icon--twitter svg,
.site-icon--linkedin svg {
  fill: currentColor;
  stroke: none;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--gs-radius-pill);
  font-family: var(--gs-font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-button--primary {
  color: var(--gs-white);
  background: linear-gradient(135deg, #4d82f5 0%, var(--gs-primary) 65%, var(--gs-primary-deep) 100%);
  box-shadow: 0 18px 34px rgba(57, 117, 239, 0.28);
}

.site-button--primary:hover,
.site-button--primary:focus-visible {
  color: var(--gs-white);
  transform: translateY(-1px);
}

.landing-placeholder__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--gs-radius-pill);
  background: rgba(255, 255, 255, 0.16);
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-topbar {
  background: var(--gs-dark-topbar);
  color: var(--gs-white);
}

.site-topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: var(--gs-header-topbar-height);
}

.site-topbar__meta {
  display: flex;
  align-items: center;
}

.site-topbar__meta--center {
  justify-content: center;
}

.site-topbar__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.site-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
}

.site-topbar__item .site-icon {
  width: 20px;
  height: 20px;
}

.site-topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--gs-white);
}

.site-topbar__social-link:hover,
.site-topbar__social-link:focus-visible {
  color: var(--gs-white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header__main {
  background: var(--gs-white);
}

.site-header__main-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: var(--gs-header-main-height);
}

.site-branding {
  display: inline-flex;
  align-items: center;
  transition: transform 0.24s ease;
}

.site-branding:hover,
.site-branding:focus-visible {
  transform: translateY(-2px);
}

.site-branding__logo {
  width: auto;
  height: 76px;
  transform-origin: center;
  animation: gs-logo-float 4.8s ease-in-out infinite;
  transition: filter 0.24s ease, transform 0.24s ease;
}

.site-branding:hover .site-branding__logo,
.site-branding:focus-visible .site-branding__logo {
  filter: drop-shadow(0 12px 18px rgba(57, 117, 239, 0.18));
  transform: scale(1.025);
}

.site-navigation {
  justify-self: end;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu__item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-menu__item > a,
.site-menu__link-group > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #000000;
  font-family: var(--gs-font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
}

.site-menu__item > a::after,
.site-menu__link-group > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--gs-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.site-menu__item.is-active > a,
.site-menu__item.is-active .site-menu__link-group > a,
.site-menu__item:hover > a,
.site-menu__item:hover .site-menu__link-group > a {
  color: var(--gs-primary);
}

.site-menu__item.is-active > a::after,
.site-menu__item.is-active .site-menu__link-group > a::after,
.site-menu__item:hover > a::after,
.site-menu__item:hover .site-menu__link-group > a::after,
.site-menu__item:focus-within > a::after,
.site-menu__item:focus-within .site-menu__link-group > a::after {
  transform: scaleX(1);
}

.site-menu__link-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-menu__toggle {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
}

.site-menu__toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.site-menu__item--has-children {
  color: var(--gs-heading);
}

.site-menu__item--login > a {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(57, 117, 239, 0.28);
  border-radius: var(--gs-radius-pill);
  background: rgba(57, 117, 239, 0.08);
  color: var(--gs-primary);
  box-shadow: 0 10px 22px rgba(57, 117, 239, 0.12);
}

.site-menu__item--login > a::after {
  display: none;
}

.site-menu__item--login.is-active > a,
.site-menu__item--login:hover > a,
.site-menu__item--login:focus-within > a {
  background: var(--gs-primary);
  color: var(--gs-white);
}

.site-menu__item--has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: var(--gs-submenu-offset);
  background: transparent;
}

.site-submenu {
  position: absolute;
  top: calc(100% + var(--gs-submenu-offset));
  left: 0;
  min-width: 250px;
  padding: 14px 0;
  background: var(--gs-white);
  box-shadow: var(--gs-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-submenu a {
  display: block;
  padding: 12px 30px;
  color: #3a415a;
  font-family: var(--gs-font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.25;
}

.site-submenu a:hover,
.site-submenu a:focus-visible {
  background: var(--gs-primary-soft);
  color: var(--gs-primary);
}

.site-menu__item--has-children:hover .site-submenu,
.site-menu__item--has-children.is-open .site-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gs-primary);
  position: relative;
  z-index: 70;
  transition: background-color 0.22s ease;
}

.site-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}

.site-nav-toggle:hover,
.site-nav-toggle:focus-visible {
  background: rgba(57, 117, 239, 0.08);
  outline: none;
}

.site-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.has-mobile-nav {
  overflow: hidden;
}

body.has-mobile-nav::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 29, 0.42);
  backdrop-filter: blur(2px);
  z-index: 40;
}

.landing-placeholder {
  padding: 86px 0 108px;
}

.landing-placeholder__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--gs-radius-lg);
  background: linear-gradient(135deg, #22aef8 0%, #3975ef 52%, #234ac2 100%);
  color: var(--gs-white);
  box-shadow: var(--gs-shadow-lg);
}

.landing-placeholder__panel::before,
.landing-placeholder__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.34;
  pointer-events: none;
}

.landing-placeholder__panel::before {
  top: -120px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 72%);
}

.landing-placeholder__panel::after {
  bottom: -160px;
  left: -90px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 68%);
}

.landing-placeholder__copy,
.landing-placeholder__actions,
.landing-placeholder__metrics {
  position: relative;
  z-index: 1;
}

.landing-placeholder__copy {
  max-width: 760px;
}

.landing-placeholder__copy h1 {
  margin: 20px 0 18px;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 1.05;
}

.landing-placeholder__copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.7;
}

.landing-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.landing-placeholder__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.landing-metric {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.landing-metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 1.5rem;
}

.landing-metric span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.simple-page {
  padding: 70px 0 100px;
}

.simple-page__card {
  max-width: 760px;
  padding: 38px;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-md);
  background: var(--gs-white);
  box-shadow: var(--gs-shadow-sm);
}

.simple-page__card h1 {
  margin: 20px 0 12px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
}

.simple-page__card p {
  margin: 0;
  line-height: 1.75;
}

.home-page {
  padding-bottom: 12px;
}

.home-section {
  padding: var(--gs-section-rhythm-gap) 0;
}

:root {
  --gs-section-rhythm-gap: 56px;
  --gs-section-heading-space: 30px;
}

.home-section--overview {
  padding-top: var(--gs-section-rhythm-gap);
  padding-bottom: 0;
}

.home-section--overview .section-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 1240px;
  margin-bottom: var(--gs-section-heading-space);
}

.home-section--overview .section-heading h2 {
  max-width: 1240px;
  margin: 0;
  font-size: clamp(1.36rem, 1.82vw, 1.85rem);
  line-height: 1.22;
}

.home-section--overview .section-heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--gs-primary);
}

.home-section--overview .section-heading p {
  max-width: 1100px;
  margin: 0 auto;
  color: #64708b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.78;
}

.home-section--why {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)),
    url("../assets/images/home/backgrounds/why-goose-bg.jpeg") center/cover no-repeat;
}

.section-heading {
  max-width: 860px;
  margin: 0 0 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: var(--gs-radius-pill);
  background: rgba(57, 117, 239, 0.1);
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 16px 0 14px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--gs-body);
  font-size: 1.02rem;
  line-height: 1.85;
}

.section-heading--light .section-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gs-white);
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--gs-white);
}

.home-hero {
  position: relative;
  background: #ffffff;
  margin: 0;
}

.home-hero__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - var(--gs-header-total-height));
  height: calc(100dvh - var(--gs-header-total-height));
  min-height: 420px;
  background: #dce8ff;
}

.home-hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 17, 46, 0.06), rgba(5, 17, 46, 0.02) 40%, rgba(5, 17, 46, 0.1));
  pointer-events: none;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  will-change: opacity, transform;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.home-hero__slide.is-entering-from-right {
  opacity: 1;
  transform: translate3d(100%, 0, 0);
  z-index: 2;
}

.home-hero__slide.is-entering-from-left {
  opacity: 1;
  transform: translate3d(-100%, 0, 0);
  z-index: 2;
}

.home-hero__slide.is-leaving-left {
  opacity: 1;
  transform: translate3d(-100%, 0, 0);
  z-index: 1;
}

.home-hero__slide.is-leaving-right {
  opacity: 1;
  transform: translate3d(100%, 0, 0);
  z-index: 1;
}

.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
}

.home-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 14, 31, 0.26);
  backdrop-filter: blur(7px);
  color: var(--gs-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.home-hero__nav:hover,
.home-hero__nav:focus-visible {
  background: rgba(57, 117, 239, 0.82);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 38px rgba(34, 72, 155, 0.34);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.home-hero__nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero__nav--prev {
  left: 18px;
}

.home-hero__nav--next {
  right: 18px;
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.home-hero__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.home-hero__dot.is-active {
  background: var(--gs-white);
  transform: scale(1.25);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.overview-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 4px;
  background: #2a3150;
  box-shadow: 0 16px 34px rgba(18, 25, 44, 0.12);
  isolation: isolate;
  cursor: pointer;
}

.overview-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.overview-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.02), rgba(8, 14, 28, 0.18) 55%, rgba(8, 14, 28, 0.58));
  transition: opacity 0.28s ease;
}

.overview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.overview-card__front,
.overview-card__back {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overview-card__front {
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 10px;
  padding: 18px 22px 20px;
  text-align: center;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.overview-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--gs-white);
  opacity: 0.96;
}

.overview-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-card__front h3 {
  margin: 0;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: clamp(1.16rem, 1.55vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
}

.overview-card__back {
  display: grid;
  place-items: center;
  padding: 24px 26px;
  background: #2a3150;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  text-align: center;
}

.overview-card__back p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

.overview-card:hover .overview-card__media::after,
.overview-card:focus-visible .overview-card__media::after,
.overview-card:focus-within .overview-card__media::after {
  opacity: 0;
}

.overview-card:hover .overview-card__media img,
.overview-card:focus-visible .overview-card__media img,
.overview-card:focus-within .overview-card__media img {
  transform: scale(1.04);
  filter: blur(1px);
}

.overview-card:hover .overview-card__front,
.overview-card:focus-visible .overview-card__front,
.overview-card:focus-within .overview-card__front {
  opacity: 0;
  transform: translateY(12px);
}

.overview-card:hover .overview-card__back,
.overview-card:focus-visible .overview-card__back,
.overview-card:focus-within .overview-card__back {
  opacity: 1;
  transform: translateY(0);
}

.overview-card:focus-visible {
  outline: 3px solid rgba(57, 117, 239, 0.35);
  outline-offset: 3px;
}

.home-section--services {
  padding-top: var(--gs-section-rhythm-gap);
  padding-bottom: 0;
}

.home-section--clients,
.home-section--why,
.home-section--projects,
.home-section--split {
  padding-top: var(--gs-section-rhythm-gap);
}

.home-section--clients {
  background: var(--gs-white);
}

.home-section--why .site-container {
  position: relative;
  z-index: 1;
}

.home-section--services .section-heading,
.home-section--stats .section-heading,
.home-section--clients .section-heading,
.home-section--why .section-heading,
.home-section--projects .section-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 1180px;
  margin-bottom: var(--gs-section-heading-space);
}

.home-section--services .section-heading {
  gap: 16px;
  margin-bottom: var(--gs-section-heading-space);
}

.home-section--services .section-heading h2,
.home-section--stats .section-heading h2,
.home-section--clients .section-heading h2,
.home-section--why .section-heading h2,
.home-section--projects .section-heading h2 {
  margin: 0;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  line-height: 1.2;
}

.home-section--services .section-heading h2::after,
.home-section--stats .section-heading h2::after,
.home-section--clients .section-heading h2::after,
.home-section--why .section-heading h2::after,
.home-section--projects .section-heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--gs-primary);
}

.home-section--services .section-heading p,
.home-section--why .section-heading p {
  max-width: 1120px;
  margin: 0 auto;
  color: #64708b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.76;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 28px;
}

.service-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: transform 0.22s ease;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 4px;
  color: var(--gs-primary);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-card__badge,
.industry-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4d82f5 0%, var(--gs-primary) 60%, var(--gs-primary-deep) 100%);
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.reason-card h3,
.project-highlight__content h3,
.project-slide__content h3,
.article-card__content h3 {
  margin: 0;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-card p,
.reason-card p,
.project-highlight__content p,
.project-slide__content p,
.article-card__content p {
  margin: 0;
  color: var(--gs-body);
  font-size: 0.93rem;
  line-height: 1.72;
}

.service-card p {
  max-width: 250px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-card:hover,
.service-card:focus-within,
.reason-card:hover,
.reason-card:focus-within,
.client-card:hover,
.industry-card:hover,
.article-card:hover,
.project-highlight:hover {
  transform: translateY(-4px);
}

.service-card:hover,
.service-card:focus-within,
.service-card:focus-visible {
  transform: translateY(-3px);
}

.service-card:hover .service-card__icon,
.service-card:focus-within .service-card__icon,
.service-card:focus-visible .service-card__icon {
  color: var(--gs-primary-deep);
}

.reason-card:hover,
.reason-card:focus-within {
  border-color: rgba(57, 117, 239, 0.24);
  box-shadow: 0 18px 34px rgba(16, 23, 44, 0.1);
}

.service-card a,
.article-card__content a {
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--gs-primary-deep);
  text-decoration: underline;
  outline: none;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.home-section--services .section-actions {
  margin-top: var(--gs-section-rhythm-gap);
}

.home-section--services .section-actions .site-button {
  min-height: 42px;
  padding-inline: 26px;
}

.section-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--gs-section-rhythm-gap);
  margin-bottom: var(--gs-section-rhythm-gap);
}

.section-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  top: 50%;
  height: 1px;
  background: rgba(31, 44, 79, 0.12);
  transform: translate(-50%, -50%);
}

.section-divider__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 24px;
  background: var(--gs-white);
  color: rgba(31, 44, 79, 0.38);
}

.section-divider__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-section--stats {
  position: relative;
  background:
    linear-gradient(180deg, rgba(9, 15, 28, 0.84), rgba(9, 15, 28, 0.68)),
    url("../assets/images/home/backgrounds/Service-Excellence.png") center/cover no-repeat;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 150px;
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  text-align: center;
}

.stat-card strong {
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px 38px;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
   min-height: 148px;
   padding: 12px 10px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.client-card img {
   width: min(100%, 248px);
  max-width: 100%;
   max-height: 116px;
  height: auto;
  object-fit: contain;
  filter: saturate(1.02);
}

.section-actions--clients {
  margin-top: 46px;
}

.section-actions--clients .site-button {
  min-height: 36px;
  padding-inline: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.reason-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  min-height: 190px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(33, 41, 63, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(16, 23, 44, 0.12);
  backdrop-filter: blur(6px);
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--gs-primary);
}

.reason-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-section--why .section-heading {
  max-width: 900px;
  margin-bottom: var(--gs-section-heading-space);
}

.home-section--why .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #24304b;
}

.home-section--why .reason-card h3 {
  color: #091224;
  font-size: 1rem;
  line-height: 1.35;
}

.home-section--why .reason-card p {
  max-width: 260px;
  color: #202a43;
  font-size: 0.95rem;
  line-height: 1.55;
}

.project-slider {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  overflow: visible;
}

.project-slider__viewport {
  position: relative;
  overflow: hidden;
  min-height: 424px;
  isolation: isolate;
}

.project-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 28px;
  align-items: center;
  opacity: 0;
  background: var(--gs-white);
  pointer-events: none;
  transform: none;
  will-change: opacity;
  transition: opacity 0.18s linear;
  z-index: 0;
}

.project-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  z-index: 2;
}

.project-slide.is-entering-from-right {
  opacity: 0;
  transform: none;
  z-index: 2;
}

.project-slide.is-entering-from-left {
  opacity: 0;
  transform: none;
  z-index: 2;
}

.project-slide.is-leaving-left {
  opacity: 0;
  transform: none;
  z-index: 1;
}

.project-slide.is-leaving-right {
  opacity: 0;
  transform: none;
  z-index: 1;
}

.project-slide__media {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #eef3fb;
}

.project-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-slide__content {
  display: grid;
  align-content: center;
  gap: 16px;
}

.project-slide__content h3 {
  font-size: clamp(1.58rem, 2.25vw, 2.28rem);
  font-style: italic;
  line-height: 1.1;
}

.project-slide__content h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--gs-primary);
}

.project-slide__content p {
  max-width: 520px;
  color: #4f5c77;
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.78;
}

.project-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(57, 117, 239, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--gs-primary);
  box-shadow: 0 14px 30px rgba(16, 23, 44, 0.16);
  transform: translateY(-50%);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.project-slider__nav:hover,
.project-slider__nav:focus-visible {
  background: var(--gs-primary);
  border-color: rgba(57, 117, 239, 0.54);
  color: var(--gs-white);
  box-shadow: 0 18px 38px rgba(34, 72, 155, 0.3);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.project-slider__nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-slider__nav--prev {
  left: -64px;
}

.project-slider__nav--next {
  right: -64px;
}

.project-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.project-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 45, 66, 0.24);
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.project-slider__dot.is-active {
  background: #181e2d;
  transform: scale(1.2);
}

.project-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 24px;
  padding: 18px;
  border: 1px solid rgba(17, 25, 47, 0.08);
  border-radius: 24px;
  background: var(--gs-white);
  box-shadow: 0 12px 28px rgba(16, 23, 44, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.project-highlight__media {
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
}

.project-highlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-highlight__content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 8px 4px;
}

.project-highlight__eyebrow {
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section--split {
  padding-top: var(--gs-section-rhythm-gap);
}

.home-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-split__panel {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 30px 22px 24px;
  border: 1px solid rgba(17, 25, 47, 0.14);
  border-radius: 6px;
  background: var(--gs-white);
  box-shadow: 0 8px 22px rgba(16, 23, 44, 0.08);
}

.home-split__panel-heading {
  display: grid;
  justify-items: center;
  margin-bottom: var(--gs-section-heading-space);
  text-align: center;
}

.home-split__panel-heading h2 {
  margin: 0;
  color: var(--gs-heading);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.18;
}

.home-split__panel-heading h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--gs-primary);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
}

.industry-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 88px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: none;
}

.industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--gs-primary);
}

.industry-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card__title {
  color: #111111;
  font-family: var(--gs-font-body);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 25, 47, 0.08);
  border-radius: 6px;
  background: var(--gs-white);
  box-shadow: 0 8px 20px rgba(16, 23, 44, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.article-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__tag {
  position: absolute;
  top: 12px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(57, 117, 239, 0.9);
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.article-card__content {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px 18px 18px;
}

.article-card__content h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.article-card__content h3 a {
  color: #5d77d8;
  font-family: var(--gs-font-heading);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  text-decoration: none;
}

.article-card__content h3 a:hover,
.article-card__content h3 a:focus-visible {
  color: var(--gs-primary-deep);
}

.article-card__content .article-card__link {
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.article-card__content .article-card__link:hover,
.article-card__content .article-card__link:focus-visible {
  color: var(--gs-primary-deep);
}

.home-split__panel--industries .industry-card:hover,
.home-split__panel--industries .industry-card:focus-within {
  transform: none;
}

.home-split__panel--articles .article-card:hover,
.home-split__panel--articles .article-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16, 23, 44, 0.12);
}

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

  .client-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 30px;
  }

  .client-card img {
    width: min(100%, 218px);
    max-height: 94px;
  }

  .home-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --gs-header-topbar-height: 0px;
    --gs-header-main-height: 88px;
    --gs-header-total-height: var(--gs-header-main-height);
    --gs-submenu-offset: 0px;
    --gs-section-rhythm-gap: 58px;
    --gs-section-heading-space: 24px;
  }

  .home-section {
    padding: var(--gs-section-rhythm-gap) 0;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .overview-grid,
  .stats-grid,
  .project-highlight {
    grid-template-columns: 1fr;
  }

  .overview-card {
    min-height: 290px;
  }

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

  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 24px;
  }

  .client-card img {
    width: min(100%, 196px);
    max-height: 84px;
  }

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

  .home-split__panel {
    padding: 26px 18px 22px;
  }

  .home-split__panel-heading {
    margin-bottom: var(--gs-section-heading-space);
  }

  .article-grid {
    gap: 14px;
  }

  .project-highlight__media {
    min-height: 260px;
  }

  .project-slider__viewport {
    min-height: clamp(680px, calc((100vw - 32px) * 0.625 + 180px), 820px);
  }

  .project-slider__nav {
    top: calc((100vw - 32px) * 0.3125);
    width: 40px;
    height: 40px;
  }

  .project-slider__nav--prev {
    left: 12px;
  }

  .project-slider__nav--next {
    right: 12px;
  }

  .project-slide {
    grid-template-columns: 1fr;
    gap: 22px;
    align-content: start;
  }

  .project-slide__media {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }

  .project-slide__content {
    align-content: start;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  :root {
    --gs-section-rhythm-gap: 42px;
    --gs-section-heading-space: 24px;
  }

  .home-section--overview .section-heading h2 {
    font-size: clamp(1.45rem, 6.3vw, 1.95rem);
  }

  .home-section--overview .section-heading p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .home-hero__slider {
    height: clamp(250px, 42dvh, 360px);
    min-height: 0;
    background: linear-gradient(180deg, #dfeaff 0%, #cfdcf7 100%);
  }

  .home-hero__slider::after {
    background: linear-gradient(180deg, rgba(5, 17, 46, 0.03), rgba(5, 17, 46, 0.02) 45%, rgba(5, 17, 46, 0.08));
  }

  .home-hero__slide img {
    object-fit: fill;
    object-position: center center;
  }

  .home-hero__nav {
    width: 40px;
    height: 40px;
  }

  .home-hero__nav--prev {
    left: 10px;
  }

  .home-hero__nav--next {
    right: 10px;
  }

  .home-hero__dot {
    width: 9px;
    height: 9px;
  }

  .home-hero__dots {
    bottom: 12px;
  }

  .home-section {
    padding: var(--gs-section-rhythm-gap) 0;
  }

  .home-section--overview {
    padding-top: var(--gs-section-rhythm-gap);
    padding-bottom: 0;
  }

  .home-section--services {
    padding-top: var(--gs-section-rhythm-gap);
    padding-bottom: 0;
  }

  .overview-grid,
  .service-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .home-section--services .section-heading,
  .home-section--stats .section-heading,
  .home-section--clients .section-heading,
  .home-section--why .section-heading,
  .home-section--projects .section-heading {
    gap: 14px;
    margin-bottom: var(--gs-section-heading-space);
  }

  .home-section--services .section-heading h2,
  .home-section--stats .section-heading h2,
  .home-section--clients .section-heading h2,
  .home-section--why .section-heading h2,
  .home-section--projects .section-heading h2 {
    font-size: clamp(1.28rem, 5.8vw, 1.72rem);
  }

  .home-section--services .section-heading p,
  .home-section--why .section-heading p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .service-grid {
    gap: 28px 18px;
  }

  .home-section--services .section-actions {
    margin-top: 42px;
  }

  .section-divider {
    margin-top: 42px;
    margin-bottom: 42px;
  }

  .overview-card {
    min-height: 240px;
  }

  .overview-card__front {
    gap: 10px;
    padding: 18px 18px 18px;
  }

  .overview-card__icon {
    width: 46px;
    height: 46px;
  }

  .overview-card__front h3 {
    font-size: 1.4rem;
  }

  .overview-card__back {
    padding: 20px 18px;
  }

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

  .service-card,
  .reason-card {
    min-height: auto;
  }

  .service-card {
    gap: 8px;
    padding: 0 6px;
  }

  .service-card__icon {
    width: 56px;
    height: 56px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .client-card {
    min-height: 98px;
    padding: 10px 10px;
  }

  .client-card img {
    width: min(100%, 164px);
    max-height: 66px;
  }

  .stat-card {
    min-height: 138px;
    padding: 22px 14px;
  }

  .project-highlight {
    padding: 16px;
  }

  .project-highlight__media {
    min-height: 220px;
  }

  .project-slider__viewport {
    min-height: 500px;
  }

  .project-slider__nav {
    top: calc((100vw - 24px) * 0.375);
  }

  .project-slide__media {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .project-slide__content h3 {
    font-size: 1.5rem;
  }

  .project-slide__content p {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .service-card,
  .reason-card {
    padding-inline: 18px;
  }

  .home-split__panel {
    padding: 24px 16px 20px;
  }

  .home-split__panel-heading h2 {
    font-size: clamp(1.35rem, 6vw, 1.72rem);
  }

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

.site-footer {
  margin-top: 20px;
}

.footer-cta {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-color: #0c1220;
  isolation: isolate;
}

.footer-cta__video-container,
.footer-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer-cta__video-container {
  overflow: hidden;
}

.footer-cta__video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.28);
}

.footer-cta__overlay {
  background: linear-gradient(90deg, rgba(8, 11, 20, 0.76), rgba(8, 11, 20, 0.44) 48%, rgba(8, 11, 20, 0.62));
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: stretch;
  min-height: 330px;
}

.footer-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 22px;
  color: var(--gs-white);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.footer-cta__content h2 {
  margin: 0 0 26px;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: clamp(1.95rem, 3.2vw, 3.45rem);
  line-height: 1;
}

.footer-cta__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.7;
}

.footer-cta__form-area {
  display: flex;
  align-items: center;
  padding: 44px 0;
}

.site-form {
  width: 100%;
}

.site-form__grid--wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 14px;
}

.site-form__field--span-all {
  grid-column: 1 / -1;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--gs-white);
  color: #2b2f41;
  outline: 0;
}

.site-form input::placeholder,
.site-form textarea::placeholder {
  color: #9699a5;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: rgba(57, 117, 239, 0.6);
  box-shadow: 0 0 0 4px rgba(57, 117, 239, 0.12);
}

.site-form textarea {
  min-height: 108px;
}

.site-searchable-select {
  position: relative;
}

.site-searchable-select.is-open {
  z-index: 20;
}

.site-searchable-select__toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 0.22s ease;
}

.site-searchable-select__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #2b2f41;
  border-bottom: 2px solid #2b2f41;
  transform: translate(-50%, -68%) rotate(45deg);
  transition: transform 0.22s ease;
}

.site-searchable-select__toggle:hover,
.site-searchable-select__toggle:focus-visible {
  background: rgba(57, 117, 239, 0.08);
  outline: none;
}

.site-searchable-select.is-open .site-searchable-select__toggle::before {
  transform: translate(-50%, -34%) rotate(-135deg);
}

.site-searchable-select__native {
  display: none;
}

.site-searchable-select__input {
  padding-right: 48px;
}

.site-searchable-select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 8px;
  border: 1px solid rgba(57, 117, 239, 0.18);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 36px rgba(6, 15, 34, 0.22);
}

.site-searchable-select__options {
  display: grid;
  gap: 4px;
  max-height: 240px;
  overflow-y: auto;
}

.site-searchable-select__option {
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #2b2f41;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-searchable-select__option:hover,
.site-searchable-select__option:focus-visible,
.site-searchable-select__option.is-selected {
  background: rgba(57, 117, 239, 0.12);
  color: var(--gs-primary-deep);
  outline: none;
}

.site-searchable-select__empty {
  padding: 12px 14px 10px;
  color: #6c7284;
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-cta__button {
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 22px;
}

.quote-form__notice {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.quote-form__notice.is-success {
  background: #e9f8ef;
  color: #16733a;
}

.quote-form__notice.is-error {
  background: #fff1f0;
  color: #b23a32;
}

.footer-main {
  margin-top: 10px;
  background: var(--gs-dark-footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.92fr;
  gap: 44px;
  padding: 54px 0 40px;
}

.footer-panel h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 28px;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-panel h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 10px;
  background:
    repeating-linear-gradient(
      -55deg,
      var(--gs-primary) 0 9px,
      transparent 9px 14px
    );
  background-size: 28px 8px;
  animation: gs-footer-stripes 1.2s linear infinite;
}

.footer-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.85;
}

.footer-links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  position: relative;
  padding-left: 28px;
}

.footer-links li::before,
.footer-contact__line strong::before,
.footer-contact__line span::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--gs-action-cue-icon) center / contain no-repeat;
  filter: drop-shadow(0 5px 8px rgba(57, 117, 239, 0.22));
  transform-origin: 75% 70%;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.footer-links a {
  display: inline-flex;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #7fb2ff;
  transform: translateX(4px);
  outline: none;
}

.footer-links li:hover::before,
.footer-links li:focus-within::before,
.footer-contact__line strong:hover::before,
.footer-contact__line span:hover::before {
  filter: drop-shadow(0 7px 12px rgba(57, 117, 239, 0.36));
  transform: translateX(3px) rotate(-8deg) scale(1.08);
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact__line {
  display: grid;
  gap: 9px;
  margin: 0;
}

.footer-contact__line strong {
  position: relative;
  padding-left: 28px;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact__line span {
  position: relative;
  padding-left: 28px;
  color: var(--gs-white);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.65;
}

.footer-panel,
.footer-follow,
.site-footer__bottom {
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.footer-panel:hover {
  transform: translateY(-4px);
}

.footer-panel--form:hover {
  transform: none;
}

.footer-panel--form .site-form input,
.footer-panel--form .site-form select,
.footer-panel--form .site-form textarea {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.footer-panel--form .site-form input:focus,
.footer-panel--form .site-form select:focus,
.footer-panel--form .site-form textarea:focus {
  transform: translateY(-2px);
}

.site-form input,
.site-form select,
.site-form textarea,
.inner-form input,
.inner-form select,
.inner-form textarea {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus,
.inner-form input:focus,
.inner-form select:focus,
.inner-form textarea:focus {
  transform: translateY(-2px);
}

.footer-panel--form .site-form__stack {
  display: grid;
  gap: 10px;
}

.footer-panel--form .site-form input,
.footer-panel--form .site-form select,
.footer-panel--form .site-form textarea {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-form__submit {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 20px;
}

.footer-cta__button,
.site-form__submit {
  box-shadow: 0 12px 24px rgba(57, 117, 239, 0.22);
}

.footer-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 28px;
  color: var(--gs-white);
  font-family: var(--gs-font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.footer-follow__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-follow__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--gs-white);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.footer-follow__icons a:hover,
.footer-follow__icons a:focus-visible {
  color: #7fb2ff;
  background: rgba(57, 117, 239, 0.16);
  box-shadow: 0 12px 22px rgba(57, 117, 239, 0.16);
  transform: translateY(-3px);
  outline: none;
}

.site-footer__bottom {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.site-footer__brand img {
  height: 42px;
  width: auto;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--gs-white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .site-header__main-inner {
    gap: 24px;
  }

  .site-menu {
    gap: 24px;
  }

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

@media (max-width: 1024px) {
  .site-topbar {
    display: none;
  }

  .site-header__main-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    min-height: 88px;
    position: relative;
  }

  .site-branding__logo {
    height: 64px;
  }

  .site-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-navigation {
    position: fixed;
    top: 88px;
    right: 0;
    width: min(84vw, 360px);
    height: calc(100dvh - 88px);
    padding: 24px 24px 30px;
    background: var(--gs-white);
    box-shadow: -16px 0 42px rgba(8, 14, 28, 0.18);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(104%);
    transition: transform 0.28s ease, visibility 0.28s ease;
    z-index: 60;
  }

  .site-navigation.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-menu__item,
  .site-menu__link-group {
    width: 100%;
  }

  .site-menu__item {
    display: block;
  }

  .site-menu__item > a,
  .site-menu__link-group > a {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .site-menu__link-group {
    justify-content: space-between;
  }

  .site-submenu {
    position: static;
    min-width: 0;
    padding: 4px 0 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .site-menu__item--has-children.is-open .site-submenu {
    display: block;
  }

  .site-menu__item--has-children::after {
    display: none;
  }

  .site-submenu a {
    padding: 10px 0 10px 16px;
  }

  .footer-cta__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-cta__video-frame {
    transform: translate(-50%, -50%) scale(1.45);
  }

  .footer-cta__content {
    padding: 42px 0 18px;
  }

  .footer-cta__form-area {
    padding: 8px 0 36px;
  }
}

@media (max-width: 767px) {
  .site-container {
    width: min(var(--gs-container), calc(100% - 24px));
  }

  .site-branding__logo {
    height: 58px;
  }

  .landing-placeholder {
    padding: 52px 0 72px;
  }

  .landing-placeholder__panel,
  .simple-page__card {
    padding: 24px 20px;
  }

  .landing-placeholder__copy h1 {
    font-size: 2rem;
  }

  .landing-placeholder__actions,
  .landing-placeholder__metrics {
    grid-template-columns: 1fr;
  }

  .landing-placeholder__metrics {
    display: grid;
  }

  .site-form__grid--wide,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .client-card {
    min-height: 112px;
    padding: 12px 10px;
  }

  .client-card img {
    width: min(100%, 168px);
    max-height: 72px;
  }

  .site-form__field--span-all {
    grid-column: auto;
  }

  .footer-cta__button {
    width: 100%;
  }

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

@media (max-width: 480px) {
  .home-hero__slider {
    height: clamp(230px, 38dvh, 320px);
  }

  .home-hero__nav {
    width: 36px;
    height: 36px;
  }

  .home-hero__nav svg {
    width: 20px;
    height: 20px;
  }

  .home-hero__nav--prev {
    left: 8px;
  }

  .home-hero__nav--next {
    right: 8px;
  }

  .project-slider__viewport {
    min-height: 470px;
  }

  .project-slider__nav {
    width: 36px;
    height: 36px;
  }

  .project-slider__nav svg {
    width: 20px;
    height: 20px;
  }

  .project-slider__nav--prev {
    left: 10px;
  }

  .project-slider__nav--next {
    right: 10px;
  }
}

/* Static inner pages: extends the locked home design system. */
.inner-page {
  background: #ffffff;
}

.inner-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background-color: #1d2947;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, rgba(8, 17, 38, 0.82), rgba(24, 60, 133, 0.58));
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.16) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: gs-hero-sweep 7s ease-in-out infinite;
}

.inner-hero__content {
  max-width: 820px;
  padding: 72px 0;
  color: #ffffff;
  text-align: center;
}

.inner-hero__content .section-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.inner-hero h1 {
  margin: 18px 0 14px;
  color: #ffffff;
  font-family: var(--gs-font-heading);
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.02;
}

.inner-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.75;
}

.inner-page-nav {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(17, 25, 47, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 244, 237, 0.88), rgba(246, 249, 255, 0.92) 48%, rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 28px rgba(16, 23, 44, 0.06);
}

.inner-page-nav__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding-block: 14px;
}

.inner-page-nav__group,
.inner-page-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(25, 35, 64, 0.16);
  border-radius: var(--gs-radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: #07206d;
  font-family: var(--gs-font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(16, 23, 44, 0.06);
}

.inner-page-nav__group {
  padding: 0 14px;
  background: rgba(232, 229, 238, 0.96);
}

.inner-page-nav__separator {
  color: #6f7890;
  font-family: var(--gs-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.inner-page-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: thin;
}

.inner-page-nav__link {
  padding: 0 16px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.inner-page-nav__link:hover,
.inner-page-nav__link:focus-visible {
  border-color: rgba(57, 117, 239, 0.42);
  color: var(--gs-primary);
  outline: none;
  transform: translateY(-1px);
}

.inner-page-nav__link.is-active {
  border-color: rgba(255, 101, 28, 0.5);
  background: rgba(255, 239, 230, 0.96);
  color: #ff651c;
}

.inner-section {
  padding: var(--gs-section-rhythm-gap) 0;
}

.inner-section--soft {
  background: #f6f8fd;
}

.auth-section {
  position: relative;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.62fr);
  gap: 28px;
  align-items: stretch;
}

.auth-layout--compact {
  max-width: 760px;
}

.auth-panel,
.auth-aside,
.email-template-card {
  border: 1px solid rgba(17, 25, 47, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 23, 44, 0.09);
}

.auth-panel {
  padding: clamp(28px, 4vw, 46px);
}

.auth-panel h2,
.auth-aside h3,
.email-template-card h2 {
  margin: 16px 0 12px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  line-height: 1.15;
}

.auth-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.auth-panel > p,
.auth-aside p,
.email-template-card p {
  margin: 0;
  color: #59657d;
  font-size: 1rem;
  line-height: 1.75;
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.auth-demo-credentials,
.auth-form__notice {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f4f8ff;
  color: #26304a;
  font-weight: 700;
  line-height: 1.45;
}

.auth-demo-credentials strong {
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-form__notice {
  margin-top: 0;
}

.auth-form__notice.is-error {
  background: #fff1f0;
  color: #b23a32;
}

.auth-form__notice.is-success {
  background: #e9f8ef;
  color: #16733a;
}

.auth-form label {
  color: #26304a;
  font-family: var(--gs-font-heading);
  font-size: 0.82rem;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(17, 25, 47, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #2b2f41;
  outline: 0;
}

.auth-form input:focus {
  border-color: rgba(57, 117, 239, 0.62);
  box-shadow: 0 0 0 4px rgba(57, 117, 239, 0.12);
}

.auth-form .site-button {
  width: 100%;
  margin-top: 8px;
}

.auth-form .site-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.auth-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 2px 0 4px;
  color: #56627a;
  font-weight: 600;
}

.auth-form__row a,
.auth-switch a,
.auth-link-button {
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-weight: 800;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-check input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--gs-primary);
}

.auth-switch {
  margin-top: 22px;
  color: #5f6b84;
  font-weight: 600;
  text-align: center;
}

.auth-aside {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(57, 117, 239, 0.1), rgba(255, 255, 255, 0.96) 58%),
    #ffffff;
}

.auth-aside ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.auth-aside li {
  position: relative;
  padding-left: 24px;
  color: #26304a;
  font-weight: 700;
  line-height: 1.45;
}

.auth-aside li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gs-primary);
  box-shadow: 0 0 0 5px rgba(57, 117, 239, 0.1);
}

.auth-panel--status {
  display: grid;
  justify-items: center;
  text-align: center;
}

.auth-panel--status .auth-form {
  width: 100%;
  text-align: left;
}

.auth-panel--status .auth-form .site-button {
  text-align: center;
}

.auth-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #e9f8ef;
  color: #16733a;
  font-family: var(--gs-font-heading);
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(22, 115, 58, 0.14);
}

.auth-status-icon--error {
  background: #fff1f0;
  color: #b23a32;
  box-shadow: 0 16px 32px rgba(178, 58, 50, 0.14);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.auth-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(57, 117, 239, 0.24);
  border-radius: var(--gs-radius-pill);
  background: rgba(57, 117, 239, 0.08);
}

.error-code {
  display: block;
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: clamp(4.4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
}

.email-template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.email-template-card {
  display: grid;
  align-content: start;
  padding: 26px;
}

.email-template-card h2 {
  font-size: 1.18rem;
}

.email-preview {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(17, 25, 47, 0.1);
  border-radius: 12px;
  background: #f8faff;
  color: #4f5c77;
}

.email-preview strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 0.88rem;
}

.dashboard-section {
  padding-top: 44px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.dashboard-sidebar,
.dashboard-card,
.dashboard-stats article {
  border: 1px solid rgba(17, 25, 47, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 23, 44, 0.08);
}

.dashboard-sidebar {
  position: sticky;
  top: 32px;
  display: grid;
  gap: 18px;
  padding: 18px;
}

.dashboard-profile-card {
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(57, 117, 239, 0.11), rgba(255, 255, 255, 0.96));
}

.dashboard-profile-card h2,
.dashboard-topline h2,
.dashboard-card h3 {
  margin: 12px 0 8px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  line-height: 1.15;
}

.dashboard-profile-card p,
.dashboard-profile-card strong,
.dashboard-topline p,
.dashboard-card p {
  margin: 0;
  color: #5f6b84;
  line-height: 1.65;
}

.dashboard-menu {
  display: grid;
  gap: 8px;
}

.dashboard-menu a {
  position: relative;
  padding: 12px 14px;
  border-radius: 10px;
  color: #26304a;
  font-family: var(--gs-font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 18px;
  border-radius: 999px;
  background: var(--gs-primary);
  opacity: 0;
  transform: translateY(-50%) scaleY(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dashboard-menu a:hover,
.dashboard-menu a:focus-visible,
.dashboard-menu a.is-active {
  background: rgba(57, 117, 239, 0.1);
  color: var(--gs-primary);
  outline: none;
}

.dashboard-menu a:hover,
.dashboard-menu a:focus-visible {
  transform: translateX(2px);
}

.dashboard-menu a.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}

.dashboard-main {
  min-width: 0;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard-topline .site-button {
  flex: 0 0 auto;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.dashboard-stats article {
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-stats article:hover {
  box-shadow: 0 20px 42px rgba(16, 23, 44, 0.11);
  transform: translateY(-2px);
}

.dashboard-stats strong {
  display: block;
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

.dashboard-stats span {
  display: block;
  margin-top: 8px;
  color: #5f6b84;
  font-weight: 700;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-card {
  min-width: 0;
  padding: 22px;
  scroll-margin-top: 34px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dashboard-card:hover {
  border-color: rgba(57, 117, 239, 0.2);
  box-shadow: 0 20px 44px rgba(16, 23, 44, 0.1);
}

.dashboard-card--wide {
  grid-column: 1 / -1;
}

.dashboard-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.dashboard-details div,
.dashboard-list li {
  padding: 13px 14px;
  border-radius: 10px;
  background: #f8faff;
}

.dashboard-details dt {
  color: #6a748a;
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-details dd {
  margin: 4px 0 0;
  color: #26304a;
  font-weight: 800;
}

.dashboard-form {
  display: grid;
  grid-template-columns: minmax(145px, 1fr) minmax(145px, 1fr) minmax(170px, 1fr) minmax(190px, 0.9fr) minmax(160px, auto);
  gap: 10px;
  margin: 18px 0;
  position: relative;
  z-index: 5;
  align-items: start;
}

.dashboard-form:has(.site-searchable-select.is-open) {
  margin-bottom: 170px;
}

.dashboard-form input,
.dashboard-form select,
.dashboard-form .site-searchable-select__input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 25, 47, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #26304a;
}

.dashboard-form input:focus,
.dashboard-form select:focus,
.dashboard-form .site-searchable-select__input:focus {
  border-color: rgba(57, 117, 239, 0.58);
  box-shadow: 0 0 0 4px rgba(57, 117, 239, 0.1);
  outline: none;
}

.dashboard-form .site-searchable-select {
  min-width: 0;
  width: 100%;
}

.dashboard-form .site-searchable-select__toggle {
  width: 32px;
  height: 32px;
}

.dashboard-form .site-searchable-select__dropdown {
  z-index: 30;
}

.dashboard-form .site-button {
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}

.dashboard-table-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(17, 25, 47, 0.08);
  color: #26304a;
  text-align: left;
}

.dashboard-table th {
  color: #5f6b84;
  font-family: var(--gs-font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.dashboard-table button,
.dashboard-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(57, 117, 239, 0.22);
  border-radius: var(--gs-radius-pill);
  background: rgba(57, 117, 239, 0.08);
  color: var(--gs-primary);
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-table button:hover,
.dashboard-table button:focus-visible,
.dashboard-actions button:hover,
.dashboard-actions button:focus-visible {
  background: var(--gs-primary);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--gs-radius-pill);
  font-weight: 800;
}

.status-pill.is-ok {
  background: #e9f8ef;
  color: #16733a;
}

.status-pill.is-warn {
  background: #fff4e9;
  color: #b25a19;
}

.dashboard-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  color: #26304a;
  font-weight: 700;
}

.dashboard-list strong {
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 1025px) {
  .dashboard-section {
    overflow: visible;
    padding-top: 44px;
  }

  .dashboard-shell {
    overflow: visible;
  }

  .dashboard-sidebar {
    position: sticky;
    top: 32px;
  }

  .dashboard-main {
    overflow: visible;
    padding-right: 8px;
  }
}

.inner-section--dark {
  background: #252c48;
  color: #ffffff;
}

.inner-section--compact {
  padding-block: calc(var(--gs-section-rhythm-gap) - 2px);
}

.inner-heading {
  max-width: 820px;
  margin: 0 auto var(--gs-section-heading-space);
  text-align: center;
}

.inner-heading h2 {
  margin: 0;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.14;
}

.inner-heading .section-kicker {
  margin-bottom: 16px;
}

.inner-heading p {
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.78;
}

.inner-section--dark .inner-heading h2,
.inner-section--dark .inner-heading p {
  color: #ffffff;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: var(--gs-section-rhythm-gap);
  align-items: center;
}

.inner-section--soft .content-split {
  align-items: stretch;
}

.content-split--reverse .content-split__media {
  order: -1;
}

.content-split__copy h2,
.service-detail__copy h2 {
  margin: 0 0 var(--gs-section-heading-space);
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.16;
}

.content-split__copy .section-kicker,
.service-detail__copy .section-kicker {
  margin-bottom: 16px;
}

.content-split__copy h3 {
  margin: 28px 0 10px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 1.2rem;
}

.content-split__copy p,
.service-detail__copy p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.82;
}

.content-split__media,
.service-detail__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #e9eef8;
  box-shadow: var(--gs-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-split__media::after,
.service-detail__media::after,
.directory-card__media::after,
.portfolio-card__media::after,
.blog-entry__media::after,
.article-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.28) 45%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.content-split__media:hover,
.service-detail__media:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(16, 23, 44, 0.15);
}

.content-split__media img,
.service-detail__media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.content-split__media:hover img,
.service-detail__media:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.value-grid,
.benefit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.value-card,
.benefit-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid rgba(17, 25, 47, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 23, 44, 0.07);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.value-card::before,
.benefit-card::before,
.contact-card::before,
.directory-card::before,
.portfolio-card::before,
.blog-entry::before,
.opening-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(57, 117, 239, 0.12), transparent 42%, rgba(57, 117, 239, 0.08));
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

.value-card:hover,
.benefit-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 117, 239, 0.22);
  box-shadow: 0 20px 42px rgba(16, 23, 44, 0.12);
}

.value-card:hover::before,
.benefit-card:hover::before,
.contact-card:hover::before,
.directory-card:hover::before,
.portfolio-card:hover::before,
.blog-entry:hover::before,
.opening-card:hover::before {
  opacity: 1;
}

.value-card strong,
.benefit-card h3,
.contact-card h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 1rem;
  line-height: 1.4;
}

.value-card span,
.benefit-card p,
.contact-card p,
.contact-card a {
  margin: 0;
  line-height: 1.65;
}

.service-directory,
.portfolio-grid,
.blog-grid,
.opening-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.blog-grid {
  align-items: stretch;
}

.directory-card,
.portfolio-card,
.blog-entry,
.opening-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 25, 47, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 23, 44, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  will-change: transform;
}

.directory-card::after,
.portfolio-card::after,
.blog-entry::after,
.opening-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gs-primary), #ff651c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.directory-card .section-kicker,
.portfolio-card .section-kicker,
.blog-entry .section-kicker,
.opening-card .section-kicker {
  width: fit-content;
}

.directory-card:hover .directory-card__media img,
.portfolio-card:hover .portfolio-card__media img,
.blog-entry:hover .blog-entry__media img {
  animation: gs-image-breathe 1.7s ease-in-out infinite alternate;
}

.directory-card:hover,
.portfolio-card:hover,
.blog-entry:hover,
.opening-card:hover {
  border-color: rgba(57, 117, 239, 0.22);
  transform: translateY(-6px) rotateX(var(--gs-tilt-y, 0deg)) rotateY(var(--gs-tilt-x, 0deg));
  box-shadow: 0 24px 52px rgba(16, 23, 44, 0.15);
}

.directory-card:hover::after,
.portfolio-card:hover::after,
.blog-entry:hover::after,
.opening-card:hover::after,
.directory-card:focus-within::after,
.portfolio-card:focus-within::after,
.blog-entry:focus-within::after,
.opening-card:focus-within::after {
  transform: scaleX(1);
}

.directory-card__media,
.portfolio-card__media,
.blog-entry__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  height: 230px;
  min-height: 230px;
  overflow: hidden;
  background: #e9eef8;
  flex: 0 0 auto;
}

.directory-card__media img,
.portfolio-card__media img,
.blog-entry__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.directory-card:hover img,
.portfolio-card:hover img,
.blog-entry:hover img {
  transform: scale(1.035);
}

.directory-card__body,
.portfolio-card__body,
.blog-entry__body,
.opening-card {
  padding: 24px;
}

.directory-card__body,
.portfolio-card__body,
.blog-entry__body {
  display: grid;
  align-content: start;
  gap: 14px;
  flex: 1;
  grid-template-rows: auto minmax(56px, auto) 1fr auto;
}

.directory-card h3,
.portfolio-card h3,
.blog-entry h3,
.opening-card h3 {
  margin: 0 0 12px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 1.15rem;
  line-height: 1.4;
}

.directory-card h3,
.portfolio-card h3,
.blog-entry h3 {
  display: -webkit-box;
  min-height: 3.2em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-entry h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-entry h3 a:hover,
.blog-entry h3 a:focus-visible {
  color: var(--gs-primary);
  outline: none;
}

.directory-card p,
.portfolio-card p,
.blog-entry p,
.opening-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--gs-primary);
  font-family: var(--gs-font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gs-primary-deep);
  transform: translateX(4px);
  outline: none;
}

.article-hero {
  min-height: 430px;
}

.article-detail-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 117, 239, 0.08), transparent 24%),
    #ffffff;
}

.article-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 34px;
  align-items: start;
}

.article-detail__content,
.article-detail__sidebar {
  border: 1px solid rgba(17, 25, 47, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 23, 44, 0.08);
}

.article-detail__content {
  padding: clamp(30px, 5vw, 58px);
}

.article-detail__content h2 {
  margin: 18px 0 18px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.article-detail__lead {
  color: #39435e;
  font-size: 1.16rem;
  font-weight: 700;
}

.article-detail__content p {
  color: #53617d;
  font-size: 1.04rem;
  line-height: 1.86;
}

.article-detail__sidebar {
  position: sticky;
  top: 24px;
  padding: 26px;
}

.article-detail__sidebar h3 {
  margin: 0 0 18px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 1.18rem;
}

.article-detail__sidebar .site-button {
  width: 100%;
  margin-top: 22px;
  padding-inline: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: var(--gs-section-rhythm-gap);
  align-items: start;
}

.service-detail__media {
  position: sticky;
  top: 32px;
  align-self: start;
  min-height: 420px;
}

.service-detail__copy {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(17, 25, 47, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(57, 117, 239, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(16, 23, 44, 0.09);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.service-detail__copy:hover {
  border-color: rgba(57, 117, 239, 0.18);
  box-shadow: 0 22px 52px rgba(16, 23, 44, 0.11);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 16px 12px 44px;
  border: 1px solid rgba(57, 117, 239, 0.12);
  border-radius: 12px;
  background: rgba(57, 117, 239, 0.045);
  color: #46516c;
  font-weight: 700;
  line-height: 1.45;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  background: var(--gs-action-cue-icon) center / contain no-repeat;
  transform: translateY(-50%);
  filter: drop-shadow(0 5px 8px rgba(57, 117, 239, 0.18));
  transition: transform 0.22s ease, filter 0.22s ease;
}

.feature-list li:hover {
  transform: translateX(3px);
  border-color: rgba(57, 117, 239, 0.26);
  background: rgba(57, 117, 239, 0.08);
  box-shadow: 0 10px 24px rgba(57, 117, 239, 0.08);
}

.feature-list li:hover::before,
.feature-list li:focus-within::before {
  filter: drop-shadow(0 8px 12px rgba(57, 117, 239, 0.3));
  transform: translateY(-50%) translateX(3px) scale(1.08);
}

.csr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.csr-card {
  padding: 30px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--gs-shadow-sm);
}

.csr-card h3 {
  margin: 0 0 12px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: 1.15rem;
}

.csr-card p {
  margin: 0;
  line-height: 1.75;
}

.application-panel,
.contact-panel,
.compliance-panel {
  padding: clamp(26px, 5vw, 50px);
  border-radius: 20px;
  background: #252c48;
  color: #ffffff;
  box-shadow: var(--gs-shadow-lg);
}

.application-panel h2,
.contact-panel h2,
.compliance-panel h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--gs-font-heading);
}

.application-panel > p,
.contact-panel > p,
.compliance-panel > p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.inner-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.inner-form .field--wide {
  grid-column: 1 / -1;
}

.inner-form input,
.inner-form select,
.inner-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: #252c48;
  outline: 0;
}

.inner-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inner-form input:focus,
.inner-form select:focus,
.inner-form textarea:focus {
  border-color: rgba(57, 117, 239, 0.7);
  box-shadow: 0 0 0 4px rgba(57, 117, 239, 0.16);
}

.inner-form .site-button {
  grid-column: 1 / -1;
}

.compliance-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 42px;
  align-items: center;
}

.compliance-copy h2 {
  margin: 0 0 18px;
  color: var(--gs-heading);
  font-family: var(--gs-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.compliance-copy p {
  font-size: 1.02rem;
  line-height: 1.82;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 518px;
  border: 16px solid #ffffff;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(16, 23, 44, 0.14);
}

.contact-panel {
  min-height: 518px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel .inner-form {
  margin-top: 26px;
}

/* Site motion layer. */
.home-hero__slide.is-active img {
  animation: gs-hero-zoom 5.8s ease-out both;
}

.home-hero__dot {
  transition: transform 0.22s ease, background-color 0.22s ease, width 0.22s ease;
}

.home-hero__dot.is-active {
  width: 28px;
  animation: gs-dot-pulse 1.6s ease-in-out infinite;
}

.site-button--primary,
.footer-cta__button,
.site-form__submit {
  position: relative;
  overflow: hidden;
}

.site-button--primary::after,
.footer-cta__button::after,
.site-form__submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 72%);
  transform: translateX(-130%);
}

.site-button--primary:hover::after,
.site-button--primary:focus-visible::after,
.footer-cta__button:hover::after,
.footer-cta__button:focus-visible::after,
.site-form__submit:hover::after,
.site-form__submit:focus-visible::after {
  animation: gs-button-shine 0.72s ease;
}

.overview-card__icon,
.service-card__icon,
.industry-card__icon {
  transition: color 0.24s ease, transform 0.24s ease;
}

.overview-card:hover .overview-card__icon,
.overview-card:focus-visible .overview-card__icon,
.service-card:hover .service-card__icon,
.service-card:focus-within .service-card__icon,
.industry-card:hover .industry-card__icon,
.industry-card:focus-within .industry-card__icon {
  transform: translateY(-3px) scale(1.06);
}

.service-card:hover .service-card__icon svg,
.service-card:focus-within .service-card__icon svg,
.industry-card:hover .industry-card__icon svg,
.industry-card:focus-within .industry-card__icon svg {
  animation: gs-icon-bob 0.72s ease;
}

.stat-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%, rgba(57, 117, 239, 0.22));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.stat-card:hover::before,
.stat-card:focus-within::before {
  opacity: 1;
}

.client-card img {
  transition: filter 0.24s ease, transform 0.24s ease;
}

.client-card:hover img,
.client-card:focus-within img {
  filter: saturate(1.16) drop-shadow(0 12px 18px rgba(16, 23, 44, 0.14));
  transform: scale(1.04);
}

.article-card__media img,
.project-slide__media img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.article-card:hover .article-card__media img,
.article-card:focus-within .article-card__media img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.project-slide.is-active .project-slide__media img {
  animation: gs-project-focus 5.6s ease-out both;
}

.content-split__media:hover::after,
.service-detail__media:hover::after,
.directory-card:hover .directory-card__media::after,
.portfolio-card:hover .portfolio-card__media::after,
.blog-entry:hover .blog-entry__media::after,
.article-card:hover .article-card__media::after,
.article-card:focus-within .article-card__media::after {
  opacity: 1;
  animation: gs-media-shine 0.82s ease;
}

.section-kicker {
  animation: gs-kicker-glow 4s ease-in-out infinite;
}

body.js-animate-ready .gs-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.66s ease,
    transform 0.66s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--gs-reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.js-animate-ready .gs-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.js-animate-ready .inner-hero__content.gs-reveal.is-visible h1,
body.js-animate-ready .section-heading.gs-reveal.is-visible h2,
body.js-animate-ready .inner-heading.gs-reveal.is-visible h2 {
  animation: gs-title-pop 0.72s cubic-bezier(0.19, 1, 0.22, 1) both;
}

body.js-animate-ready .section-heading.gs-reveal,
body.js-animate-ready .home-split__panel-heading.gs-reveal {
  transform: translateY(18px);
}

body.js-animate-ready .overview-card.gs-reveal,
body.js-animate-ready .service-card.gs-reveal,
body.js-animate-ready .reason-card.gs-reveal,
body.js-animate-ready .stat-card.gs-reveal,
body.js-animate-ready .client-card.gs-reveal,
body.js-animate-ready .project-highlight.gs-reveal,
body.js-animate-ready .industry-card.gs-reveal,
body.js-animate-ready .article-card.gs-reveal,
body.js-animate-ready .directory-card.gs-reveal,
body.js-animate-ready .portfolio-card.gs-reveal,
body.js-animate-ready .blog-entry.gs-reveal,
body.js-animate-ready .opening-card.gs-reveal,
body.js-animate-ready .value-card.gs-reveal,
body.js-animate-ready .benefit-card.gs-reveal,
body.js-animate-ready .contact-card.gs-reveal,
body.js-animate-ready .csr-card.gs-reveal {
  transform: translateY(32px) scale(0.98);
}

body.js-animate-ready .overview-card.gs-reveal.is-visible,
body.js-animate-ready .service-card.gs-reveal.is-visible,
body.js-animate-ready .reason-card.gs-reveal.is-visible,
body.js-animate-ready .stat-card.gs-reveal.is-visible,
body.js-animate-ready .client-card.gs-reveal.is-visible,
body.js-animate-ready .project-highlight.gs-reveal.is-visible,
body.js-animate-ready .industry-card.gs-reveal.is-visible,
body.js-animate-ready .article-card.gs-reveal.is-visible,
body.js-animate-ready .directory-card.gs-reveal.is-visible,
body.js-animate-ready .portfolio-card.gs-reveal.is-visible,
body.js-animate-ready .blog-entry.gs-reveal.is-visible,
body.js-animate-ready .opening-card.gs-reveal.is-visible,
body.js-animate-ready .value-card.gs-reveal.is-visible,
body.js-animate-ready .benefit-card.gs-reveal.is-visible,
body.js-animate-ready .contact-card.gs-reveal.is-visible,
body.js-animate-ready .csr-card.gs-reveal.is-visible {
  transform: translateY(0) scale(1);
}

body.js-animate-ready .directory-card.gs-reveal.is-visible,
body.js-animate-ready .portfolio-card.gs-reveal.is-visible,
body.js-animate-ready .blog-entry.gs-reveal.is-visible,
body.js-animate-ready .opening-card.gs-reveal.is-visible {
  animation: gs-card-settle 0.82s ease both;
  animation-delay: var(--gs-reveal-delay, 0ms);
}

body.js-animate-ready .service-card.gs-reveal.is-visible:hover,
body.js-animate-ready .service-card.gs-reveal.is-visible:focus-within,
body.js-animate-ready .reason-card.gs-reveal.is-visible:hover,
body.js-animate-ready .reason-card.gs-reveal.is-visible:focus-within,
body.js-animate-ready .client-card.gs-reveal.is-visible:hover,
body.js-animate-ready .stat-card.gs-reveal.is-visible:hover,
body.js-animate-ready .stat-card.gs-reveal.is-visible:focus-within,
body.js-animate-ready .project-highlight.gs-reveal.is-visible:hover,
body.js-animate-ready .article-card.gs-reveal.is-visible:hover,
body.js-animate-ready .article-card.gs-reveal.is-visible:focus-within,
body.js-animate-ready .footer-panel.gs-reveal.is-visible:hover,
body.js-animate-ready .directory-card.gs-reveal.is-visible:hover,
body.js-animate-ready .portfolio-card.gs-reveal.is-visible:hover,
body.js-animate-ready .blog-entry.gs-reveal.is-visible:hover,
body.js-animate-ready .opening-card.gs-reveal.is-visible:hover,
body.js-animate-ready .value-card.gs-reveal.is-visible:hover,
body.js-animate-ready .benefit-card.gs-reveal.is-visible:hover,
body.js-animate-ready .contact-card.gs-reveal.is-visible:hover {
  transform: translateY(-4px) scale(1);
}

body.js-animate-ready .footer-panel--form.gs-reveal.is-visible:hover {
  transform: translateY(0) scale(1);
}

body.js-animate-ready .home-split__panel--articles .article-card.gs-reveal.is-visible:hover,
body.js-animate-ready .home-split__panel--articles .article-card.gs-reveal.is-visible:focus-within {
  transform: translateY(-3px) scale(1);
}

@keyframes gs-hero-zoom {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

@keyframes gs-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gs-preloader-pulse {
  0%,
  100% {
    filter: drop-shadow(0 8px 16px rgba(57, 117, 239, 0.16));
  }

  50% {
    filter: drop-shadow(0 12px 22px rgba(255, 101, 28, 0.18));
  }
}

@keyframes gs-preloader-text {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 1;
  }
}

@keyframes gs-logo-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes gs-hero-sweep {
  0%,
  35% {
    transform: translateX(-120%);
  }

  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes gs-media-shine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes gs-kicker-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(57, 117, 239, 0);
  }

  50% {
    box-shadow: 0 10px 24px rgba(57, 117, 239, 0.14);
  }
}

@keyframes gs-title-pop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gs-card-settle {
  0% {
    box-shadow: 0 10px 24px rgba(16, 23, 44, 0.05);
  }

  60% {
    box-shadow: 0 26px 58px rgba(57, 117, 239, 0.16);
  }

  100% {
    box-shadow: 0 14px 34px rgba(16, 23, 44, 0.08);
  }
}

@keyframes gs-image-breathe {
  from {
    filter: saturate(1.04);
  }

  to {
    filter: saturate(1.16) contrast(1.03);
  }
}

@keyframes gs-project-focus {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

@keyframes gs-dot-pulse {
  0%,
  100% {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(255, 255, 255, 0.32);
  }

  50% {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16), 0 0 0 7px rgba(255, 255, 255, 0);
  }
}

@keyframes gs-button-shine {
  to {
    transform: translateX(130%);
  }
}

@keyframes gs-footer-stripes {
  to {
    background-position: 28px 0;
  }
}

@keyframes gs-icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide.is-active img,
  .home-hero__dot.is-active,
  .site-branding__logo,
  .inner-hero::after,
  .section-kicker,
  .service-card:hover .service-card__icon svg,
  .service-card:focus-within .service-card__icon svg,
  .industry-card:hover .industry-card__icon svg,
  .industry-card:focus-within .industry-card__icon svg,
  .project-slide.is-active .project-slide__media img,
  body.js-animate-ready .directory-card.gs-reveal.is-visible,
  body.js-animate-ready .portfolio-card.gs-reveal.is-visible,
  body.js-animate-ready .blog-entry.gs-reveal.is-visible,
  body.js-animate-ready .opening-card.gs-reveal.is-visible,
  body.js-animate-ready .inner-hero__content.gs-reveal.is-visible h1,
  body.js-animate-ready .section-heading.gs-reveal.is-visible h2,
  body.js-animate-ready .inner-heading.gs-reveal.is-visible h2,
  .directory-card:hover .directory-card__media img,
  .portfolio-card:hover .portfolio-card__media img,
  .blog-entry:hover .blog-entry__media img,
  .content-split__media:hover::after,
  .service-detail__media:hover::after,
  .directory-card:hover .directory-card__media::after,
  .portfolio-card:hover .portfolio-card__media::after,
  .blog-entry:hover .blog-entry__media::after,
  .article-card:hover .article-card__media::after {
    animation: none;
  }

  .footer-panel h3::after {
    animation: none;
  }

  body.js-animate-ready .gs-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .content-split,
  .service-detail,
  .compliance-layout,
  .auth-layout,
  .dashboard-shell {
    grid-template-columns: 1fr;
    gap: var(--gs-section-rhythm-gap);
  }

  .dashboard-sidebar {
    position: static;
  }

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

  .content-split--reverse .content-split__media {
    order: 0;
  }

  .content-split__copy,
  .service-detail__copy {
    min-width: 0;
  }

  .service-detail__media {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .value-grid,
  .benefit-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-directory,
  .portfolio-grid,
  .blog-grid,
  .opening-grid,
  .email-template-grid,
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .dashboard-form .site-button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .article-detail {
    grid-template-columns: 1fr;
  }

  .article-detail__sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .inner-hero {
    min-height: 290px;
  }

  .inner-hero__content {
    padding: 58px 0;
  }

  .inner-page-nav__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding-block: 12px;
  }

  .inner-page-nav__separator {
    display: none;
  }

  .inner-page-nav__links {
    width: 100%;
    padding-bottom: 6px;
  }

  .inner-page-nav__group,
  .inner-page-nav__link {
    min-height: 32px;
    font-size: 0.74rem;
  }

  .inner-page-nav__link {
    padding-inline: 13px;
  }

  .inner-section {
    padding: var(--gs-section-rhythm-gap) 0;
  }

  .inner-section--compact {
    padding-block: var(--gs-section-rhythm-gap);
  }

  .inner-heading {
    margin-bottom: var(--gs-section-heading-space);
  }

  .inner-heading h2,
  .content-split__copy h2,
  .service-detail__copy h2 {
    font-size: clamp(1.28rem, 5.8vw, 1.72rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .inner-heading p,
  .content-split__copy p,
  .service-detail__copy p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .content-split,
  .service-detail {
    gap: 30px;
  }

  .auth-layout {
    gap: 22px;
  }

  .auth-panel,
  .auth-aside,
  .email-template-card {
    border-radius: 12px;
  }

  .auth-form__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .auth-actions,
  .auth-actions .site-button,
  .auth-link-button {
    width: 100%;
  }

  .dashboard-topline {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-menu,
  .dashboard-grid,
  .dashboard-details,
  .dashboard-form {
    grid-template-columns: 1fr;
  }

  .dashboard-form:has(.site-searchable-select.is-open) {
    margin-bottom: 150px;
  }

  .dashboard-stats {
    gap: 10px;
  }

  .dashboard-card,
  .dashboard-sidebar {
    border-radius: 12px;
  }

  .content-split__media img,
  .service-detail__media img {
    min-height: 240px;
  }

  .value-grid,
  .benefit-grid,
  .contact-grid,
  .service-directory,
  .portfolio-grid,
  .blog-grid,
  .opening-grid,
  .email-template-grid,
  .csr-grid,
  .inner-form {
    grid-template-columns: 1fr;
  }

  .inner-form .field--wide,
  .inner-form .site-button {
    grid-column: auto;
  }

  .contact-panel,
  .map-frame {
    min-height: 420px;
  }

  .map-frame {
    border-width: 10px;
  }
}

/* Site-wide mobile responsiveness hardening. Keep this layer last so late page rules cannot reintroduce overflow. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-shell {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .site-navigation {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-menu__item > a,
  .site-menu__link-group > a,
  .site-submenu a {
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .home-split,
  .project-highlight,
  .project-slide,
  .content-split,
  .service-detail,
  .compliance-layout,
  .contact-layout,
  .article-detail {
    grid-template-columns: 1fr;
  }

  .project-slide {
    align-content: start;
  }

  .project-slider__nav--prev {
    left: 12px;
  }

  .project-slider__nav--next {
    right: 12px;
  }

  .content-split__media,
  .service-detail__media,
  .article-detail__sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  html,
  body,
  .site-shell {
    overflow-x: hidden;
  }

  .site-container {
    width: min(var(--gs-container), calc(100% - 24px));
  }

  .site-header__main-inner {
    min-height: 76px;
  }

  .site-branding__logo {
    height: 52px;
  }

  .site-navigation {
    top: 76px;
    width: min(100vw, 340px);
    height: calc(100dvh - 76px);
    padding: 18px 18px 26px;
  }

  .inner-hero {
    min-height: 250px;
  }

  .inner-hero__content {
    padding: 46px 0;
  }

  .inner-hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .inner-hero p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .section-kicker {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section-heading,
  .inner-heading {
    max-width: 100%;
  }

  .section-heading h2,
  .inner-heading h2,
  .content-split__copy h2,
  .service-detail__copy h2,
  .application-panel h2,
  .contact-panel h2,
  .compliance-copy h2,
  .compliance-panel h2 {
    overflow-wrap: anywhere;
  }

  .home-hero__slider {
    height: clamp(230px, 38dvh, 340px);
  }

  .home-hero__slide img {
    object-fit: cover;
    object-position: center;
  }

  .home-hero__nav {
    width: 36px;
    height: 36px;
  }

  .overview-grid,
  .service-grid,
  .reason-grid,
  .project-highlight,
  .home-split,
  .article-grid,
  .service-directory,
  .portfolio-grid,
  .blog-grid,
  .opening-grid,
  .value-grid,
  .benefit-grid,
  .contact-grid,
  .csr-grid,
  .inner-form,
  .footer-grid,
  .site-form__grid--wide {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .client-grid,
  .industry-grid,
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-slider {
    max-width: 100%;
    overflow: hidden;
  }

  .project-slider__viewport {
    min-height: 560px;
  }

  .project-slider__nav {
    top: 34%;
  }

  .project-slide {
    gap: 18px;
  }

  .project-slide__content {
    gap: 12px;
  }

  .home-split__panel,
  .service-detail__copy,
  .application-panel,
  .contact-panel,
  .compliance-panel,
  .article-detail__content,
  .article-detail__sidebar {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .content-split__media img,
  .service-detail__media img,
  .project-highlight__media,
  .map-frame,
  .contact-panel {
    min-height: 240px;
  }

  .site-button,
  .footer-cta__button {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    padding-inline: 16px;
    text-align: center;
  }

  .section-actions {
    width: 100%;
  }

  .site-form input,
  .site-form select,
  .site-form textarea,
  .inner-form input,
  .inner-form select,
  .inner-form textarea,
  .site-searchable-select {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    gap: 30px;
    padding: 42px 0 34px;
  }

  .footer-panel h3 {
    margin-bottom: 18px;
  }

  .site-footer__bottom {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-container {
    width: min(var(--gs-container), calc(100% - 20px));
  }

  .site-navigation {
    width: 100vw;
  }

  .home-hero__slider {
    height: clamp(210px, 34dvh, 300px);
  }

  .stats-grid,
  .client-grid,
  .industry-grid,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .client-grid {
    gap: 18px;
  }

  .client-card {
    min-height: 96px;
  }

  .project-slider__viewport {
    min-height: 620px;
  }

  .project-slider__nav {
    top: 28%;
  }

  .feature-list li {
    padding: 12px 12px 12px 38px;
  }

  .footer-contact__line strong,
  .footer-contact__line span,
  .footer-links li {
    padding-left: 26px;
  }
}

@media (max-width: 380px) {
  .site-container {
    width: min(var(--gs-container), calc(100% - 16px));
  }

  .section-kicker,
  .site-button,
  .footer-cta__button {
    letter-spacing: 0.12em;
  }

  .overview-card__front h3,
  .project-slide__content h3,
  .project-highlight__content h3 {
    font-size: 1.25rem;
  }

  .project-slider__viewport {
    min-height: 680px;
  }
}

@media (min-width: 768px) {
  .service-detail__media {
    position: sticky;
    top: 32px;
    align-self: start;
  }
}

@media (min-width: 1025px) {
  .service-detail {
    align-items: start;
  }

  .service-detail__media {
    position: sticky;
    top: 32px;
    align-self: start;
    z-index: 1;
  }

  .service-detail__media img {
    min-height: 360px;
  }
}

