/* ==========================================================================
   GVM Technologies — Components
   ========================================================================== */

/* Top bar */
.gvm-topbar {
  background: var(--gvm-blue-dark);
  color: var(--gvm-white);
}

.gvm-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-block: 10px;
  gap: 16px;
}

.gvm-topbar__certifications {
  color: var(--gvm-white);
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}

.gvm-topbar a.phone {
  color: #132a4d;
  background: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  line-height: 20px;
  transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gvm-topbar__phone {
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  line-height: 1;
}

.gvm-topbar__phone .fa-phone {
  color: var(--gvm-blue);
  transform: scaleX(-1);
}

.gvm-topbar a.phone:hover {
  color: #132a4d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

/* Site header */
.gvm-header {
  background: linear-gradient(
    90deg,
    var(--gvm-white) 0%,
    var(--gvm-white) 48%,
    #1976c9 52%,
    #132a4d 100%
  );
  background-size: 220% 100%;
  background-position: 0 0;
  border-bottom: 1px solid var(--gvm-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(19, 42, 77, 0.08);
}

body.admin-bar .gvm-header {
  top: var(--gvm-admin-bar-offset);
}

.gvm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 20px;
  position: relative;
}

.gvm-logo__img {
  height: 45px;
  width: auto;
}

.gvm-logo--text {
  font-size: 18px;
  font-weight: 800;
  color: var(--gvm-text);
  letter-spacing: -0.02em;
}

.gvm-logo--text:hover {
  color: var(--gvm-green);
}

.gvm-nav {
  display: flex;
  align-items: center;
}

.gvm-nav__list {
  display: flex;
  align-items: stretch;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gvm-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.gvm-nav__link {
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 500;
  color: var(--gvm-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  cursor: pointer;
}

.gvm-nav__link:hover,
.gvm-nav__item.is-active > .gvm-nav__link {
  color: var(--gvm-blue);
}

.gvm-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gvm-white);
  border: 1px solid var(--gvm-border);
  border-radius: 10px;
  box-shadow: var(--gvm-shadow-dropdown);
  padding: 10px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  z-index: 50;
}

.gvm-nav__item.is-open > .gvm-nav__dropdown,
.gvm-nav__item:has(> .gvm-nav__link:hover) > .gvm-nav__dropdown,
.gvm-nav__item:has(> .gvm-nav__dropdown:hover) > .gvm-nav__dropdown,
.gvm-nav__item:focus-within > .gvm-nav__dropdown {
  display: flex;
}

.gvm-nav__sublink {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-family: var(--gvm-font-title);
  font-size: 14px;
  color: var(--gvm-text);
  white-space: nowrap;
}

.gvm-nav__sublink:hover,
.gvm-nav__sublink.is-active,
.gvm-nav__item.is-active > .gvm-nav__sublink {
  color: var(--gvm-blue);
}

.gvm-nav__item--mega {
  position: static;
}

.gvm-nav__item--mega::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 16px;
}

.gvm-nav__mega {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  width: min(1120px, calc(100vw - 40px));
  padding-top: 10px;
  transform: translateX(-50%);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

@media (min-width: 1025px) {
  .gvm-nav__item--mega.is-open > .gvm-nav__mega,
  .gvm-nav__item--mega:has(> .gvm-nav__link:hover) > .gvm-nav__mega,
  .gvm-nav__item--mega:has(> .gvm-nav__mega:hover) > .gvm-nav__mega,
  .gvm-nav__item--mega:focus-within > .gvm-nav__mega {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .gvm-nav__item--mega > .gvm-nav__dropdown {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .gvm-nav__item--mega > .gvm-nav__mega {
    display: none !important;
  }
}

.gvm-nav__mega-inner {
  overflow: hidden;
  border: 1px solid #e6eef5;
  border-radius: 15px;
  background: var(--gvm-white);
  box-shadow: 0 18px 42px rgba(19, 42, 77, 0.12);
  padding: 20px;
  font-family: "Sora", sans-serif;
}

.gvm-nav__mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(250px, 300px);
}

.gvm-nav__mega--company .gvm-nav__mega-grid {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(360px, 1.1fr);
}

.gvm-nav__mega-grid--technologies {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gvm-nav__mega--technologies .gvm-nav__mega-column {
  margin-right: 18px;
}

.gvm-nav__mega--technologies .gvm-nav__mega-column:last-child {
  margin-right: 0;
  border-right: 0;
}

.gvm-nav__mega--technologies .gvm-nav__mega-column-head {
  margin-bottom: 14px;
}

.gvm-nav__mega--technologies .gvm-nav__mega-column-title {
  font-size: 15px;
}

.gvm-nav__mega--technologies .gvm-nav__mega-link {
  min-height: 44px;
  padding: 8px 0;
  gap: 10px;
}

.gvm-nav__mega--technologies .gvm-nav__mega-link-icon {
  width: 28px;
  height: 28px;
  font-size: 13px;
}

.gvm-nav__mega--technologies .gvm-nav__mega-link-text {
  font-size: 13px;
  line-height: 1.3;
}

.gvm-nav__mega--technologies .gvm-nav__mega-link-chevron {
  padding-right: 0;
}

.gvm-nav__mega .fab {
  font-family: "Font Awesome 5 Brands", "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
}

@media (min-width: 1025px) and (max-width: 1279px) {
  .gvm-nav__mega--technologies .gvm-nav__mega-column:nth-child(3) {
    border-right: 0;
  }

  .gvm-nav__mega--technologies .gvm-nav__mega-column:nth-child(4),
  .gvm-nav__mega--technologies .gvm-nav__mega-column:nth-child(5) {
    margin-top: 8px;
  }
}

.gvm-nav__mega .fal,
.gvm-nav__mega .far,
.gvm-nav__mega .fas {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.gvm-nav__mega .fal,
.gvm-nav__mega .far {
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
}

.gvm-nav__mega .fas {
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
}

.gvm-nav__mega-column-icon i:not(.fab),
.gvm-nav__mega-link-icon i:not(.fab) {
  opacity: 0.72;
}

.gvm-nav__mega-link-chevron i {
  opacity: 0.55;
  font-size: 11px;
}

.gvm-nav__mega-link:hover .gvm-nav__mega-link-icon i,
.gvm-nav__mega-link:focus-visible .gvm-nav__mega-link-icon i,
.gvm-nav__mega-link.is-active .gvm-nav__mega-link-icon i {
  opacity: 1;
}

.gvm-nav__mega-column {
  min-width: 0;
  border-right: 1px solid #f3ecec;
  margin-right: 30px;
}

.gvm-nav__mega-column-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.gvm-nav__mega-column-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  place-items: center;
  background: #eef6fc;
  color: var(--gvm-blue);
  font-size: 16px;
  line-height: 1;
}

.gvm-nav__mega-column-title {
  margin: 0;
  color: #132a4d;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gvm-nav__mega-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-nav__mega-list-item + .gvm-nav__mega-list-item {
  border-top: 1px solid #edf2f7;
}

.gvm-nav__mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.gvm-nav__mega-link:hover,
.gvm-nav__mega-link:focus-visible,
.gvm-nav__mega-link.is-active {
  color: var(--gvm-blue);
  outline: none;
}

.gvm-nav__mega-link-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  place-items: center;
  background: #f4f9fd;
  color: #5f7f9d;
  font-size: 14px;
  line-height: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.gvm-nav__mega-link-text {
  min-width: 0;
  flex: 1 1 auto;
  color: #28466f;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}

.gvm-nav__mega-link:hover .gvm-nav__mega-link-icon,
.gvm-nav__mega-link:focus-visible .gvm-nav__mega-link-icon,
.gvm-nav__mega-link.is-active .gvm-nav__mega-link-icon {
  background: #eef6fc;
  color: var(--gvm-blue);
}

.gvm-nav__mega-link:hover .gvm-nav__mega-link-text,
.gvm-nav__mega-link:focus-visible .gvm-nav__mega-link-text,
.gvm-nav__mega-link.is-active .gvm-nav__mega-link-text {
  color: var(--gvm-blue);
  font-weight: 500;
}

.gvm-nav__mega-link-chevron {
  display: grid;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  place-items: center;
  color: #9aafc2;
  font-size: 11px;
  line-height: 1;
  padding-right: 30px !important;
  transition: color 0.2s ease;
}

.gvm-nav__mega-link:hover .gvm-nav__mega-link-chevron,
.gvm-nav__mega-link:focus-visible .gvm-nav__mega-link-chevron,
.gvm-nav__mega-link.is-active .gvm-nav__mega-link-chevron {
  color: var(--gvm-blue);
}

.gvm-nav__mega-cta {
  display: flex;
  min-width: 0;
  align-items: stretch;
  background: var(--gvm-white);
  border-right: 0;
}

.gvm-nav__mega-cta-card {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  padding: 26px 22px 22px;
  border: 1px solid #e3edf5;
  border-radius: 15px;
  background: radial-gradient(circle at 50% 0%, rgb(230 238 252) 0%, rgba(229, 243, 255, 0) 58%), linear-gradient(180deg, #e6eefc 0%, #e7effc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gvm-nav__mega-cta-art {
  display: flex;
  justify-content: center;
  margin: -26px -22px 18px;
}

.gvm-nav__mega-cta-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  object-position: center top;
}

.gvm-nav__mega-cta-copy {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.gvm-nav__mega-cta-title {
  margin: 0 0 8px;
  color: #0b1b33;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gvm-nav__mega-cta-text {
  max-width: none;
  margin: 0 0 22px;
  color: #44586d;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.gvm-nav__mega-cta-button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--gvm-blue-dark);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(5, 97, 157, 0.24);
}

.gvm-nav__mega-cta-button:hover,
.gvm-nav__mega-cta-button:focus-visible {
  background: var(--gvm-blue);
  box-shadow: 0 12px 24px rgba(5, 97, 157, 0.28);
}

.gvm-nav__mega-cta-button i {
  font-size: 16px;
  line-height: 1;
  color: var(--gvm-white);
}

.gvm-nav__mega-media {
  display: flex;
  min-width: 0;
  align-items: stretch;
  background: var(--gvm-white);
  border-right: 0;
}

.gvm-nav__mega-media-card {
  display: flex;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e3edf5;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 243, 255, 0.85) 0%, rgba(229, 243, 255, 0) 58%),
    linear-gradient(180deg, #f7fbff 0%, #edf5fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gvm-nav__mega-media-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.gvm-header__strategy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 10px;
  background: var(--gvm-blue-dark);
  box-shadow: 0 5px 14px rgba(19, 42, 77, 0.24);
  color: var(--gvm-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-header__strategy:hover,
.gvm-header__strategy:focus-visible {
  background: var(--gvm-blue);
  box-shadow: 0 8px 20px rgba(19, 42, 77, 0.3);
  color: var(--gvm-white);
  transform: translateY(-1px);
}

.gvm-hero__ctas .gvm-btn {
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.gvm-hero__ctas .gvm-btn--primary:hover,
.gvm-hero__ctas .gvm-btn--primary:focus-visible {
  background: var(--gvm-blue);
  box-shadow: 0 8px 20px rgba(25, 118, 201, 0.3);
  color: var(--gvm-white);
  transform: translateY(-1px);
}

.gvm-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 102;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--gvm-radius);
  background: transparent;
  cursor: pointer;
  color: var(--gvm-text);
  padding: 0;
}

.gvm-nav-toggle[aria-expanded="true"] {
  color: var(--gvm-blue);
}

.gvm-nav-toggle__menu,
.gvm-nav-toggle__close {
  align-items: center;
  justify-content: center;
}

.gvm-nav-toggle__menu {
  display: inline-flex;
}

.gvm-nav-toggle__close {
  display: none;
}

.gvm-nav-toggle[aria-expanded="true"] .gvm-nav-toggle__menu {
  display: none;
}

.gvm-nav-toggle[aria-expanded="true"] .gvm-nav-toggle__close {
  display: inline-flex;
}

.gvm-nav-toggle:focus-visible {
  outline: 2px solid var(--gvm-green);
  outline-offset: 3px;
}

/* Hero */
.gvm-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(48px, 6vw, 56px);
  border-bottom: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, #f3f9ff 100%);
  text-align: center;
}

.gvm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 46% 62% at 0% 22%, rgba(25, 118, 201, 0.14) 0%, rgba(197, 226, 246, 0.28) 34%, transparent 68%),
    radial-gradient(ellipse 46% 62% at 100% 22%, rgba(5, 97, 157, 0.12) 0%, rgba(181, 219, 245, 0.24) 34%, transparent 68%),
    radial-gradient(ellipse 100% 48% at 50% 100%, rgba(229, 243, 255, 0.38) 0%, transparent 72%);
}

.gvm-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(229, 243, 255, 0.14) 100%);
}

.gvm-hero__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 20%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.3;
}

.gvm-hero__waves-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  flex: 0 0 auto;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.gvm-hero__glow {
  display: none;
}

.gvm-hero__glow::before {
  content: none;
}

.gvm-hero__hub {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  height: clamp(220px, 30vw, 280px);
  overflow: visible;
  margin-top: 25px;
}

.gvm-hero__hub-center {
  position: absolute;
  top: 54%;
  left: 50%;
  z-index: 3;
  width: clamp(116px, 14.5vw, 148px);
  height: clamp(116px, 14.5vw, 148px);
  transform: translate(-50%, -50%);
  animation: gvm-hero-hub-float-center 5s ease-in-out infinite;
}

.gvm-hero__hub-glow {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(229, 243, 255, 0.9) 0%,
    rgba(197, 226, 246, 0.45) 38%,
    transparent 72%
  );
  animation: gvm-hero-hub-pulse 4s ease-in-out infinite;
}

.gvm-hero__hub-glow--secondary {
  inset: -18%;
  background: radial-gradient(
    circle,
    rgba(25, 118, 201, 0.16) 0%,
    rgba(25, 118, 201, 0.06) 45%,
    transparent 70%
  );
  animation: gvm-hero-hub-pulse 4s ease-in-out infinite 2s;
}

.gvm-hero__hub-ripple {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(25, 118, 201, 0.28);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.gvm-hero__hub-ripple--1 {
  animation: gvm-hero-hub-ripple 3.6s ease-out infinite;
}

.gvm-hero__hub-ripple--2 {
  animation: gvm-hero-hub-ripple 3.6s ease-out infinite 1.8s;
}

.gvm-hero__hub-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gvm-hero__hub-ring--outer {
  inset: -8%;
  border: 1px dashed rgba(25, 118, 201, 0.22);
  animation: gvm-hero-hub-spin 22s linear infinite reverse;
}

.gvm-hero__hub-ring--mid {
  inset: -2%;
  border: 1px solid rgba(25, 118, 201, 0.12);
  animation: gvm-hero-hub-spin 16s linear infinite;
}

.gvm-hero__hub-ring--inner {
  inset: 10%;
  border: 1px solid rgba(25, 118, 201, 0.2);
  box-shadow: inset 0 0 18px rgba(25, 118, 201, 0.06);
  animation: gvm-hero-hub-spin 11s linear infinite reverse;
}

.gvm-hero__hub-orbit-dots {
  position: absolute;
  inset: -6%;
  animation: gvm-hero-hub-spin 7s linear infinite;
}

.gvm-hero__hub-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(145deg, #56a5e8 0%, var(--gvm-blue) 100%);
  box-shadow: 0 0 10px rgba(25, 118, 201, 0.55);
  animation: gvm-hero-hub-dot-pulse 2.4s ease-in-out infinite;
}

.gvm-hero__hub-orbit-dot:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.gvm-hero__hub-orbit-dot:nth-child(2) {
  right: 6%;
  bottom: 12%;
  animation-delay: 0.4s;
}

.gvm-hero__hub-orbit-dot:nth-child(3) {
  left: 6%;
  bottom: 12%;
  animation-delay: 0.8s;
}

.gvm-hero__hub-arc-track {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gvm-hero__hub-arc-track--primary {
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.98;
  filter: drop-shadow(0 0 8px rgba(25, 118, 201, 0.28));
}

.gvm-hero__hub-arc-track--primary .gvm-hero__hub-arc-path {
  fill: none;
}

.gvm-hero__hub-arc-track--secondary {
  inset: 5%;
  display: block;
  overflow: visible;
  opacity: 0.72;
  filter: drop-shadow(0 0 6px rgba(25, 118, 201, 0.2));
}

.gvm-hero__hub-arc-track--secondary .gvm-hero__hub-arc-path {
  fill: none;
}

.gvm-hero__hub-core {
  position: absolute;
  inset: 22%;
  z-index: 2;
  display: grid;
  overflow: hidden;
  padding: 10%;
  border: 2px solid rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  place-items: center;
  background: radial-gradient(circle at 30% 24%, #ffffff 0%, #edf6fd 40%, #c5e2f6 100%);
  box-shadow:
    0 16px 36px rgba(19, 42, 77, 0.16),
    0 0 0 4px rgba(25, 118, 201, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -10px 20px rgba(25, 118, 201, 0.1);
  animation: gvm-hero-hub-core-pulse 3.5s ease-in-out infinite;
}

.gvm-hero__hub-shimmer {
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 300deg,
    rgba(255, 255, 255, 0.75) 320deg,
    transparent 360deg
  );
  opacity: 0.55;
  animation: gvm-hero-hub-spin 4s linear infinite;
  pointer-events: none;
}

.gvm-hero__hub-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gvm-font-title);
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  background: linear-gradient(180deg, #1a4a7c 0%, var(--gvm-blue-dark) 55%, #0f2444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gvm-hero-hub-logo-float 3.5s ease-in-out infinite;
}

@keyframes gvm-hero-hub-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gvm-hero-hub-float-center {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes gvm-hero-hub-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes gvm-hero-hub-ripple {
  0% {
    opacity: 0.55;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes gvm-hero-hub-dot-pulse {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 6px rgba(25, 118, 201, 0.35);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 14px rgba(25, 118, 201, 0.75);
  }
}

@keyframes gvm-hero-hub-core-pulse {
  0%,
  100% {
    box-shadow:
      0 16px 36px rgba(19, 42, 77, 0.16),
      0 0 0 4px rgba(25, 118, 201, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -10px 20px rgba(25, 118, 201, 0.1);
  }

  50% {
    box-shadow:
      0 22px 44px rgba(25, 118, 201, 0.24),
      0 0 0 6px rgba(25, 118, 201, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -10px 24px rgba(25, 118, 201, 0.14);
  }
}

@keyframes gvm-hero-hub-logo-float {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.gvm-hero__floating-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

@property --gvm-hero-spread-top {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 54%;
}

@property --gvm-hero-spread-left {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 50%;
}

.gvm-hero__floating-icon {
  position: absolute;
  top: var(--gvm-hero-spread-top);
  left: var(--gvm-hero-spread-left);
  z-index: 2;
  display: grid;
  width: var(--gvm-hero-icon-size);
  height: var(--gvm-hero-icon-size);
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gvm-hero-icon-color, var(--gvm-blue)) 24%, #ffffff);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 22px color-mix(in srgb, var(--gvm-hero-icon-color, var(--gvm-blue)) 16%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  color: var(--gvm-hero-icon-color, var(--gvm-blue));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.14);
  backdrop-filter: blur(8px);
  will-change: top, left, opacity, transform, box-shadow;
  --gvm-hero-icon-size: clamp(38px, 4.2vw, 42px);
  --gvm-hero-icon-float-duration: 3.6s;
  --gvm-hero-icon-glow-duration: 2.8s;
  animation:
    gvm-hero-icon-spread 0.75s cubic-bezier(0.34, 1.2, 0.64, 1) var(--gvm-hero-icon-delay, 0s) forwards,
    gvm-hero-icon-float var(--gvm-hero-icon-float-duration) ease-in-out calc(var(--gvm-hero-icon-delay, 0s) + 0.85s) infinite,
    gvm-hero-icon-glow var(--gvm-hero-icon-glow-duration) ease-in-out calc(var(--gvm-hero-icon-delay, 0s) + 0.85s) infinite;
}

@keyframes gvm-hero-icon-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-8px) scale(1.04);
  }
}

@keyframes gvm-hero-icon-glow {
  0%,
  100% {
    border-color: color-mix(in srgb, var(--gvm-hero-icon-color, var(--gvm-blue)) 24%, #ffffff);
    box-shadow:
      0 10px 22px color-mix(in srgb, var(--gvm-hero-icon-color, var(--gvm-blue)) 16%, transparent),
      inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  }

  50% {
    border-color: color-mix(in srgb, var(--gvm-hero-icon-color, var(--gvm-blue)) 42%, #ffffff);
    box-shadow:
      0 16px 30px color-mix(in srgb, var(--gvm-hero-icon-color, var(--gvm-blue)) 28%, transparent),
      0 0 18px color-mix(in srgb, var(--gvm-hero-icon-color, var(--gvm-blue)) 22%, transparent),
      inset 0 0 0 1px rgba(255, 255, 255, 0.92);
  }
}

@keyframes gvm-hero-icon-spread {
  0% {
    --gvm-hero-spread-top: 54%;
    --gvm-hero-spread-left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.14);
  }

  100% {
    --gvm-hero-spread-top: var(--gvm-hero-icon-top);
    --gvm-hero-spread-left: var(--gvm-hero-icon-left);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Reference stagger — left side cluster (mirrored on right). */
.gvm-hero__floating-icon--side-left.gvm-hero__floating-icon--row-0 {
  --gvm-hero-icon-top: 22%;
  --gvm-hero-icon-left: 21%;
  --gvm-hero-icon-float-duration: 3.2s;
  --gvm-hero-icon-glow-duration: 2.6s;
}

.gvm-hero__floating-icon--side-left.gvm-hero__floating-icon--row-1 {
  --gvm-hero-icon-top: 12%;
  --gvm-hero-icon-left: 34%;
  --gvm-hero-icon-float-duration: 3.9s;
  --gvm-hero-icon-glow-duration: 3.1s;
}

.gvm-hero__floating-icon--side-left.gvm-hero__floating-icon--row-2 {
  --gvm-hero-icon-top: 45%;
  --gvm-hero-icon-left: 10%;
  --gvm-hero-icon-float-duration: 4.2s;
  --gvm-hero-icon-glow-duration: 2.9s;
}

.gvm-hero__floating-icon--side-left.gvm-hero__floating-icon--row-3 {
  --gvm-hero-icon-top: 50%;
  --gvm-hero-icon-left: 29%;
  --gvm-hero-icon-float-duration: 3.5s;
  --gvm-hero-icon-glow-duration: 3.3s;
}

.gvm-hero__floating-icon--side-left.gvm-hero__floating-icon--row-4 {
  --gvm-hero-icon-top: 78%;
  --gvm-hero-icon-left: 20%;
  --gvm-hero-icon-float-duration: 4s;
  --gvm-hero-icon-glow-duration: 2.7s;
}

.gvm-hero__floating-icon--side-left.gvm-hero__floating-icon--row-5 {
  --gvm-hero-icon-top: 82%;
  --gvm-hero-icon-left: 33%;
  --gvm-hero-icon-float-duration: 3.7s;
  --gvm-hero-icon-glow-duration: 3s;
}

.gvm-hero__floating-icon--side-right.gvm-hero__floating-icon--row-0 {
  --gvm-hero-icon-top: 22%;
  --gvm-hero-icon-left: 79%;
  --gvm-hero-icon-float-duration: 3.4s;
  --gvm-hero-icon-glow-duration: 2.8s;
}

.gvm-hero__floating-icon--side-right.gvm-hero__floating-icon--row-1 {
  --gvm-hero-icon-top: 12%;
  --gvm-hero-icon-left: 66%;
  --gvm-hero-icon-float-duration: 4.1s;
  --gvm-hero-icon-glow-duration: 3.2s;
}

.gvm-hero__floating-icon--side-right.gvm-hero__floating-icon--row-2 {
  --gvm-hero-icon-top: 45%;
  --gvm-hero-icon-left: 90%;
  --gvm-hero-icon-float-duration: 3.6s;
  --gvm-hero-icon-glow-duration: 2.5s;
}

.gvm-hero__floating-icon--side-right.gvm-hero__floating-icon--row-3 {
  --gvm-hero-icon-top: 50%;
  --gvm-hero-icon-left: 71%;
  --gvm-hero-icon-float-duration: 4.3s;
  --gvm-hero-icon-glow-duration: 3.4s;
}

.gvm-hero__floating-icon--side-right.gvm-hero__floating-icon--row-4 {
  --gvm-hero-icon-top: 78%;
  --gvm-hero-icon-left: 80%;
  --gvm-hero-icon-float-duration: 3.3s;
  --gvm-hero-icon-glow-duration: 2.9s;
}

.gvm-hero__floating-icon--side-right.gvm-hero__floating-icon--row-5 {
  --gvm-hero-icon-top: 82%;
  --gvm-hero-icon-left: 67%;
  --gvm-hero-icon-float-duration: 3.8s;
  --gvm-hero-icon-glow-duration: 3.1s;
}

.gvm-hero__floating-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  animation: gvm-hero-icon-logo-pulse var(--gvm-hero-icon-glow-duration, 2.8s) ease-in-out calc(var(--gvm-hero-icon-delay, 0s) + 0.85s) infinite;
}

@keyframes gvm-hero-icon-logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes gvm-hero-hub-float {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 3px));
  }
}

.gvm-hero > .gvm-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gvm-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gvm-hero__title {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  font-size: clamp(44px, 3.5vw, 55px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.035em;
  text-align: center;
}

.gvm-hero__text {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gvm-muted);
  text-align: center;
}

.gvm-hero__ctas {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.gvm-hero__ctas .gvm-btn--secondary {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.08);
  color: var(--gvm-blue-dark);
}

.gvm-hero__ctas .gvm-btn--secondary:hover,
.gvm-hero__ctas .gvm-btn--secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 8px 20px rgba(25, 118, 201, 0.3);
  color: var(--gvm-blue-dark);
  transform: translateY(-1px);
}

/* Section shared */
.gvm-section {
  padding: 0 0 56px;
}

.gvm-section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 16px;
}

.gvm-section__title {
  font-size: var(--gvm-h2-size);
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}

body.home #primary .gvm-section__title,
body.home #primary .gvm-cta__title,
body.home #primary .gvm-trusted__title {
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gvm-section__link {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.gvm-section__intro {
  color: var(--gvm-muted);
  font-size: 14.5px;
  margin: 0 0 26px;
}

.gvm-section__title--spaced {
  margin-bottom: 8px;
}

.gvm-section__intro--process {
  margin-bottom: 32px;
}

/* Process */
.gvm-process-section {
  padding: 80px 0;
  background: #fff;
  overflow: visible;
}

.gvm-process-layout {
  display: grid;
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: minmax(0, 1fr) clamp(460px, 48vw, 580px);
  overflow: visible;
}

.gvm-process-intro {
  position: sticky;
  top: var(--gvm-sticky-top);
  align-self: start;
}

.gvm-process-intro__title {
  color: #132a4d;
}

.gvm-process-intro__description {
  margin: 14px 0 0;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gvm-process-nav {
  margin-top: 32px;
}

.gvm-process-nav__list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(5, 97, 157, 0.12);
  list-style: none;
}

.gvm-process-nav__button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 11px 0 11px 16px;
  border: 0;
  background: transparent;
  color: var(--gvm-muted);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color 0.2s ease;
}

.gvm-process-nav__button:hover,
.gvm-process-nav__button:focus-visible {
  color: var(--gvm-blue);
  outline: none;
}

.gvm-process-nav__item {
  position: relative;
}

.gvm-process-nav__item.is-active::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -18px;
  width: 2px;
  border-radius: 999px;
  background: var(--gvm-blue);
}

.gvm-process-nav__item.is-active .gvm-process-nav__button {
  color: var(--gvm-blue);
}

.gvm-process-nav__num {
  min-width: 1.2em;
  color: inherit;
  font-family: var(--gvm-font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.72;
}

.gvm-process-nav__item.is-active .gvm-process-nav__num {
  opacity: 1;
}

.gvm-process-nav__text {
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.gvm-process-steps {
  display: grid;
  gap: 18px;
  width: 100%;
}

.gvm-process-step {
  position: relative;
  width: 100%;
  min-height: clamp(170px, 22vh, 220px);
  padding: 22px 68px 22px 22px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 118, 201, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(19, 42, 77, 0.06);
  opacity: 0.48;
  transition:
    opacity 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.gvm-process-step.is-active {
  border-color: rgba(5, 97, 157, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 118, 201, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 36px rgba(5, 97, 157, 0.12);
  opacity: 1;
  transform: translateY(-2px);
}

.gvm-process-step__num {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(5, 97, 157, 0.22);
  font-family: var(--gvm-font-title);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  line-height: 1;
  transition: color 0.35s ease;
}

.gvm-process-step.is-active .gvm-process-step__num {
  color: var(--gvm-blue);
}

.gvm-process-step__content {
  position: relative;
  z-index: 1;
}

.gvm-process-step__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border: 1px solid rgba(5, 97, 157, 0.1);
  border-radius: 14px;
  place-items: center;
  background: linear-gradient(180deg, #edf6fd 0%, #e5f3ff 100%);
  color: var(--gvm-blue);
  font-size: 19px;
  line-height: 1;
}

.gvm-process-step__icon i {
  display: block;
  line-height: 1;
}

.gvm-process-step__icon .far {
  font-weight: 400;
}

.gvm-process-step__icon .fas {
  font-weight: 900;
}

.gvm-process-step__title {
  margin: 0 0 10px;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
}

.gvm-process-step__desc {
  margin: 0;
  max-width: 52ch;
  color: var(--gvm-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* About band */
.gvm-about-band {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* About */
.gvm-about {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.gvm-about__grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.20fr);
}

.gvm-about__title {
  color: #132a4d;
}

.gvm-about__description {
  margin: 18px 0 0;
  max-width: 54ch;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-about__cta {
  margin-top: 28px;
}

.gvm-about__visual {
  position: relative;
}

.gvm-about-showcase {
  display: grid;
  gap: 16px;
}

.gvm-about-showcase__points {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-about-showcase__point {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(5, 97, 157, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-about-showcase__point-icon {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(5, 97, 157, 0.1);
  border-radius: 12px;
  place-items: center;
  background: linear-gradient(180deg, #edf6fd 0%, #e5f3ff 100%);
  color: var(--gvm-blue);
  font-size: 17px;
}

.gvm-about-showcase__point-title {
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.gvm-about-showcase__point-text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.gvm-about-verified {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.gvm-about-verified__label {
  margin: 0;
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.gvm-about-verified__list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-about-verified__item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 16px 4px 0;
}
.gvm-about-verified__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 4px;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.gvm-about-verified__name {
  color: var(--gvm-text);
  font-family: var(--gvm-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

/* Counters */
.gvm-counters {
  padding: 40px 0 72px;
}

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

.gvm-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 32px 26px;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 118, 201, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 34px rgba(19, 42, 77, 0.08);
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease;
}

.gvm-counter:hover {
  border-color: rgba(5, 97, 157, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 22px rgba(5, 97, 157, 0.1),
    0 24px 48px rgba(19, 42, 77, 0.1);
  transform: translateY(-4px);
}

.gvm-counter__value {
  margin: 0;
}

.gvm-counter__number {
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: clamp(34px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1;
}

.gvm-counter__label {
  margin: 12px 0 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* Services */
.gvm-services {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(25, 118, 201, 0.12), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(5, 97, 157, 0.1), transparent 36%),
    linear-gradient(180deg, #f9fcff 0%, #edf6fd 52%, #f7fbff 100%);
}

.gvm-services__header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gvm-services__description {
  margin: 14px 0 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.gvm-service-card {
  min-width: 0;
}

.gvm-service-card__link {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 14%, rgba(25, 118, 201, 0.18), transparent 46%),
    radial-gradient(circle at 92% 88%, rgba(5, 97, 157, 0.12), transparent 42%),
    linear-gradient(180deg, #edf6fd 0%, #f2f9ff 52%, #f8fcff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 34px rgba(19, 42, 77, 0.08);
  color: inherit;
  transition:
    border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease;
}

.gvm-service-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, #05619d 0%, #1976c9 55%, #4ea3e8 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gvm-service-card__link:hover,
.gvm-service-card__link:focus-visible {
  border-color: rgba(5, 97, 157, 0.28);
  background:
    radial-gradient(circle at 10% 14%, rgba(25, 118, 201, 0.24), transparent 46%),
    radial-gradient(circle at 92% 88%, rgba(5, 97, 157, 0.16), transparent 42%),
    linear-gradient(180deg, #e3f2fc 0%, #edf7ff 52%, #f5fbff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 22px rgba(5, 97, 157, 0.12),
    0 28px 56px rgba(19, 42, 77, 0.12);
  color: inherit;
  outline: none;
  transform: translateY(-8px);
}

.gvm-service-card__link:hover .gvm-service-card__accent,
.gvm-service-card__link:focus-visible .gvm-service-card__accent {
  transform: scaleX(1);
}

.gvm-service-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px 0;
}

.gvm-service-card__icon-wrap {
  display: flex;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 246, 253, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 28px rgba(5, 97, 157, 0.14);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
}

.gvm-service-card__link:hover .gvm-service-card__icon-wrap,
.gvm-service-card__link:focus-visible .gvm-service-card__icon-wrap {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 34px rgba(5, 97, 157, 0.2);
}

.gvm-service-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gvm-blue);
  font-size: 26px;
  line-height: 1;
}

.gvm-service-card__icon i {
  display: block;
}

.gvm-service-single__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gvm-blue);
  font-size: 28px;
  line-height: 1;
}

.gvm-service-single__icon i {
  display: block;
}

.gvm-service-card__body {
  flex: 1;
  padding: 16px 22px 0;
}

.gvm-service-card__title {
  margin: 0;
  min-width: 0;
  flex: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 11.5em;
  min-height: calc(1.35em * 2);
  overflow-wrap: normal;
  word-break: normal;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.gvm-service-card__link:hover .gvm-service-card__title,
.gvm-service-card__link:focus-visible .gvm-service-card__title {
  color: var(--gvm-blue);
}

.gvm-service-card__excerpt {
  margin: 0 0 22px;
  color: var(--gvm-muted);
  font-size: 14px;
  line-height: 1.7;
}

.gvm-service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(5, 97, 157, 0.1);
  background: rgba(255, 255, 255, 0.38);
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.gvm-service-card__link:hover .gvm-service-card__footer,
.gvm-service-card__link:focus-visible .gvm-service-card__footer {
  border-top-color: rgba(5, 97, 157, 0.16);
  background: rgba(255, 255, 255, 0.52);
}

.gvm-service-card__action {
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.gvm-service-card__arrow {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 14px;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9fd 100%);
  box-shadow: 0 8px 18px rgba(5, 97, 157, 0.1);
  color: var(--gvm-blue);
  font-size: 13px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gvm-service-card__link:hover .gvm-service-card__arrow,
.gvm-service-card__link:focus-visible .gvm-service-card__arrow {
  border-color: transparent;
  background: var(--gvm-blue);
  box-shadow: 0 12px 24px rgba(5, 97, 157, 0.28);
  color: var(--gvm-white);
  transform: translateX(3px);
}

@media (hover: none) {
  .gvm-service-card__accent {
    transform: scaleX(1);
  }
}

.gvm-service-single__header {
  margin-bottom: 28px;
}

.gvm-service-single__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gvm-service-single__icon-wrap {
  display: flex;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(25, 118, 201, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 246, 253, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 28px rgba(5, 97, 157, 0.14);
}

.gvm-service-single__title {
  margin: 0;
  min-width: 0;
  flex: 1;
}

.gvm-service-single__content {
  max-width: 860px;
}

/* Technologies */
.gvm-technologies {
  padding: 80px 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(25, 118, 201, 0.12), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(5, 97, 157, 0.1), transparent 36%),
    linear-gradient(180deg, #f9fcff 0%, #edf6fd 52%, #f7fbff 100%);
}

.gvm-technologies__header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gvm-technologies__description {
  margin: 14px 0 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-technologies__slider {
  position: relative;
  overflow: hidden;
  margin: 34px 0 0;
  padding: 8px 0 30px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gvm-technologies__track {
  display: flex;
  width: max-content;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  contain: layout style paint;
  animation: gvm-technologies-marquee var(--gvm-technologies-duration, 40s) linear infinite;
}

@media (hover: hover) {
  .gvm-technologies__slider:hover .gvm-technologies__track {
    animation-play-state: paused;
  }
}

.gvm-technologies__list {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  gap: 18px;
  margin: 0;
  padding: 10px 9px;
  list-style: none;
}

.gvm-technologies__item {
  display: flex;
  flex: 0 0 auto;
}

.gvm-latest-posts__tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 34px auto 28px;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.06);
  gap: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gvm-latest-posts__tabs::-webkit-scrollbar {
  display: none;
}

.gvm-latest-posts__tab {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 11px 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--gvm-muted);
  cursor: pointer;
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.gvm-latest-posts__tab:hover {
  color: var(--gvm-blue);
}

.gvm-latest-posts__tab.is-active {
  background: var(--gvm-blue);
  box-shadow: 0 6px 16px rgba(5, 97, 157, 0.2);
  color: var(--gvm-white);
}

.gvm-latest-posts__tab:focus-visible {
  outline: none;
  box-shadow: var(--gvm-focus);
}

.gvm-latest-posts__panel:focus {
  outline: none;
}

.gvm-technology-card {
  width: 260px;
  min-width: 260px;
  max-width: 260px;
}

.gvm-technology-card__link {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 16px;
  background: var(--gvm-white);
  box-shadow: 0 12px 15px rgb(19 42 77 / 1%);
  color: inherit;
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  gap: 8px;
}

.gvm-technology-card__media {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}

.gvm-technology-card__link:hover,
.gvm-technology-card__link:focus-visible {
  border-color: rgba(5, 97, 157, 0.32);
  box-shadow: 0px 3px 25px rgba(5, 97, 157, 0.08), 0 24px 48px rgb(202 223 255 / 12%);
  color: inherit;
  outline: none;
  transform: translateY(-4px);
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.gvm-technology-card__image {
  display: block;
  width: 100%;
  max-width: 55px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gvm-technology-card__image.gvm-technology-card__image--web3 {
  width: auto;
  max-width: 40px;
}

.gvm-technology-card__link:hover .gvm-technology-card__image,
.gvm-technology-card__link:focus-visible .gvm-technology-card__image {
  transform: scale(1.04);
}

.gvm-technology-card__placeholder {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--gvm-blue);
  font-size: 28px;
}

.gvm-technology-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.gvm-technology-card__title {
  margin: 0;
  color: #000;
  font-family: var(--gvm-font-title);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.gvm-technology-card__excerpt {
  margin: 0;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.65;
}

.gvm-technologies__empty {
  margin: 0;
  padding: 28px 24px;
  border: 1px dashed rgba(5, 97, 157, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gvm-muted);
  text-align: center;
}

@keyframes gvm-technologies-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--gvm-technologies-shift, -50%), 0, 0);
  }
}

/* Testimonials */
.gvm-testimonials {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:linear-gradient(
    0deg, #f7fbff 0%, #e5f3ff3d 50%, #d7ebff 100%);
}

.gvm-testimonials__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 44px;
}

.gvm-testimonials__header {
  max-width: none;
  margin: 0;
  text-align: left;
}

.gvm-testimonials__description {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-testimonials__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.gvm-testimonials__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(5, 97, 157, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(19, 42, 77, 0.06);
}

.gvm-testimonials__highlight-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  place-items: center;
  background: rgba(5, 97, 157, 0.1);
  color: var(--gvm-blue);
  font-size: 14px;
}

.gvm-testimonials__highlight-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.gvm-testimonials__highlight-value {
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.gvm-testimonials__highlight-label {
  color: var(--gvm-muted);
  font-size: 12px;
  line-height: 1.3;
}

.gvm-testimonials__media {
  --gvm-media-slide-gap: 20px;
  min-width: 0;
}

.gvm-testimonials__media-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.gvm-testimonials__media-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.gvm-testimonials__media-viewport.is-dragging .gvm-testimonials__video-trigger {
  pointer-events: none;
}

.gvm-testimonials__media-track {
  display: flex;
  gap: var(--gvm-media-slide-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.gvm-testimonials__media-slide {
  flex: 0 0 var(--gvm-media-slide-width, 100%);
  min-width: 0;
}

.gvm-testimonials__media-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 14px;
  margin-top: 18px;
  padding: 0;
}

.gvm-testimonials__media-dots[hidden] {
  display: none;
}

.gvm-testimonials__video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: visible;
  background: transparent;
  box-shadow: 0 20px 44px rgba(19, 42, 77, 0.14);
  cursor: pointer;
}

.gvm-testimonials__video-poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
}

.gvm-testimonials__video-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 24, 46, 0.08), rgba(8, 24, 46, 0.42));
  pointer-events: none;
}

.gvm-testimonials__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 42, 77, 0.22);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gvm-testimonials__video-play::before,
.gvm-testimonials__video-play::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.28);
  transform: scale(1);
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.gvm-testimonials__video-play::before {
  animation: gvm-video-play-ring 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.gvm-testimonials__video-play::after {
  animation: gvm-video-play-ring 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s infinite;
}

.gvm-testimonials__video-play-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.gvm-testimonials__video-play-icon svg {
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 3px;
}

@keyframes gvm-video-play-ring {
  0% {
    transform: scale(1);
    opacity: 0.82;
  }

  15% {
    opacity: 0.72;
  }

  100% {
    transform: scale(1.72);
    opacity: 0;
  }
}

.gvm-testimonials__video-trigger:focus-visible {
  outline: 2px solid var(--gvm-blue);
  outline-offset: 3px;
}

.gvm-testimonials__video-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 13px;
  font-weight: 700;
}

.gvm-testimonials__modal[hidden] {
  display: none;
}

.gvm-testimonials__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gvm-testimonials__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 85%);
}

.gvm-testimonials__modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.gvm-testimonials__modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: grid;
  width: auto;
  height: auto;
  padding: 4px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gvm-testimonials__modal-close svg {
  display: block;
  width: 24px;
  height: 24px;
}

.gvm-testimonials__modal-close:hover,
.gvm-testimonials__modal-close:focus-visible {
  background: transparent;
  color: #fff;
  opacity: 0.85;
  outline: none;
  transform: scale(1.05);
}

.gvm-testimonials__modal-player {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

.gvm-testimonials__modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.gvm-modal-open {
  overflow: hidden;
}

.gvm-testimonials__grid,
.gvm-testimonials__slider {
  position: relative;
  z-index: 1;
}

.gvm-testimonials__slider {
  --gvm-testimonial-slides: 3;
  --gvm-testimonial-gap: 20px;
}

.gvm-testimonials__viewport {
  overflow: hidden;
}

.gvm-testimonials__track {
  display: flex;
  align-items: center;
  gap: var(--gvm-testimonial-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.gvm-testimonials__slide {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 calc(
    (100% - (var(--gvm-testimonial-slides) - 1) * var(--gvm-testimonial-gap)) /
      var(--gvm-testimonial-slides)
  );
  min-width: 0;
}

.gvm-testimonials__slide.is-center {
  z-index: 3;
}

.gvm-testimonials__slide.is-side {
  z-index: 2;
}

.gvm-testimonials__slide .gvm-testimonial-card {
  transform: scale(0.88);
  opacity: 0.55;
  transform-origin: center center;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gvm-testimonials__slide.is-side .gvm-testimonial-card {
  transform: scale(0.92);
  opacity: 0.62;
}

.gvm-testimonials__slide.is-center .gvm-testimonial-card {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 18px 40px rgba(19, 42, 77, 0.02);
}

.gvm-testimonials__slider:not(.is-center-mode) .gvm-testimonials__slide .gvm-testimonial-card {
  transform: none;
  opacity: 1;
}

.gvm-testimonials__slider:not(.is-center-mode) .gvm-testimonials__slide.is-side .gvm-testimonial-card {
  transform: none;
  opacity: 0.72;
}

.gvm-testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.gvm-testimonials__nav {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 14px;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9fd 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 22px rgba(5, 97, 157, 0.1);
  color: var(--gvm-blue);
  cursor: pointer;
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gvm-testimonials__nav:hover,
.gvm-testimonials__nav:focus-visible {
  border-color: rgba(19, 42, 77, 0.36);
  background: var(--gvm-blue-dark);
  box-shadow: 0 14px 28px rgba(19, 42, 77, 0.24);
  color: var(--gvm-white);
  outline: none;
  transform: translateY(-1px);
}

.gvm-testimonials__nav[disabled],
.gvm-testimonials__nav[hidden] {
  display: none;
}

.gvm-testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(5, 97, 157, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(5, 97, 157, 0.08);
}

.gvm-testimonials__dots[hidden] {
  display: none;
}

.gvm-testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(5, 97, 157, 0.22);
  cursor: pointer;
  transition:
    width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.28s ease,
    transform 0.28s ease;
}

.gvm-testimonials__dot.is-active,
.gvm-testimonials__dot[aria-current="true"] {
  width: 28px;
  background: var(--gvm-blue);
}

.gvm-testimonials__dot:focus-visible {
  outline: 2px solid var(--gvm-blue);
  outline-offset: 2px;
}

.gvm-testimonial-card {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 320px;
  margin: 0;
  padding: 30px 28px 26px;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 10%, rgba(5, 97, 157, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 250, 255, 0.96) 100%);
  box-shadow: 0 14px 34px rgba(19, 42, 77, 0.02);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gvm-testimonial-card::before {
  content: "";
  position: absolute;
  top: -36px;
  left: -24px;
  z-index: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #05619d12 0%, #1976c90f 42%, rgba(244, 250, 255, 0) 72%);
  pointer-events: none;
}

.gvm-testimonial-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  z-index: 0;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(25, 118, 201, 0.1);
  pointer-events: none;
  transition:
    transform 0.45s ease,
    background-color 0.45s ease,
    opacity 0.45s ease;
}

.gvm-testimonial-card:hover {
  border-color: rgba(5, 97, 157, 0.24);
  box-shadow: 0 18px 40px rgba(19, 42, 77, 0.05);
}

.gvm-testimonial-card:hover::after {
  background: rgba(5, 97, 157, 0.18);
  opacity: 1;
  animation: gvm-testimonial-glow 2s ease-in-out infinite;
}

@keyframes gvm-testimonial-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

.gvm-testimonial-card__quote {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 0;
  display: block;
  color: #05619d14;
  font-size: 100px;
  line-height: 1;
  pointer-events: none;
}

.gvm-testimonial-card__quote i {
  display: block;
}

.gvm-testimonial-card__text {
  position: relative;
  z-index: 1;
  margin: 34px 0 26px;
  padding-top: 8px;
  color: #3f4d5c;
  font-family: var(--gvm-font-body);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

.gvm-testimonial-card__text p {
  margin: 0;
}

.gvm-testimonial-card__author {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(19, 42, 77, 0.1);
}

.gvm-testimonial-card__avatar {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 3px solid var(--gvm-white);
  border-radius: 50%;
  place-items: center;
  background: var(--gvm-blue);
  box-shadow: 0 8px 18px rgba(5, 97, 157, 0.22);
  color: var(--gvm-white);
}

.gvm-testimonial-card__initials {
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 700;
}

.gvm-testimonial-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}

.gvm-testimonial-card__meta {
  min-width: 0;
}

.gvm-testimonial-card__name {
  display: block;
  margin: 0;
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.gvm-testimonial-card__rating {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  color: #e5a716;
  font-size: 12px;
  line-height: 1;
}

/* Certifications */
.gvm-certifications {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 88px) 0;
  background: #f4f7fb;
}

.gvm-certifications__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
}

.gvm-certifications__intro {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.gvm-certifications__description {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gvm-certifications__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(12px, 1.5vw, 16px);
  width: 100%;
  max-width: 1020px;
  margin-inline: auto;
}

.gvm-certification-card {
  display: flex;
  flex: 0 1 190px;
  width: 100%;
  max-width: 190px;
  min-width: 0;
  min-height: 190px;
  padding: 20px 14px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-certification-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.gvm-certification-card__media {
  display: flex;
  width: 100%;
  height: 72px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}

.gvm-certification-card__image {
  width: auto;
  max-width: min(80%, 130px);
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.gvm-certification-card:last-child .gvm-certification-card__image {
  max-width: min(85%, 150px);
  max-height: 58px;
}

.gvm-certification-card__title {
  margin: 0 0 8px;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.gvm-certification-card__description {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

/* Trusted companies logo slider */
.gvm-trusted {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(19, 42, 77, 0.1);
}

.gvm-trusted__title {
  margin: 0 0 28px;
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.gvm-trusted__slider {
  position: relative;
  overflow: hidden;
  margin: -12px 0 -18px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gvm-trusted__track {
  display: flex;
  width: max-content;
  padding: 12px 0 30px;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  contain: layout style paint;
  animation: gvm-trusted-marquee var(--gvm-trusted-duration, 28s) linear infinite;
}

@media (hover: hover) {
  .gvm-trusted__slider:hover .gvm-trusted__track {
    animation-play-state: paused;
  }
}

.gvm-trusted__list {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0 9px;
  list-style: none;
}

.gvm-trusted__item {
  display: flex;
  min-width: 160px;
  height: 84px;
  padding: 16px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(19, 42, 77, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-trusted__logo {
  width: auto;
  max-width: 128px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}

.gvm-trusted__item:hover {
  border-color: rgba(5, 97, 157, 0.32);
  box-shadow: 0 16px 30px rgba(19, 42, 77, 0.12);
  transform: translateY(-3px);
}

.gvm-trusted__item:hover .gvm-trusted__logo {
  filter: drop-shadow(0 6px 8px rgba(5, 97, 157, 0.16));
  transform: scale(1.06);
}

.gvm-trusted__name {
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes gvm-trusted-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--gvm-trusted-shift, -50%), 0, 0);
  }
}

/* Portfolio */
.gvm-portfolio {
  padding: 80px 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(5, 97, 157, 0.1), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(25, 118, 201, 0.1), transparent 36%),
    linear-gradient(180deg, #f9fcff 0%, #edf6fd 52%, #f7fbff 100%);
}

.gvm-portfolio--archive {
  padding: clamp(48px, 6vw, 72px) 0 clamp(64px, 8vw, 88px);
  background: var(--gvm-white);
}

.gvm-portfolio--archive .gvm-portfolio__grid {
  margin-top: 0;
}

.gvm-main-content--portfolio {
  padding: 0;
  background: var(--gvm-white);
}

.gvm-portfolio-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(56px, 7vw, 80px);
  background: var(--gvm-cream);
}

.gvm-portfolio-hero--single {
  padding-bottom: clamp(48px, 6vw, 64px);
}

.gvm-portfolio-hero__glow {
  display: none;
}

.gvm-portfolio-hero__grid {
  display: none;
}

.gvm-portfolio-hero > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-portfolio-breadcrumb {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.gvm-portfolio-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.gvm-portfolio-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gvm-muted);
}

.gvm-portfolio-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(92, 107, 99, 0.55);
}

.gvm-portfolio-breadcrumb__link {
  color: var(--gvm-blue);
  font-weight: 600;
}

.gvm-portfolio-breadcrumb__item[aria-current="page"] {
  color: var(--gvm-text);
  font-weight: 600;
}

.gvm-portfolio-hero__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gvm-portfolio-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-portfolio-hero__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-portfolio-hero__intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.gvm-main-content--portfolio .gvm-pagination {
  margin-top: clamp(32px, 4vw, 44px);
}

.gvm-main-content--portfolio .no-results {
  padding: 36px 24px;
  border: 1px dashed rgba(5, 97, 157, 0.25);
  border-radius: 16px;
  background: var(--gvm-white);
  text-align: center;
}

.gvm-portfolio-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: clamp(24px, 3vw, 32px);
  padding: clamp(40px, 5vw, 56px) 0 clamp(64px, 8vw, 88px);
}

.gvm-portfolio-single__layout--with-aside {
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  max-width: none;
  justify-content: stretch;
  overflow: visible;
}

.gvm-portfolio-meta {
  position: sticky;
  top: var(--gvm-sticky-top);
  align-self: start;
  padding: 20px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(19, 42, 77, 0.08);
}

.gvm-portfolio-meta__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.gvm-portfolio-meta__item {
  padding: 12px 0;
  border-top: 1px solid rgba(19, 42, 77, 0.08);
}

.gvm-portfolio-meta__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.gvm-portfolio-meta__item dt {
  margin: 0 0 4px;
  color: var(--gvm-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gvm-portfolio-meta__item dd {
  margin: 0;
  color: var(--gvm-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.gvm-portfolio-single__media {
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 20px;
  background: #edf6fc;
  box-shadow: 0 20px 48px rgba(19, 42, 77, 0.08);
}

.gvm-portfolio-single__image {
  width: 100%;
  height: auto;
  display: block;
}

.gvm-portfolio-document {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 56px rgba(19, 42, 77, 0.08);
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.8;
}

.gvm-portfolio-document h2,
.gvm-portfolio-document h3,
.gvm-portfolio-document h4 {
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
}

.gvm-portfolio-document h2 {
  margin: 1.8em 0 0.7em;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.25;
}

.gvm-portfolio-document h2:first-child {
  margin-top: 0;
}

.gvm-portfolio-document p,
.gvm-portfolio-document ul,
.gvm-portfolio-document ol {
  margin: 0 0 1.1em;
}

.gvm-portfolio-document a {
  color: var(--gvm-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gvm-portfolio-single__footer {
  margin-top: clamp(28px, 4vw, 36px);
  padding-top: clamp(24px, 3vw, 28px);
  border-top: 1px solid rgba(19, 42, 77, 0.1);
  text-align: center;
}

.gvm-portfolio-single__note {
  margin: 0 0 20px;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.65;
}

.gvm-portfolio-single__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gvm-portfolio-single__actions .gvm-btn--secondary {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.08);
  color: var(--gvm-blue);
}

.gvm-portfolio__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  text-align: left;
}

.gvm-portfolio__intro {
  max-width: 720px;
  flex: 1;
}

.gvm-portfolio__action {
  flex-shrink: 0;
}

.gvm-portfolio__button {
  white-space: nowrap;
}

.gvm-portfolio__description {
  margin: 14px 0 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.gvm-portfolio-card {
  min-width: 0;
}

.gvm-portfolio-card__link {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 18px;
  background: var(--gvm-white);
  box-shadow: 0 12px 28px rgba(19, 42, 77, 0.07);
  color: inherit;
  transition:
    border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gvm-portfolio-card__link:hover,
.gvm-portfolio-card__link:focus-visible {
  border-color: rgba(5, 97, 157, 0.32);
  box-shadow:
    0 8px 16px rgba(5, 97, 157, 0.08),
    0 24px 48px rgba(19, 42, 77, 0.12);
  color: inherit;
  outline: none;
  transform: translateY(-6px);
}

.gvm-portfolio-card__media {
  position: relative;
  overflow: hidden;
  background: #edf6fc;
}

.gvm-portfolio-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at calc(100% - 18px) 18px, rgba(5, 97, 157, 0.88) 0%, rgba(5, 97, 157, 0.35) 24%, transparent 52%),
    linear-gradient(180deg, rgba(19, 42, 77, 0.12) 0%, rgba(5, 97, 157, 0.42) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gvm-portfolio-card__media::after {
  content: none;
}

.gvm-portfolio-card__link:hover .gvm-portfolio-card__media::before,
.gvm-portfolio-card__link:focus-visible .gvm-portfolio-card__media::before {
  opacity: 1;
}

.gvm-portfolio-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gvm-portfolio-card__link:hover .gvm-portfolio-card__image,
.gvm-portfolio-card__link:focus-visible .gvm-portfolio-card__image {
  transform: scale(1.04);
}

.gvm-portfolio-card__placeholder {
  display: grid;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(25, 118, 201, 0.24), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(19, 42, 77, 0.12), transparent 36%),
    linear-gradient(135deg, #f7fbff, #dceefe);
  color: var(--gvm-blue);
  font-size: 40px;
}

.gvm-portfolio-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
  transition: background-color 0.35s ease;
}

.gvm-portfolio-card__link:hover .gvm-portfolio-card__body,
.gvm-portfolio-card__link:focus-visible .gvm-portfolio-card__body {
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.gvm-portfolio-card__industry {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(5, 97, 157, 0.1);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
}

.gvm-portfolio-card__link:hover .gvm-portfolio-card__industry,
.gvm-portfolio-card__link:focus-visible .gvm-portfolio-card__industry {
  background: rgba(5, 97, 157, 0.16);
}

.gvm-portfolio-card__title {
  margin: 0;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.gvm-portfolio-card__link:hover .gvm-portfolio-card__title,
.gvm-portfolio-card__link:focus-visible .gvm-portfolio-card__title {
  color: var(--gvm-blue);
}

.gvm-portfolio-card__excerpt {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 14px;
  line-height: 1.65;
}

.gvm-portfolio-card__cta {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gvm-white);
  opacity: 0;
  visibility: hidden;
  transform: translate(6px, -6px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.gvm-portfolio-card__cta .gvm-portfolio-card__arrow {
  display: block;
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 2px 6px rgba(19, 42, 77, 0.35));
  transform: rotate(310deg);
  transition: transform 0.3s ease;
}

.gvm-portfolio-card__link:hover .gvm-portfolio-card__cta,
.gvm-portfolio-card__link:focus-visible .gvm-portfolio-card__cta {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.gvm-portfolio-card__link:hover .gvm-portfolio-card__cta .gvm-portfolio-card__arrow,
.gvm-portfolio-card__link:focus-visible .gvm-portfolio-card__cta .gvm-portfolio-card__arrow {
  transform: rotate(310deg) translate(2px, -2px);
}

@media (hover: none) {
  .gvm-portfolio-card__media::before {
    opacity: 0.85;
  }

  .gvm-portfolio-card__cta {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* Latest posts */
.gvm-latest-posts {
  padding: 80px 0;
  background: var(--gvm-cream);
}

.gvm-latest-posts__header {
  text-align: center;
}

.gvm-latest-posts__intro {
  max-width: 620px;
  margin-inline: auto;
}

.gvm-latest-posts__description {
  margin: 14px 0 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.7;
}

.gvm-latest-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gvm-article-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 15px;
  overflow: hidden;
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-article-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.gvm-article-card__media {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #eef2f6;
  border: 1px solid #dae7ef;
}

.gvm-article-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
  transition: transform 0.35s ease;
}

.gvm-article-card:hover .gvm-article-card__image {
  transform: scale(1.02);
}

.gvm-article-card__placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff 0%, #e8f0f8 100%);
  color: var(--gvm-blue);
  font-size: 42px;
}

.gvm-article-card__placeholder::before {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(12deg);
}

.gvm-article-card__placeholder .far {
  position: relative;
  z-index: 1;
}

.gvm-article-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 0 0;
}

.gvm-article-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.gvm-article-card__tag {
  display: inline-flex;
  flex-shrink: 0;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #3a7bd5;
  font-family: var(--gvm-font-title);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gvm-article-card__date {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 13px;
  line-height: 1.4;
}

.gvm-article-card__date::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 12px;
  border-radius: 50%;
  background: #c5d0dc;
}

.gvm-article-card__title {
  margin: 0 0 12px;
  font-family: var(--gvm-font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.gvm-article-card__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #132a4d;
}

.gvm-article-card__title a:hover,
.gvm-article-card__title a:focus-visible {
  color: var(--gvm-blue);
}

.gvm-article-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #666;
  font-family: var(--gvm-font-body);
  font-size: 14px;
  line-height: 1.5;
}

.gvm-latest-posts__empty {
  margin: 0;
  padding: 36px 24px;
  border: 1px dashed rgba(5, 97, 157, 0.25);
  border-radius: 12px;
  background: #f7fbff;
  color: var(--gvm-muted);
  text-align: center;
}

/* Blog archive */
.gvm-main-content--blog {
  padding: 0;
  background: var(--gvm-white);
}

.gvm-blog-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(56px, 7vw, 80px);
  background: var(--gvm-gradient-hero);
}

.gvm-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-blog-hero__glow {
  display: none;
}

.gvm-blog-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.gvm-blog-hero > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-blog-hero__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gvm-blog-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-blog-hero__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-blog-hero__intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.gvm-blog-body {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-cream);
}

.gvm-main-content--blog .gvm-article-card,
.gvm-main-content--blog-single .gvm-blog-related .gvm-article-card {
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gvm-blog-filters {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.gvm-blog-filters__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-blog-filters__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(19, 42, 77, 0.05);
  color: var(--gvm-muted);
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.gvm-blog-filters__link:hover,
.gvm-blog-filters__link:focus-visible {
  border-color: rgba(5, 97, 157, 0.24);
  color: var(--gvm-blue);
}

.gvm-blog-filters__link.is-active {
  border-color: rgba(5, 97, 157, 0.28);
  background: var(--gvm-blue);
  box-shadow: 0 12px 28px rgba(25, 118, 201, 0.22);
  color: var(--gvm-white);
}

.gvm-blog-search {
  max-width: 520px;
  margin: 0 auto clamp(24px, 3vw, 32px);
}

.gvm-blog-search .gvm-search-form {
  max-width: none;
  margin-bottom: 0;
}

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

.gvm-main-content--blog .gvm-pagination {
  margin-top: clamp(32px, 4vw, 44px);
}

.gvm-main-content--blog .gvm-pagination .page-numbers {
  border-color: rgba(19, 42, 77, 0.1);
  box-shadow: 0 8px 20px rgba(19, 42, 77, 0.05);
}

.gvm-main-content--blog .no-results {
  padding: 36px 24px;
  border: 1px dashed rgba(5, 97, 157, 0.25);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

/* Blog single */
.gvm-main-content--blog-single {
  padding: 0;
  background: var(--gvm-white);
  max-width: 100%;
}

.gvm-blog-hero--single {
  padding: clamp(56px, 7vw, 80px) 0 clamp(32px, 4vw, 44px);
}


.gvm-blog-single {
  overflow-x: clip;
  max-width: 100%;
}

.gvm-blog-breadcrumb {
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.gvm-blog-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.gvm-blog-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gvm-muted);
}

.gvm-blog-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(92, 107, 99, 0.55);
}

.gvm-blog-breadcrumb__link {
  color: var(--gvm-blue);
  font-weight: 600;
}

.gvm-blog-breadcrumb__item[aria-current="page"] {
  color: var(--gvm-text);
  font-weight: 600;
}

.gvm-blog-single__header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.gvm-blog-single__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gvm-blog-single__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.gvm-blog-single__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gvm-text);
  font-size: 14px;
  line-height: 1.4;
}

.gvm-blog-single__meta-item a {
  color: var(--gvm-text);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gvm-blog-single__meta-item a:hover,
.gvm-blog-single__meta-item a:focus-visible {
  color: var(--gvm-blue);
}

.gvm-blog-single__meta-item i {
  color: var(--gvm-blue);
  font-size: 14px;
}

.gvm-blog-single__preferred-source {
  margin-top: 20px;
}

.gvm-blog-single__preferred-source [google-add-preferred-source-btn] {
  display: inline-block;
}

.gvm-blog-single__media {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-blog-single__image {
  display: block;
  width: 100%;
  height: auto;
}

.gvm-blog-single__body {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-white);
  max-width: 100%;
  min-width: 0;
}

.gvm-blog-single__layout {
  max-width: 760px;
  margin: 0 auto;
  min-width: 0;
}

.gvm-blog-single__layout--with-toc {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  max-width: 1120px;
  align-items: stretch;
  min-width: 0;
}

.gvm-blog-single__sidebar {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.gvm-blog-single__toc-spacer {
  display: none;
  width: 100%;
}

.gvm-blog-single__toc {
  position: sticky;
  top: var(--gvm-sticky-top);
  z-index: 30;
  padding: 20px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.gvm-blog-single__toc.is-fixed {
  position: fixed;
}

.gvm-blog-single__toc.is-pinned-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  max-height: none;
}

.gvm-blog-single__toc-label {
  margin: 0 0 14px;
  color: #132a4d;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gvm-blog-single__toc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: gvm-blog-toc;
}

.gvm-blog-single__toc-list > li {
  counter-increment: gvm-blog-toc;
}

.gvm-blog-single__toc-link {
  display: block;
  position: relative;
  padding-left: 22px;
  color: var(--gvm-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gvm-blog-single__toc-link::before {
  content: counter(gvm-blog-toc) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gvm-blue);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.gvm-blog-single__toc-link:hover,
.gvm-blog-single__toc-link:focus-visible,
.gvm-blog-single__toc-link.is-active {
  color: var(--gvm-blue);
}

.gvm-blog-single__main {
  min-width: 0;
  max-width: 100%;
}

.gvm-blog-single__content.entry-content {
  color: var(--gvm-dark-mid);
  font-size: 17px;
  line-height: 1.8;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.gvm-blog-single__content.entry-content .wp-block-table,
.gvm-blog-single__content.entry-content figure.wp-block-table {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  contain: inline-size;
}

.gvm-blog-single__content.entry-content .wp-block-table table,
.gvm-blog-single__content.entry-content figure.wp-block-table table {
  display: table !important;
  width: 100% !important;
  max-width: 100% !important;
  table-layout: fixed !important;
}

.gvm-blog-single__media--content {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.gvm-blog-single__content.entry-content h2 {
  scroll-margin-top: var(--gvm-sticky-top);
  margin-top: 1.8em;
  color: #132a4d;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
}

.gvm-blog-single__content.entry-content h3 {
  margin-top: 1.5em;
  color: #132a4d;
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
}

.gvm-blog-single__content.entry-content :is(img, iframe, video) {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #c9d5e1;
}

.gvm-blog-single__content.entry-content pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
  border-radius: 12px;
  background: #f7fbff;
}

.gvm-blog-single__content.entry-content blockquote {
  margin: 1.5em 0;
  padding: 18px 22px;
  border-left: 4px solid var(--gvm-blue);
  border-radius: 0 12px 12px 0;
  background: #f7fbff;
  color: #28466f;
  font-style: italic;
}

.gvm-blog-single__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--gvm-border);
}

.gvm-blog-single__pages-label {
  color: var(--gvm-muted);
  font-weight: 600;
}

.gvm-blog-single__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--gvm-border);
}

.gvm-blog-single__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.gvm-blog-single__tags-label {
  color: var(--gvm-muted);
  font-size: 14px;
  font-weight: 600;
}

.gvm-blog-single__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-blog-single__tag-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: #f7fbff;
  color: var(--gvm-blue);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.gvm-blog-single__tag-link:hover,
.gvm-blog-single__tag-link:focus-visible {
  background: #eef6fc;
}

.gvm-blog-single__back {
  align-self: flex-start;
  gap: 8px;
}

.gvm-blog-post-nav {
  padding: clamp(24px, 3vw, 32px) 0 0;
}

.gvm-blog-post-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gvm-blog-post-nav__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 16px;
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.gvm-blog-post-nav__link:hover,
.gvm-blog-post-nav__link:focus-visible {
  border-color: rgba(5, 97, 157, 0.24);
  box-shadow: 0 14px 28px rgba(19, 42, 77, 0.1);
  transform: translateY(-1px);
}

.gvm-blog-post-nav__link--next {
  text-align: right;
}

.gvm-blog-post-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gvm-blue);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gvm-blog-post-nav__link--next .gvm-blog-post-nav__label {
  justify-content: flex-end;
}

.gvm-blog-post-nav__title {
  color: #132a4d;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.gvm-blog-post-nav__placeholder {
  display: block;
}

.gvm-blog-related {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-cream);
}

.gvm-blog-related__head {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.gvm-blog-related__eyebrow {
  margin: 0 0 10px;
  color: var(--gvm-blue);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-blog-related__title {
  margin: 0;
  color: #132a4d;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-blog-single__comments {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-white);
}

.gvm-blog-single__comments .comments-area {
  max-width: 760px;
  margin: 0 auto;
}

/* Case studies */
.gvm-main-content--case-study {
  padding: 0;
  background: var(--gvm-white);
}

.gvm-main-content--case-study-single,
.gvm-main-content--portfolio-single {
  padding: 0;
  background: var(--gvm-white);
  overflow-x: clip;
  max-width: 100%;
}

.gvm-case-study-single {
  overflow-x: clip;
  max-width: 100%;
}

.gvm-case-study-single__body {
  display: flex;
  flex-direction: column;
  background: var(--gvm-bg);
  min-width: 0;
  max-width: 100%;
}

.gvm-case-study-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(56px, 7vw, 80px);
  background: var(--gvm-cream);
}

.gvm-case-study-hero--single {
  padding-bottom: clamp(48px, 6vw, 64px);
}

.gvm-case-study-hero__glow {
  display: none;
}

.gvm-case-study-hero__grid {
  display: none;
}

.gvm-case-study-hero > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-case-study-breadcrumb {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.gvm-case-study-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.gvm-case-study-hero--single .gvm-case-study-breadcrumb__list {
  justify-content: flex-start;
}

.gvm-case-study-hero--single .gvm-case-study-hero__header {
  max-width: none;
  margin: 0;
  text-align: left;
}

.gvm-case-study-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gvm-muted);
}

.gvm-case-study-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(92, 107, 99, 0.55);
}

.gvm-case-study-breadcrumb__link {
  color: var(--gvm-blue);
  font-weight: 600;
}

.gvm-case-study-breadcrumb__item[aria-current="page"] {
  color: var(--gvm-text);
  font-weight: 600;
}

.gvm-case-study-hero__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gvm-case-study-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-case-study-hero__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-case-study-hero__intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.gvm-case-study-body {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-white);
}

.gvm-main-content--case-study:not(.gvm-main-content--case-study-single) .gvm-case-study-card__link {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gvm-case-study-card {
  min-width: 0;
}

.gvm-case-study-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(19, 42, 77, 0.14);
  border-radius: 16px;
  background: var(--gvm-white);
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.06);
  color: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-case-study-card__link:hover,
.gvm-case-study-card__link:focus-visible {
  border-color: rgba(5, 97, 157, 0.34);
  box-shadow: 0 18px 38px rgba(19, 42, 77, 0.11);
  transform: translateY(-3px);
}

.gvm-case-study-card__media {
  position: relative;
  overflow: hidden;
  background: #edf6fc;
}

.gvm-case-study-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 28, 46, 0) 35%, rgba(11, 28, 46, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gvm-case-study-card__link:hover .gvm-case-study-card__media::before,
.gvm-case-study-card__link:focus-visible .gvm-case-study-card__media::before {
  opacity: 1;
}

.gvm-case-study-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gvm-case-study-card__link:hover .gvm-case-study-card__image,
.gvm-case-study-card__link:focus-visible .gvm-case-study-card__image {
  transform: scale(1.03);
}

.gvm-case-study-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(25, 118, 201, 0.26), transparent 34%),
    linear-gradient(135deg, #f7fbff, #dceefe);
  color: var(--gvm-blue);
  font-size: 42px;
}

.gvm-case-study-card__cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.12);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.gvm-case-study-card__arrow {
  display: block;
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(98%) saturate(1289%) hue-rotate(176deg) brightness(92%) contrast(92%);
}

.gvm-case-study-card__link:hover .gvm-case-study-card__cta,
.gvm-case-study-card__link:focus-visible .gvm-case-study-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.gvm-case-study-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.gvm-case-study-card__label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(5, 97, 157, 0.1);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.gvm-case-study-card__title {
  margin: 0 0 10px;
  font-family: var(--gvm-font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.gvm-case-study-card__excerpt {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 14px;
  line-height: 1.65;
}

.gvm-main-content--case-study .gvm-pagination {
  margin-top: clamp(32px, 4vw, 44px);
}

.gvm-case-study-hero--single {
  padding-bottom: clamp(48px, 6vw, 64px);
}

.gvm-case-study-hero--intro {
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
}

.gvm-case-study-hero--intro > .gvm-container {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.gvm-case-study-single__intro {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.gvm-case-study-single__intro .gvm-case-study-breadcrumb {
  margin-bottom: 0;
}

.gvm-case-study-single__intro .gvm-case-study-hero__title {
  margin-bottom: 0;
}

.gvm-main-content--case-study-single .gvm-case-study-hero--single,
.gvm-main-content--portfolio-single .gvm-case-study-hero--single {
  background: var(--gvm-cream);
}

.gvm-main-content--portfolio-single .gvm-case-study-hero__glow,
.gvm-main-content--case-study-single .gvm-case-study-hero__glow,
.gvm-main-content--portfolio-single .gvm-case-study-hero__grid,
.gvm-main-content--case-study-single .gvm-case-study-hero__grid {
  display: none;
}

.gvm-case-study-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: clamp(32px, 6vw, 70px) 0;
  overflow-x: hidden;
}

.gvm-case-study-meta-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px dashed rgba(5, 97, 157, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-sizing: border-box;
}

.gvm-case-study-section--introduction,
.gvm-case-study-section--findings,
.gvm-case-study-section--results,
.gvm-case-study-section--analytics {
  background: var(--gvm-gradient-section);
}

.gvm-case-study-section--challenge {
  background: var(--gvm-gradient-section-soft);
}

.gvm-case-study-section--objective-challenges {
  background: var(--gvm-gradient-section-soft);
}

.gvm-portfolio-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  width: 100%;
  min-width: 0;
}

.gvm-portfolio-dual-grid__column {
  min-width: 0;
}

.gvm-portfolio-dual-grid__column .gvm-case-study-section__title {
  margin-bottom: 14px;
}

.gvm-case-study-section--search-console {
  background: var(--gvm-gradient-section-soft-x);
}

.gvm-case-study-section--keyword-ranking {
  background: var(--gvm-gradient-section-accent);
}

.gvm-case-study-section--conclusion {
  background: var(--gvm-gradient-section-faq);
}

.gvm-case-study-section--band,
.gvm-case-study-section--approach {
  padding: clamp(32px, 4vw, 48px) 0;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  background: var(--gvm-gradient-section);
}

.gvm-main-content--portfolio-single .gvm-case-study-single__body,
.gvm-main-content--case-study-single .gvm-case-study-single__body {
  background: var(--gvm-white);
}

.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--introduction,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--findings,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--results,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--analytics,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--challenge,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--objective-challenges,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--search-console,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--keyword-ranking,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--conclusion,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--band,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--approach,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--introduction,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--findings,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--results,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--analytics,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--challenge,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--objective-challenges,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--search-console,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--keyword-ranking,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--conclusion,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--band,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section.gvm-case-study-section--approach {
  background: var(--gvm-white);
}

.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even),
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--introduction,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--findings,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--results,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--analytics,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--challenge,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--objective-challenges,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--search-console,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--keyword-ranking,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--conclusion,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--band,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--approach,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even),
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--introduction,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--findings,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--results,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--analytics,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--challenge,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--objective-challenges,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--search-console,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--keyword-ranking,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--conclusion,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--band,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even).gvm-case-study-section--approach {
  background: var(--gvm-cream);
}

.gvm-main-content--portfolio-single .gvm-case-study-meta-bar,
.gvm-main-content--case-study-single .gvm-case-study-meta-bar {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--portfolio-single .gvm-case-study-single__intro .gvm-case-study-single__hero-media,
.gvm-main-content--case-study-single .gvm-case-study-single__intro .gvm-case-study-single__hero-media {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even) .gvm-case-study-approach-card,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even) .gvm-case-study-results__item,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even) .gvm-case-study-step,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even) .gvm-case-study-approach-card,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even) .gvm-case-study-results__item,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(even) .gvm-case-study-step {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(odd) .gvm-case-study-approach-card,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(odd) .gvm-case-study-results__item,
.gvm-main-content--portfolio-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(odd) .gvm-case-study-step,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(odd) .gvm-case-study-approach-card,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(odd) .gvm-case-study-results__item,
.gvm-main-content--case-study-single .gvm-case-study-single__body > .gvm-case-study-section:nth-child(odd) .gvm-case-study-step {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-case-study-single__intro .gvm-case-study-single__hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 16px;
  background: #edf6fd;
}

.gvm-portfolio-single__view-project {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 44px;
  padding: 10px 38px 10px 18px;
  box-shadow: 0 12px 28px rgba(19, 42, 77, 0.18);
}

.gvm-portfolio-single__view-project-text {
  display: inline-block;
}

.gvm-portfolio-single__view-project-arrow {
  position: absolute;
  top: 12px;
  right: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gvm-portfolio-single__view-project-arrow-icon {
  display: block;
  width: 17px;
  height: 17px;
  transform: rotate(310deg);
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease;
}

.gvm-case-study-single__hero-media--cta-only {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 72px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(5, 97, 157, 0.12), transparent 42%),
    #edf6fd;
}

.gvm-case-study-single__hero-media--cta-only .gvm-portfolio-single__view-project {
  position: static;
}

.gvm-portfolio-single__client-overview {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  width: 100%;
  min-width: 0;
}

.gvm-portfolio-single__client-overview-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 16px;
  background: #edf6fd;
}

.gvm-portfolio-single__client-overview-image {
  display: block;
  width: 100%;
  height: auto;
}

.gvm-case-study-single__hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.gvm-case-study-hero--intro .gvm-case-study-meta-bar {
  width: 100%;
  min-width: 0;
}

.gvm-case-study-meta-bar__item {
  min-width: 0;
  max-width: 100%;
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 1px dashed rgba(5, 97, 157, 0.35);
}

.gvm-case-study-meta-bar__item:last-child {
  padding-right: 0;
  border-right: none;
}

.gvm-case-study-meta-bar__label {
  margin: 0 0 8px;
  color: var(--gvm-dark-mid);
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gvm-case-study-meta-bar__value {
  display: block;
  max-width: 100%;
  margin: 0;
  color: var(--gvm-blue);
  font-size: clamp(13px, 1.6vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gvm-case-study-meta-bar__pill,
.gvm-case-study-meta-bar__link {
  display: inline-block;
  max-width: 100%;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(5, 97, 157, 0.12);
  color: var(--gvm-blue);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gvm-case-study-meta-bar__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.gvm-case-study-meta-bar__pills .gvm-case-study-meta-bar__pill {
  width: auto;
  max-width: 100%;
}

.gvm-case-study-meta-bar__value:not(:has(.gvm-case-study-meta-bar__pill)):not(:has(.gvm-case-study-meta-bar__link)):not(:has(.gvm-case-study-meta-bar__pills)) {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(5, 97, 157, 0.12);
}

.gvm-case-study-meta-bar__link:hover,
.gvm-case-study-meta-bar__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gvm-case-study-document {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 56px rgba(19, 42, 77, 0.08);
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.8;
}

.gvm-case-study-document h2,
.gvm-case-study-document h3,
.gvm-case-study-document h4 {
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
}

.gvm-case-study-document h2 {
  margin: 1.8em 0 0.7em;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.25;
}

.gvm-case-study-document h2:first-child {
  margin-top: 0;
}

.gvm-case-study-document h3 {
  margin: 1.5em 0 0.6em;
  font-size: 22px;
}

.gvm-case-study-document p,
.gvm-case-study-document ul,
.gvm-case-study-document ol {
  margin: 0 0 1.1em;
}

.gvm-case-study-document a {
  color: var(--gvm-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gvm-case-study-section__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-case-study-section__title--band {
  margin-bottom: 14px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(24px, 2.8vw, 30px);
  letter-spacing: -0.03em;
  text-transform: none;
}

.gvm-case-study-section__intro {
  margin-bottom: 18px;
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.75;
}

.gvm-case-study-section__intro p {
  margin: 0;
}

.gvm-case-study-section__content,
.gvm-case-study-split__content,
.gvm-case-study-results__content {
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.8;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gvm-case-study-section__content h2,
.gvm-case-study-section__content h3,
.gvm-case-study-section__content h4,
.gvm-case-study-split__content h2,
.gvm-case-study-split__content h3,
.gvm-case-study-split__content h4,
.gvm-case-study-results__content h2,
.gvm-case-study-results__content h3,
.gvm-case-study-results__content h4 {
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
}

.gvm-case-study-section__content h2,
.gvm-case-study-results__content h2 {
  margin: 1.6em 0 0.7em;
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.3;
}

.gvm-case-study-section__content h2:first-child,
.gvm-case-study-results__content h2:first-child {
  margin-top: 0;
}

.gvm-case-study-section__content h3,
.gvm-case-study-split__content h3,
.gvm-case-study-results__content h3 {
  margin: 0 0 0.85em;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
  font-weight: 700;
}

.gvm-case-study-split__content h3:first-child {
  margin-top: 0;
}

.gvm-case-study-section__content p,
.gvm-case-study-section__content ul,
.gvm-case-study-section__content ol,
.gvm-case-study-split__content p,
.gvm-case-study-split__content ul,
.gvm-case-study-split__content ol,
.gvm-case-study-results__content p,
.gvm-case-study-results__content ul,
.gvm-case-study-results__content ol {
  margin: 0 0 1.1em;
}

.gvm-case-study-section__content a,
.gvm-case-study-split__content a,
.gvm-case-study-results__content a {
  color: var(--gvm-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gvm-case-study-section__content img,
.gvm-case-study-split__content img,
.gvm-case-study-results__content img,
.gvm-case-study-document img,
.gvm-case-study-split__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.gvm-case-study-section__content iframe,
.gvm-case-study-section__content embed,
.gvm-case-study-section__content video,
.gvm-case-study-split__content iframe,
.gvm-case-study-split__content embed,
.gvm-case-study-split__content video,
.gvm-case-study-results__content iframe,
.gvm-case-study-results__content embed,
.gvm-case-study-results__content video {
  display: block;
  max-width: 100%;
  height: auto;
}

.gvm-case-study-split__figure {
  margin: 0;
}

.gvm-case-study-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  min-width: 0;
}

.gvm-case-study-split__content,
.gvm-case-study-split__visual {
  min-width: 0;
  max-width: 100%;
}

.gvm-case-study-section--split-visual-text .gvm-case-study-split__content {
  order: 2;
}

.gvm-case-study-section--split-visual-text .gvm-case-study-split__visual {
  order: 1;
}

.gvm-case-study-section--challenge .gvm-case-study-split {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.3fr);
}

.gvm-case-study-section--findings .gvm-case-study-split {
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
}

.gvm-case-study-section--search-console .gvm-case-study-split,
.gvm-case-study-section--analytics .gvm-case-study-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.gvm-case-study-split__visual-panel {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(5, 97, 157, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(25, 118, 201, 0.18), transparent 38%),
    linear-gradient(180deg, #f7fbff 0%, #edf6fd 100%);
}

.gvm-case-study-split__visual-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(19, 42, 77, 0.1);
}

.gvm-case-study-split__image {
  display: block;
  width: 100%;
  height: auto;
}

.gvm-case-study-section__intro--band {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 32px);
  color: var(--gvm-muted);
}

.gvm-case-study-section__intro--band p {
  margin: 0;
}

.gvm-case-study-approach {
  min-width: 0;
}

.gvm-case-study-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.gvm-case-study-approach-card {
  padding: clamp(18px, 2.5vw, 22px);
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(19, 42, 77, 0.05);
}

.gvm-case-study-approach-card__title {
  margin: 0 0 8px;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.gvm-case-study-approach-card__text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 14px;
  line-height: 1.65;
}

.gvm-case-study-section__content + .gvm-case-study-steps {
  margin-top: 4px;
}

.gvm-case-study-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: gvm-case-step;
}

.gvm-case-study-step {
  position: relative;
  padding: 16px 18px 16px 62px;
  border: 1px solid rgba(5, 97, 157, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf6fd 100%);
  counter-increment: gvm-case-step;
}

.gvm-case-study-step::before {
  content: counter(gvm-case-step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--gvm-blue);
  color: #ffffff;
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.gvm-case-study-step__title {
  margin: 0 0 8px;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.gvm-case-study-step__text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gvm-case-study-results__figure {
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(19, 42, 77, 0.08);
}

.gvm-case-study-results__image {
  width: 100%;
  height: auto;
  display: block;
}

.gvm-case-study-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gvm-case-study-results__item {
  padding: 18px 20px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.gvm-case-study-results__title {
  margin: 0 0 10px;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.gvm-case-study-section__stack {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  width: 100%;
  min-width: 0;
}

.gvm-case-study-section__stack .gvm-case-study-section__block {
  min-width: 0;
}

.gvm-case-study-section__stack .gvm-case-study-section__title {
  margin-bottom: 14px;
}

.gvm-case-study-section__stack .gvm-case-study-section__block + .gvm-case-study-section__block {
  padding-top: clamp(8px, 1.5vw, 12px);
}

.gvm-main-content--case-study .no-results {
  padding: 36px 24px;
  border: 1px dashed rgba(5, 97, 157, 0.25);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

/* FAQ */
.gvm-faq {
  padding: 80px 0;
  overflow: visible;
  background:
    radial-gradient(circle at 8% 12%, rgba(25, 118, 201, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #edf7fd 52%, #f9fcff 100%);
}

.gvm-faq__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(44px, 7vw, 96px);
  overflow: visible;
}

.gvm-faq__intro {
  position: sticky;
  top: var(--gvm-sticky-top);
  align-self: start;
  max-width: 390px;
}

.gvm-faq__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gvm-faq__description {
  margin: 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.7;
}

.gvm-faq__button {
  margin-top: 26px;
}

.gvm-faq__list {
  display: grid;
  gap: 12px;
}

.gvm-faq__item {
  overflow: hidden;
  border: 1px solid rgba(19, 42, 77, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(19, 42, 77, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gvm-faq__item[open] {
  border-color: rgba(5, 97, 157, 0.32);
  box-shadow: 0 12px 28px rgba(19, 42, 77, 0.09);
}

.gvm-faq__question {
  display: flex;
  min-height: 66px;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--gvm-text);
  cursor: pointer;
  font-family: var(--gvm-font-title);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.gvm-faq__question::-webkit-details-marker {
  display: none;
}

.gvm-faq__question:focus-visible {
  outline: none;
  box-shadow: inset var(--gvm-focus);
}

.gvm-faq__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(5, 97, 157, 0.1);
  color: var(--gvm-blue);
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gvm-faq__icon::before,
.gvm-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.gvm-faq__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gvm-faq__item[open] .gvm-faq__icon {
  background: var(--gvm-blue);
  color: var(--gvm-white);
}

.gvm-faq__item[open] .gvm-faq__icon::before {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.gvm-faq__answer {
  padding: 0 68px 20px 20px;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 14px;
  line-height: 1.65;
}

.gvm-faq__answer p {
  margin: 0;
}

.gvm-faq__answer p + p {
  margin-top: 12px;
}

/* CTA */
.gvm-cta-section {
  padding: 64px 0;
}

.gvm-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 300px;
  padding: clamp(40px, 5vw, 64px);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(25, 118, 201, 0.24) 0%, transparent 40%),
    radial-gradient(circle at 92% 90%, rgba(19, 42, 77, 0.14) 0%, transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #edf6fc 52%, #dcecf8 100%);
  box-shadow: 0 24px 60px rgba(19, 42, 77, 0.14);
}

.gvm-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: min(40%, 355px);
  height: 100%;
  background: url("../images/cta-cloud.webp") left top / contain no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.gvm-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: min(40%, 355px);
  height: 100%;
  background: url("../images/cta-cloud.webp") right bottom / contain no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.gvm-cta__copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.gvm-cta__title {
  color: #132a4d;
  font-size: var(--gvm-h2-size);
  font-weight: 600;
  line-height: var(--gvm-h2-line-height);
  letter-spacing: -0.035em;
  margin: 0 0 16px;
}

.gvm-cta__text {
  max-width: 780px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: 17px;
  line-height: 1.7;
}

.gvm-cta__button,
.gvm-header__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  margin-top: 0;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--gvm-blue-dark);
  color: var(--gvm-white);
  box-shadow: 0 12px 28px rgba(25, 118, 201, 0.24);
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.gvm-cta__button:hover,
.gvm-cta__button:focus-visible,
.gvm-header__secondary:hover,
.gvm-header__secondary:focus-visible {
  background: var(--gvm-blue);
  color: var(--gvm-white);
  box-shadow: 0 16px 34px rgba(19, 42, 77, 0.28);
}

.gvm-cta__button {
  background: var(--gvm-blue-dark);
  color: var(--gvm-white);
  box-shadow: 0 12px 28px rgba(25, 118, 201, 0.24);
}

.gvm-cta__button:hover,
.gvm-cta__button:focus-visible {
  background: var(--gvm-blue);
  color: var(--gvm-white);
  box-shadow: 0 16px 34px rgba(19, 42, 77, 0.28);
}

.gvm-header__secondary {
  white-space: nowrap;
}

.gvm-cta__action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* Homepage — cream / white sections */
body.home #primary {
  background: var(--gvm-white);
}

body.home .gvm-hero {
  background: var(--gvm-gradient-hero);
}

body.home .gvm-hero::before {
  background: var(--gvm-gradient-hero-overlay);
}

body.home .gvm-hero__glow {
  display: none;
}

body.home .gvm-about-band,
body.home #primary > .gvm-process-section,
body.home #primary > .gvm-testimonials,
body.home #primary > .gvm-portfolio,
body.home #primary > .gvm-faq {
  background: var(--gvm-white);
}

body.home #primary > .gvm-services,
body.home #primary > .gvm-technologies,
body.home #primary > .gvm-certifications,
body.home #primary > .gvm-latest-posts,
body.home #primary > .gvm-cta-section {
  background: var(--gvm-cream);
}

body.home .gvm-about-showcase__point,
body.home .gvm-counter,
body.home .gvm-process-step,
body.home .gvm-process-step.is-active,
body.home .gvm-testimonial-card,
body.home .gvm-testimonials__highlight,
body.home .gvm-portfolio-card__link,
body.home .gvm-faq__item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

body.home .gvm-service-card__link,
body.home .gvm-technology-card__link,
body.home .gvm-certification-card,
body.home .gvm-certification-card:nth-child(1),
body.home .gvm-certification-card:nth-child(2),
body.home .gvm-certification-card:nth-child(3),
body.home .gvm-certification-card:nth-child(4),
body.home .gvm-certification-card:nth-child(5),
body.home .gvm-certification-card:nth-child(6),
body.home .gvm-certification-card:nth-child(7),
body.home .gvm-certification-card:nth-child(8),
body.home .gvm-certification-card:nth-child(9),
body.home .gvm-latest-posts .gvm-article-card,
body.home .gvm-cta {
  border: none;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.home .gvm-service-card__link:hover,
body.home .gvm-service-card__link:focus-visible,
body.home .gvm-technology-card__link:hover,
body.home .gvm-technology-card__link:focus-visible,
body.home .gvm-certification-card:hover {
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

body.home .gvm-service-card__link:hover,
body.home .gvm-service-card__link:focus-visible {
  transform: none;
}

body.home .gvm-counter:hover {
  background: var(--gvm-cream);
  border-color: rgba(5, 97, 157, 0.22);
  box-shadow: 0 14px 28px rgba(5, 97, 157, 0.1);
}

body.home .gvm-testimonial-card:hover {
  background: var(--gvm-cream);
  border-color: rgba(5, 97, 157, 0.22);
  box-shadow: 0 14px 28px rgba(5, 97, 157, 0.1);
}

body.home .gvm-portfolio-card__link:hover,
body.home .gvm-portfolio-card__link:focus-visible {
  background: var(--gvm-cream);
  border-color: rgba(5, 97, 157, 0.22);
  box-shadow: 0 14px 28px rgba(5, 97, 157, 0.1);
}

body.home .gvm-faq__item[open] {
  background: var(--gvm-cream);
  border-color: rgba(5, 97, 157, 0.22);
  box-shadow: 0 14px 28px rgba(5, 97, 157, 0.1);
}

body.home .gvm-latest-posts .gvm-article-card:hover {
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* Footer */
.gvm-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 28px;
  background: linear-gradient(185deg, #ffffff 0%, #1976c90a 15%, #1976c93d 100%);
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
  font-weight: 400;
}

.gvm-footer p,
.gvm-footer a,
.gvm-footer address {
  font-family: inherit;
}

.gvm-footer > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-footer__grid {
  display: grid;
  grid-template-columns: 1.75fr repeat(4, minmax(0, 0.75fr));
  gap: 40px;
  margin-bottom: 32px;
}

.gvm-footer__col {
  border-right: 1px solid #132a4d1a;
  padding-right: 24px;
}
.gvm-footer__brand {
  border-right: 1px solid #132a4d1a;
}

.gvm-footer__grid > .gvm-footer__col:last-child {
  border-right: 0;
  padding-right: 0;
}

.gvm-footer__services {
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(5, 97, 157, 0.1);
}

.gvm-footer__services-title {
  color: var(--gvm-text);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 18px;
}

.gvm-footer .gvm-logo__img,
.gvm-footer__logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 18px;
}

.gvm-footer__about {
  font-size: 14px;
  font-weight: 400;
  color: var(--gvm-text);
  line-height: 1.6;
  max-width: 345px;
  margin: 0;
}

.gvm-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.gvm-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(19, 42, 77, 0.18);
  background: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--gvm-text);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.gvm-social a:hover {
  background: var(--gvm-blue);
  color: var(--gvm-white);
  transform: translateY(-2px);
}

.gvm-footer__col-title {
  color: var(--gvm-text);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 18px;
}

.gvm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gvm-footer__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gvm-text);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.gvm-footer__links a:hover,
.gvm-footer__links .current-menu-item > a,
.gvm-footer__links .current-menu-ancestor > a,
.gvm-footer__links .current_page_item > a {
  color: var(--gvm-blue);
  padding-left: 3px;
}

.gvm-footer__links--inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  row-gap: 10px;
}

.gvm-footer__links--inline > li {
  display: inline-flex;
  align-items: center;
}

.gvm-footer__links--inline > li:not(:last-child)::after {
  content: "|";
  margin: 0 12px;
  color: rgba(5, 97, 157, 0.35);
  font-size: 14px;
  line-height: 1;
}

.gvm-footer__links--inline a:hover,
.gvm-footer__links--inline .current-menu-item > a,
.gvm-footer__links--inline .current-menu-ancestor > a,
.gvm-footer__links--inline .current_page_item > a {
  padding-left: 0;
}

.gvm-footer__office + .gvm-footer__office {
  margin-top: 24px;
}

.gvm-footer__office-title {
  margin: 0 0 8px;
  color: var(--gvm-text);
  font-size: 15px;
  font-weight: 600;
}

.gvm-footer__office address {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gvm-muted);
}

.gvm-footer__office address a {
  color: var(--gvm-muted);
  font-weight: 400;
  transition: color 0.2s ease;
}

.gvm-footer__office address a:hover {
  color: var(--gvm-blue);
}

.gvm-footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.gvm-footer__contact-line > .fas {
  width: 14px;
  flex: 0 0 14px;
  margin-top: 4px;
  color: var(--gvm-blue);
  text-align: center;
}

.gvm-footer__phone {
  display: flex;
  width: fit-content;
  color: var(--gvm-muted);
  font-size: 14px;
  font-weight: 400;
}

.gvm-footer__phone > .fa-phone {
  margin-top: 1px;
  transform: scaleX(-1);
}

.gvm-footer__phone:hover {
  color: var(--gvm-blue);
}

.gvm-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(19, 42, 77, 0.15);
  font-size: 14px;
  font-weight: 400;
  color: var(--gvm-muted);
  gap: 16px;
  flex-wrap: wrap;
}

.gvm-footer__legal {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gvm-footer__legal li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gvm-footer__legal li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--gvm-blue);
}

.gvm-footer__legal a {
  color: var(--gvm-text);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.gvm-footer__legal a:hover,
.gvm-footer__legal .current-menu-item > a,
.gvm-footer__legal .current-menu-ancestor > a,
.gvm-footer__legal .current_page_item > a {
  color: var(--gvm-blue);
  padding-left: 3px;
}

.gvm-footer__copyright {
  margin: 0;
  font-weight: 400;
  color: var(--gvm-text);
}

.gvm-footer__copyright a {
  color: var(--gvm-blue);
  font-weight: 400;
}

.gvm-footer__copyright a:hover {
  color: var(--gvm-blue);
}

/* Comments */
.comments-area {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gvm-border);
}

.comment-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.comment-body {
  padding: 16px 0;
  border-bottom: 1px solid var(--gvm-border);
}

.comment-reply-title,
.comments-title {
  font-size: var(--gvm-h2-size);
  line-height: var(--gvm-h2-line-height);
  margin: 0 0 16px;
}

/* 404 */
.gvm-main-content--404 {
  padding: 0;
}

.gvm-404 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 10vw, 112px) 0 clamp(88px, 12vw, 128px);
  background:
    radial-gradient(circle at 12% 18%, rgba(25, 118, 201, 0.12), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(5, 97, 157, 0.1), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, #f3f9ff 100%);
}

.gvm-404__glow {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 0;
  width: min(560px, 82vw);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(5, 97, 157, 0.18) 0%,
      rgba(25, 118, 201, 0.12) 24%,
      rgba(229, 243, 255, 0.2) 62%,
      transparent 100%
    );
  filter: blur(48px);
  opacity: 0.9;
}

.gvm-404 > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.gvm-404__code {
  margin: 0 0 10px;
  background: linear-gradient(180deg, rgba(5, 97, 157, 0.18) 0%, rgba(25, 118, 201, 0.08) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--gvm-font-title);
  font-size: clamp(88px, 16vw, 148px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.gvm-404__title {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-404__text {
  margin: 0;
  max-width: 54ch;
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.7;
}

.gvm-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.gvm-404__actions .gvm-btn--secondary {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.08);
  color: var(--gvm-blue);
}

.gvm-404__actions .gvm-btn--secondary:hover,
.gvm-404__actions .gvm-btn--secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 8px 20px rgba(25, 118, 201, 0.24);
  color: var(--gvm-blue);
}

/* Legal pages */
.gvm-main-content--legal {
  padding: 0;
  background: var(--gvm-white);
}

.gvm-legal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(48px, 6vw, 72px);
  background: var(--gvm-gradient-hero);
}

.gvm-legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-legal-hero__glow {
  display: none;
}

.gvm-legal-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.gvm-legal-hero > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-legal-hero__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gvm-legal-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-legal-hero__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-legal-hero__meta {
  display: flex;
  justify-content: center;
  margin: 0;
}

.gvm-legal-hero__meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
  color: var(--gvm-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.gvm-legal-body {
  padding: clamp(40px, 5vw, 56px) 0 clamp(64px, 8vw, 88px);
  background: var(--gvm-white);
}

.gvm-legal-document {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
}

.gvm-legal-document__body {
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-legal-document__body > *:first-child {
  margin-top: 0;
}

.gvm-legal-document__body > *:last-child {
  margin-bottom: 0;
}

.gvm-legal-document__body h2,
.gvm-legal-document__body h3,
.gvm-legal-document__body h4 {
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
}

.gvm-legal-document__body h2 {
  margin: 1em 0 0.35em;
  font-size: clamp(24px, 3vw, 25px);
  line-height: 1.25;
}

.gvm-legal-document__body h2:first-child {
  margin-top: 0;
}

.gvm-legal-document__body h3 {
  margin: 0.7em 0 0.6em;
  font-size: 20px;
  line-height: 1.35;
}

.gvm-legal-document__body h4 {
  margin: 1.4em 0 0.5em;
  font-size: 17px;
  line-height: 1.4;
}

.gvm-legal-document__body p,
.gvm-legal-document__body ul,
.gvm-legal-document__body ol {
  margin: 0 0 1em;
}

.gvm-legal-document__body ul,
.gvm-legal-document__body ol {
  padding-left: 1.35em;
}

.gvm-legal-document__body li + li {
  margin-top: 0.45em;
}

.gvm-legal-document__body a {
  color: var(--gvm-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gvm-legal-document__body a:hover,
.gvm-legal-document__body a:focus-visible {
  color: #034a78;
}

.gvm-legal-document__body strong {
  color: var(--gvm-text);
  font-weight: 600;
}

.gvm-legal-document__body blockquote {
  margin: 1.5em 0;
  padding: 16px 18px;
  border-left: 4px solid rgba(5, 97, 157, 0.35);
  border-radius: 0 12px 12px 0;
  background: rgba(237, 246, 253, 0.72);
  color: var(--gvm-text);
}

.gvm-legal-document__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(19, 42, 77, 0.1);
  font-size: 14px;
}

.gvm-legal-document__pages-label {
  color: var(--gvm-text);
  font-weight: 600;
}

.gvm-legal-document__footer {
  margin-top: clamp(28px, 4vw, 36px);
  padding-top: clamp(24px, 3vw, 28px);
  border-top: 1px solid rgba(19, 42, 77, 0.1);
  text-align: center;
}

.gvm-legal-document__note {
  margin: 0 0 20px;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.65;
}

.gvm-legal-document__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gvm-legal-document__actions .gvm-btn--secondary {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.08);
  color: var(--gvm-blue);
}

.gvm-legal-document__actions .gvm-btn--secondary:hover,
.gvm-legal-document__actions .gvm-btn--secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 8px 20px rgba(25, 118, 201, 0.24);
  color: var(--gvm-blue);
}

/* ==========================================================================
   Book a Meeting
   ========================================================================== */

.gvm-main-content--meeting {
  padding: 0;
  overflow-x: clip;
  background: #ffffff;
}

.gvm-meeting-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(48px, 6vw, 72px);
  background: var(--gvm-gradient-hero);
}

.gvm-meeting-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-meeting-page__glow {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 0;
  width: min(580px, 82vw);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(5, 97, 157, 0.18) 0%,
      rgba(25, 118, 201, 0.1) 26%,
      rgba(229, 243, 255, 0.16) 62%,
      transparent 100%
    );
  filter: blur(50px);
  opacity: 0.92;
}

.gvm-meeting-page__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.gvm-meeting-page > .gvm-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  min-width: 0;
}

.gvm-meeting-page__header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.gvm-meeting-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-meeting-page__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-meeting-page__intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-meeting-wrapper {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #0065a3;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 0 40px rgba(0, 101, 163, 0.17);
}

.gvm-meeting-header {
  padding: 20px;
  border-bottom: 1px solid #eeeeee;
  background: #0065a3;
}

.gvm-meeting-header__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--gvm-font-title);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gvm-meeting-calendly,
.gvm-meeting-wrapper .calendly-inline-widget {
  min-width: 0;
  width: 100%;
  min-height: 730px;
  height: 730px;
  padding: 20px;
  border-radius: 0 0 18px 18px;
  background: #ffffff;
  box-sizing: border-box;
}

/* ==========================================================================
   Contact Us
   ========================================================================== */

.gvm-main-content--contact {
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
}

.gvm-contact-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(64px, 8vw, 96px);
  background: var(--gvm-gradient-hero);
}

.gvm-contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-contact-page__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  z-index: 0;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 118, 201, 0.16) 0%, transparent 68%);
}

.gvm-contact-page__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 30% 20%, #000 18%, transparent 72%);
}

.gvm-contact-page > .gvm-container {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.gvm-contact-page__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
}

.gvm-contact-page__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.gvm-contact-page__form {
  min-width: 0;
}

.gvm-contact-page__header {
  max-width: none;
  margin: 0;
  text-align: left;
}

.gvm-contact-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-contact-page__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-contact-page__intro {
  max-width: none;
  margin: 0;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-contact-page__channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 36px);
}

.gvm-contact-page__channel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(5, 97, 157, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.gvm-contact-page__channel:hover {
  border-color: rgba(5, 97, 157, 0.14);
  box-shadow: 0 12px 28px rgba(5, 97, 157, 0.09);
}

.gvm-contact-page__channel-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: #eef6fe;
  color: var(--gvm-blue);
  font-size: 20px;
  line-height: 1;
}

.gvm-contact-page__channel-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.gvm-contact-page__channel-title {
  margin: 0;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.gvm-contact-page__channel-text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gvm-contact-form-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  --gvm-contact-field-text: #132a4d;
}

.gvm-contact-page .gvm-contact-form-wrap {
  position: sticky;
  top: var(--gvm-sticky-top);
  padding: clamp(28px, 3.5vw, 36px);
}

.gvm-contact-form-wrap .wpcf7 {
  margin: 0;
}

.gvm-contact-form-wrap .wpcf7-form {
  display: block;
}

.gvm-contact-form-wrap .cs-contact-form .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.gvm-contact-form-wrap .cs-contact-form .row > [class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
  min-width: 0;
}

.gvm-contact-form-wrap .cs-contact-form .row > .col-xl-12,
.gvm-contact-form-wrap .cs-contact-form .row > .col-md-12 {
  grid-column: 1 / -1;
}

.gvm-contact-form-wrap .cs-contact-form .row > [class*="col-"] > p {
  margin: 0;
}

.gvm-contact-form-wrap .contact-us-class {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.gvm-contact-form-wrap .contact-us-class p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.gvm-contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.gvm-contact-form-wrap .wpcf7-form-control-wrap:has(select) {
  position: relative;
}

.gvm-contact-form-wrap .wpcf7-form-control-wrap:has(select)::after {
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--gvm-blue);
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.gvm-contact-form-wrap label {
  display: block;
  margin-bottom: 8px;
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.gvm-contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file):not(.g-recaptcha):not(.wpcf7-recaptcha) {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--gvm-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--gvm-contact-field-text);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.5;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.gvm-contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file):not(.g-recaptcha):not(.wpcf7-recaptcha)::placeholder {
  color: var(--gvm-contact-field-text);
  opacity: 1;
}

.gvm-contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file):not(.g-recaptcha):not(.wpcf7-recaptcha)::-webkit-input-placeholder {
  color: var(--gvm-contact-field-text);
}

.gvm-contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file):not(.g-recaptcha):not(.wpcf7-recaptcha)::-moz-placeholder {
  color: var(--gvm-contact-field-text);
  opacity: 1;
}

.gvm-contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file):not(.g-recaptcha):not(.wpcf7-recaptcha):-ms-input-placeholder {
  color: var(--gvm-contact-field-text);
}

.gvm-contact-form-wrap select.wpcf7-form-control {
  appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-color: #ffffff;
  color: var(--gvm-contact-field-text);
}

.gvm-contact-form-wrap select.wpcf7-form-control option {
  color: var(--gvm-contact-field-text);
}

.gvm-contact-form-wrap textarea.wpcf7-form-control:not([name="g-recaptcha-response"]) {
  min-height: 132px;
  resize: vertical;
}

.gvm-contact-form-wrap .wpcf7-form-control-wrap.recaptcha {
  display: block;
  width: auto;
  margin-top: 16px;
}

.gvm-contact-form-wrap .wpcf7-form-control-wrap.recaptcha .wpcf7-form-control,
.gvm-contact-form-wrap .wpcf7-form-control-wrap.recaptcha .g-recaptcha,
.gvm-contact-form-wrap .wpcf7-form-control-wrap.recaptcha .wpcf7-recaptcha {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gvm-contact-form-wrap textarea[name="g-recaptcha-response"] {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  resize: none;
}

.gvm-contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-file):not(.g-recaptcha):not(.wpcf7-recaptcha):focus {
  outline: none;
  border-color: var(--gvm-blue);
  box-shadow: 0 0 0 3px rgba(5, 97, 157, 0.14);
}

.gvm-contact-form-wrap .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 50px;
  margin: 0;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--gvm-radius);
  background: var(--gvm-blue-dark);
  color: var(--gvm-white);
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.gvm-contact-form-wrap .wpcf7-submit:hover,
.gvm-contact-form-wrap .wpcf7-submit:focus-visible {
  background: var(--gvm-blue);
}

.gvm-contact-form-wrap .wpcf7-spinner {
  margin: 0;
}

.gvm-contact-form-wrap .wpcf7-response-output {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.gvm-contact-form-wrap .wpcf7-form-control-wrap:has(.gvm-file-upload) {
  width: 100%;
}

.gvm-file-upload {
  display: grid;
  gap: 8px;
  width: 100%;
}

.gvm-file-upload__dropzone {
  position: relative;
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border: 1px dashed rgba(5, 97, 157, 0.45);
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.gvm-file-upload__dropzone:hover,
.gvm-file-upload__dropzone:focus-visible {
  border-color: var(--gvm-blue);
  background: #f7fbff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 97, 157, 0.1);
}

.gvm-file-upload__dropzone.is-dragover {
  border-color: var(--gvm-blue);
  background: #eef6fd;
  box-shadow: 0 0 0 3px rgba(5, 97, 157, 0.14);
}

.gvm-file-upload.is-invalid .gvm-file-upload__dropzone {
  border-color: #d63638;
  background: #fff7f7;
}

.gvm-file-upload.is-file-selected .gvm-file-upload__dropzone {
  border-style: solid;
  border-color: rgba(5, 97, 157, 0.35);
  background: #f7fbff;
}

.gvm-file-upload__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.gvm-file-upload__prompt {
  margin: 0;
  color: #132a4d;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  pointer-events: none;
}

.gvm-file-upload__browse {
  color: var(--gvm-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gvm-file-upload__file {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
}

.gvm-file-upload__file[hidden] {
  display: none;
}

.gvm-file-upload__file-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d32f2f;
  font-size: 22px;
  line-height: 1;
  box-shadow: none;
}

.gvm-file-upload__file-name {
  flex: 1 1 auto;
  min-width: 0;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  word-break: break-word;
}

.gvm-file-upload__remove {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #d32f2f;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.gvm-file-upload__remove:hover,
.gvm-file-upload__remove:focus-visible {
  background: rgba(211, 47, 47, 0.1);
  color: #b71c1c;
  outline: none;
}

.gvm-file-upload__hint {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 13px;
  line-height: 1.4;
}

.gvm-file-upload__error {
  margin: 0;
  color: #d63638;
  font-size: 13px;
  line-height: 1.4;
}

.gvm-file-upload__error[hidden] {
  display: none;
}

.gvm-contact-impact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 96px);
  background: var(--gvm-white);
}

.gvm-contact-impact::before {
  display: none;
}

.gvm-contact-impact > .gvm-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  min-width: 0;
}

.gvm-contact-impact__header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gvm-contact-impact__title {
  margin: 0 0 18px;
  color: #132a4d;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-contact-impact__intro {
  max-width: 920px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-contact-map {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.gvm-contact-map > * {
  width: 100%;
}

.gvm-contact-impact__offices {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  scroll-margin-top: var(--gvm-sticky-top);
}

.gvm-contact-offices__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: clamp(18px, 2.5vw, 28px);
  width: 100%;
  max-width: 920px;
}

.gvm-contact-office-card {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-contact-office-card__title {
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.gvm-contact-office-card__line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
  color: #111111;
  font-size: 15px;
  line-height: 1.65;
  text-decoration: none;
}

.gvm-contact-office-card__line:last-child {
  margin-bottom: 0;
}

.gvm-contact-office-card__line i {
  flex-shrink: 0;
  width: 14px;
  flex: 0 0 14px;
  margin-top: 4px;
  color: var(--gvm-blue);
  font-size: 14px;
  text-align: center;
}

.gvm-contact-office-card__phone > .fa-phone {
  margin-top: 1px;
  transform: scaleX(-1);
}

.gvm-contact-office-card__address {
  margin: 0;
  font-style: normal;
}

.gvm-contact-office-card__address a,
.gvm-contact-office-card__phone,
.gvm-contact-office-card__email {
  color: inherit;
  text-decoration: none;
}

.gvm-contact-office-card__address a:hover,
.gvm-contact-office-card__address a:focus-visible,
.gvm-contact-office-card__phone:hover,
.gvm-contact-office-card__phone:focus-visible,
.gvm-contact-office-card__email:hover,
.gvm-contact-office-card__email:focus-visible {
  color: var(--gvm-blue);
}

/* ==========================================================================
   Career
   ========================================================================== */

.gvm-main-content--career {
  padding: 0;
  overflow-x: hidden;
  background: var(--gvm-white);
}

.gvm-career-perks,
.gvm-career-positions,
.gvm-career-culture,
.gvm-career-apply {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.gvm-career-perks > .gvm-container,
.gvm-career-positions > .gvm-container,
.gvm-career-culture > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-career-section-header {
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.gvm-career-section-header__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-career-section-header__intro {
  max-width: 920px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-career-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 8vw, 72px) 0 0;
  background: var(--gvm-gradient-hero);
}

.gvm-career-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-career-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.gvm-career-hero > .gvm-container {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.gvm-career-hero__header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gvm-career-hero__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-career-hero__intro {
  max-width: 820px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-career-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.gvm-career-hero__media {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: clamp(28px, 4vw, 40px) 0 0;
  overflow: hidden;
}

.gvm-career-hero__media img {
  width: 100%;
  height: auto;
  min-height: clamp(220px, 38vw, 480px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.gvm-career-perks {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-cream);
}

.gvm-career-perks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-career-perk {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gvm-career-perk:hover,
.gvm-career-perk:focus-within {
  transform: translateY(-2px);
  border-color: rgba(5, 97, 157, 0.14);
  box-shadow: 0 12px 28px rgba(5, 97, 157, 0.08);
}

.gvm-career-perk__icon {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(5, 97, 157, 0.08);
  border-radius: 12px;
  place-items: center;
  background: linear-gradient(180deg, #f7fbff 0%, #e8f4fd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--gvm-blue);
}

.gvm-career-perk__title {
  margin: 0;
  color: #132a4d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.gvm-career-perk__text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.65;
}

.gvm-career-positions {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-white);
}

.gvm-career-jobs {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gvm-career-positions .gvm-career-job {
  background: var(--gvm-cream);
}

.gvm-career-jobs__empty {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.gvm-career-job {
  overflow: hidden;
  border: 1px solid rgba(19, 42, 77, 0.28);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(19, 42, 77, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gvm-career-job[open] {
  border-color: rgba(5, 97, 157, 0.35);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.08);
}

.gvm-career-job__summary {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  min-height: 78px;
  padding: clamp(16px, 2vw, 25px);
  gap: clamp(14px, 2vw, 24px);
  cursor: pointer;
  list-style: none;
}

.gvm-career-job__summary::-webkit-details-marker {
  display: none;
}

.gvm-career-job__summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(5, 97, 157, 0.18);
}

.gvm-career-job__lead {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 1 auto;
  gap: 6px;
  min-width: 0;
  max-width: min(38%, 320px);
}

.gvm-career-job__meta {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  min-width: 0;
  max-width: min(58%, 520px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gvm-career-job__title {
  color: #111111;
  font-family: var(--gvm-font-title);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gvm-career-job__openings {
  color: #111111;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gvm-career-job__experience {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #05619d 0%, #1976c9 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.gvm-career-job__details {
  display: inline-flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  color: #111111;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.gvm-career-job__detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gvm-career-job__detail i {
  color: #111111;
  font-size: 13px;
}

.gvm-career-job__divider {
  color: rgba(19, 42, 77, 0.35);
  font-weight: 400;
}

.gvm-career-job__chevron {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--gvm-blue);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.gvm-career-job[open] .gvm-career-job__chevron {
  transform: rotate(180deg);
}

.gvm-career-job__content {
  padding: 0 clamp(16px, 2vw, 25px) 22px;
  color: var(--gvm-text);
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.75;
  border-top: 1px solid rgba(19, 42, 77, 0.1);
}

.gvm-career-job__content > :first-child {
  margin-top: 18px;
}

.gvm-career-job__content p,
.gvm-career-job__content ul,
.gvm-career-job__content ol {
  margin: 0 0 14px;
}

.gvm-career-job__content ul,
.gvm-career-job__content ol {
  padding-left: 1.2em;
}

.gvm-career-job__content li + li {
  margin-top: 8px;
}

.gvm-career-job__content strong {
  color: #132a4d;
}

.gvm-career-job__actions {
  margin-top: 22px;
}

.gvm-career-job__apply {
  justify-content: center;
}

.gvm-career-culture {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-cream);
}

.gvm-career-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(14px, 1.6vw, 18px);
  align-items: start;
  width: 100%;
  margin: clamp(20px, 3vw, 32px) auto 0;
}

.gvm-career-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.08);
  align-self: start;
}

.gvm-career-gallery__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.gvm-career-gallery__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gvm-career-gallery__item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.gvm-career-gallery__item:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.gvm-career-gallery__item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.gvm-career-apply {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 96px);
  background: var(--gvm-white);
}

.gvm-career-apply__grid {
  display: none;
}

.gvm-career-apply > .gvm-container {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.gvm-career-apply__form {
  margin-top: clamp(8px, 1.5vw, 16px);
}

.gvm-career-apply .gvm-contact-form-wrap {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: var(--gvm-cream);
}

/* ==========================================================================
   Our Team
   ========================================================================== */

.gvm-main-content--our-team {
  padding: 0;
  background: var(--gvm-white);
}

.gvm-main-content--our-team-single {
  padding: 0;
  background: var(--gvm-white);
}

.gvm-team-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 65px 0 0;
  background: var(--gvm-gradient-hero);
}

.gvm-team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-team-hero--single {
  padding: clamp(56px, 7vw, 72px) 0 clamp(24px, 3vw, 32px);
}

.gvm-team-hero__glow {
  display: none;
}

.gvm-team-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.gvm-team-hero > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-team-breadcrumb {
  margin-bottom: clamp(16px, 2.5vw, 22px);
}

.gvm-team-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.gvm-team-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gvm-muted);
}

.gvm-team-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(92, 107, 99, 0.55);
}

.gvm-team-breadcrumb__link {
  color: var(--gvm-blue);
  font-weight: 600;
}

.gvm-team-breadcrumb__item[aria-current="page"] {
  color: var(--gvm-text);
  font-weight: 600;
}

.gvm-team-hero__head {
  max-width: 760px;
  text-align: left;
}

.gvm-team-hero__member-title {
  margin: 0 0 8px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-team-hero__member-role {
  margin: 0;
  color: var(--gvm-blue);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  font-weight: 600;
}

.gvm-team-hero__header {
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.gvm-team-hero__visual {
  width: 100%;
  margin: clamp(28px, 4vw, 40px) 0 0;
  padding: 0;
}

.gvm-team-hero__visual-img {
  width: 100%;
  height: auto;
  display: block;
}

.gvm-team-hero__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-team-hero__intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.gvm-team-spotlight {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-white);
}

.gvm-team-spotlight__light {
  position: absolute;
  top: clamp(8px, 2vw, 24px);
  left: clamp(8px, 3vw, 48px);
  z-index: 0;
  width: min(220px, 34vw);
  pointer-events: none;
  opacity: 0.07;
  filter: blur(0.2px);
}

.gvm-team-spotlight__light-img {
  width: 100%;
  height: auto;
  display: block;
}

.gvm-team-spotlight > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-team-spotlight__header {
  max-width: 820px;
  margin: 0 auto clamp(24px, 3.5vw, 36px);
  text-align: center;
}

.gvm-team-spotlight__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-team-spotlight__intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-team-founder {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(160px, 0.68fr);
  gap: 0;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 15px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.95), transparent 42%),
    radial-gradient(circle at 86% 88%, rgba(248, 251, 255, 0.85), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fafcff 52%, #ffffff 100%);
  box-shadow: 0 12px 34px rgba(19, 42, 77, 0.05);
}

.gvm-team-spotlight__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 32px);
}

.gvm-team-founder--reverse {
  grid-template-columns: minmax(160px, 0.68fr) minmax(0, 1.9fr);
}

.gvm-team-founder--reverse .gvm-team-founder__media {
  justify-content: flex-start;
  align-self: end;
  border-radius: 23px 0 0 23px;
}

.gvm-team-founder--reverse .gvm-team-founder__image {
  object-position: left bottom;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 15px;
}

.gvm-team-founder__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 35px clamp(24px, 3.2vw, 40px);
  text-align: left;
}

.gvm-team-founder__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  align-self: end;
  min-height: 0;
  border: 0;
  border-radius: 0 23px 23px 0;
  background: transparent;
}

.gvm-team-founder__image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(220px, 28vw, 390px);
  margin-top: clamp(-32px, -4vw, -20px);
  margin-bottom: 0;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  border-bottom-right-radius: 15px;
}

.gvm-team-founder__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #f8fafc;
}

.gvm-team-founder__heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 4px;
  justify-content: space-between;
}

.gvm-team-founder__name {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  color: #002c5c;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-team-founder__role {
  margin: 0 0 12px;
  color: #2e5b8d;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.4;
  font-weight: 700;
}

.gvm-team-founder__linkedin {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0;
  border: 1px solid rgba(5, 97, 157, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fbff 0%, #e8f2fb 100%);
  color: #002c5c;
  box-shadow: 0 2px 8px rgba(5, 97, 157, 0.1);
  text-decoration: none;
  outline: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.gvm-team-founder__linkedin-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gvm-team-founder__linkedin:hover {
  border-color: rgba(5, 97, 157, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #dfeef8 100%);
  color: #05619d;
  box-shadow: 0 4px 12px rgba(5, 97, 157, 0.16);
  transform: translateY(-1px);
}

.gvm-team-founder__linkedin:focus-visible {
  border-color: rgba(5, 97, 157, 0.4);
  background: #ffffff;
  color: #05619d;
  box-shadow:
    0 0 0 3px rgba(5, 97, 157, 0.28),
    0 4px 12px rgba(5, 97, 157, 0.12);
  transform: none;
}

.gvm-team-founder__bio {
  color: #555555;
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.65;
}

.gvm-team-founder__bio p {
  margin: 0 0 0.75em;
}

.gvm-team-founder__bio p:last-child {
  margin-bottom: 0;
}

.gvm-team-body {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-cream);
}

.gvm-main-content--our-team:not(.gvm-main-content--our-team-single) .gvm-team-spotlight .gvm-team-founder {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--our-team:not(.gvm-main-content--our-team-single) .gvm-team-body .gvm-team-card__link {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-team-body__header {
  max-width: 820px;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
  text-align: center;
}

.gvm-team-body__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-team-body__intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px);
}

.gvm-team-card {
  min-width: 0;
}

.gvm-team-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #d4e8f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(5, 97, 157, 0.08);
  color: inherit;
  text-decoration: none;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.gvm-team-card__link--detail {
  cursor: pointer;
}

.gvm-team-card__link--static {
  cursor: default;
}

.gvm-team-card__link:hover,
.gvm-team-card__link:focus-visible {
  border-color: rgba(5, 97, 157, 0.22);
  box-shadow: 0 14px 34px rgba(5, 97, 157, 0.14);
}

.gvm-team-card__media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #f7fbff 0%, #edf6fd 100%);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border: 1px solid #668eca33;
  transition: background 0.35s ease;
}

.gvm-team-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(240px, 92%);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(5, 97, 157, 0.48) 0%,
      rgba(5, 97, 157, 0.36) 18%,
      rgba(25, 118, 201, 0.28) 34%,
      rgba(25, 118, 201, 0.18) 48%,
      rgba(5, 97, 157, 0.12) 62%,
      rgba(197, 226, 246, 0.2) 78%,
      transparent 100%
    );
  filter: blur(36px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gvm-team-card__link:hover .gvm-team-card__media,
.gvm-team-card__link:focus-visible .gvm-team-card__media {
  background: linear-gradient(180deg, #f7fbff 0%, rgba(237, 246, 253, 0.72) 100%);
}

.gvm-team-card__link:hover .gvm-team-card__glow,
.gvm-team-card__link:focus-visible .gvm-team-card__glow {
  opacity: 1;
}

.gvm-team-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.gvm-team-card__placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.gvm-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 2px 0;
  text-align: left;
}

.gvm-team-card__name {
  margin: 0;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gvm-team-card__role {
  margin: 0;
  color: #5c6b63;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.gvm-team-single__body {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-white);
}

.gvm-team-single__layout {
  padding-top: clamp(8px, 1.5vw, 16px);
}

.gvm-team-profile {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  margin-top: 0;
  margin-bottom: clamp(32px, 4.5vw, 44px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.gvm-team-profile__aside {
  position: sticky;
  top: var(--gvm-sticky-top);
  align-self: start;
  z-index: 2;
  min-width: 0;
}

.gvm-team-profile__card {
  min-width: 0;
}

.gvm-team-profile__card-surface {
  flex-direction: column;
}

.gvm-team-profile__card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}

.gvm-team-profile__card-actions .gvm-team-profile__linkedin,
.gvm-team-profile__card-actions .gvm-team-profile__cta {
  display: flex;
  width: 100%;
  justify-content: center;
}

.gvm-team-profile__content {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 28px);
  min-width: 0;
  padding-top: 4px;
}

.gvm-team-profile__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gvm-team-profile__badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf6fd 100%);
  box-shadow: 0 8px 20px rgba(5, 97, 157, 0.08);
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gvm-team-profile__badge--projects {
  border-color: rgba(5, 97, 157, 0.28);
  background: linear-gradient(180deg, #05619d 0%, #034a78 100%);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.18);
  color: #ffffff;
}

.gvm-team-profile__section {
  display: grid;
  gap: 14px;
}

.gvm-team-profile__section--compact {
  gap: 10px;
}

.gvm-team-profile__section-title {
  margin: 0;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.gvm-team-profile__objective {
  color: var(--gvm-text);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-team-profile__objective p {
  margin: 0 0 12px;
}

.gvm-team-profile__objective p:last-child {
  margin-bottom: 0;
}

.gvm-team-skills--profile {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gvm-team-skills--profile .gvm-team-skills__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.gvm-team-skills--profile .gvm-team-skills__label {
  margin: 0;
  color: var(--gvm-dark-panel);
  font-family: var(--gvm-font-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.gvm-team-skills--profile .gvm-team-skills__list {
  gap: 6px;
}

.gvm-team-skills--profile .gvm-team-skills__item {
  padding: 5px 12px;
  border: 1px solid rgba(5, 97, 157, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--gvm-blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.gvm-team-profile__entry {
  color: var(--gvm-text);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-team-profile__entry > :first-child {
  margin-top: 0;
}

.gvm-team-profile__entry > :last-child {
  margin-bottom: 0;
}

.gvm-team-profile__entry p {
  margin: 0 0 12px;
}

.gvm-team-profile__entry p:last-child {
  margin-bottom: 0;
}

.gvm-team-profile__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(237, 246, 253, 0.9);
  color: var(--gvm-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gvm-team-profile__name {
  margin: 0 0 10px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-team-profile__role {
  margin: 0 0 20px;
  color: var(--gvm-blue);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  font-weight: 600;
}

.gvm-team-profile__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.gvm-team-profile__stat {
  padding: 14px 16px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 14px;
  background: rgba(247, 251, 255, 0.92);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gvm-team-profile__stat:hover {
  border-color: rgba(5, 97, 157, 0.16);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.08);
  transform: translateY(-2px);
}

.gvm-team-profile__stat dt {
  margin: 0 0 4px;
  color: var(--gvm-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gvm-team-profile__stat dd {
  margin: 0;
  color: var(--gvm-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.gvm-team-profile__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #002c5c;
  box-shadow: 0 2px 10px rgba(5, 97, 157, 0.1);
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.gvm-team-profile__linkedin-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gvm-team-profile__linkedin:hover,
.gvm-team-profile__linkedin:focus-visible {
  border-color: rgba(5, 97, 157, 0.28);
  background: #f7fbff;
  color: #05619d;
  box-shadow: 0 4px 12px rgba(5, 97, 157, 0.16);
  transform: translateY(-1px);
}

.gvm-team-profile__card-actions .gvm-team-profile__cta {
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.2);
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 700;
}

.gvm-team-single-tabs {
  margin-bottom: clamp(24px, 4vw, 32px);
}

.gvm-team-single-tabs__nav {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(24px, 3.5vw, 32px);
  padding: 4px;
  overflow-x: auto;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(19, 42, 77, 0.06);
  gap: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gvm-team-single-tabs__nav::-webkit-scrollbar {
  display: none;
}

.gvm-team-single-tabs__tab {
  flex: 0 0 auto;
  min-width: 132px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--gvm-muted);
  cursor: pointer;
  font-family: var(--gvm-font-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.gvm-team-single-tabs__tab:hover {
  color: var(--gvm-blue);
}

.gvm-team-single-tabs__tab.is-active {
  background: var(--gvm-blue);
  box-shadow: 0 6px 16px rgba(5, 97, 157, 0.2);
  color: var(--gvm-white);
}

.gvm-team-single-tabs__tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(5, 97, 157, 0.28);
}

.gvm-team-single-tabs__panel {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.95), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fafcff 52%, #ffffff 100%);
  box-shadow: 0 16px 40px rgba(19, 42, 77, 0.06);
}

.gvm-team-single-tabs__panel:focus {
  outline: none;
}

.gvm-team-single__main {
  display: grid;
  gap: clamp(20px, 3vw, 24px);
}

.gvm-team-panel {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(19, 42, 77, 0.06);
}

.gvm-team-panel__title {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(19, 42, 77, 0.08);
  color: var(--gvm-text);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  font-weight: 700;
}

.gvm-team-panel__content {
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.8;
}

.gvm-team-panel__content h2,
.gvm-team-panel__content h3,
.gvm-team-panel__content h4 {
  color: var(--gvm-text);
  font-family: var(--gvm-font-title);
}

.gvm-team-strengths ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-team-strengths li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 14px;
  background: rgba(247, 251, 255, 0.92);
  color: var(--gvm-text);
  font-size: 15px;
  line-height: 1.65;
}

.gvm-team-strengths li + li {
  margin-top: 12px;
}

.gvm-team-strengths li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #05619d;
  box-shadow: 0 0 0 4px color-mix(in srgb, #05619d 18%, white);
}

.gvm-team-strengths p {
  margin: 0 0 12px;
  color: var(--gvm-muted);
  font-size: 16px;
  line-height: 1.75;
}

.gvm-team-strengths p:last-child {
  margin-bottom: 0;
}

.gvm-team-dossier__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.gvm-team-dossier__grid:not(:has(.gvm-team-dossier__column ~ .gvm-team-dossier__column)) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
}

.gvm-team-dossier__column {
  min-width: 0;
}

.gvm-team-dossier__title {
  margin: 0 0 22px;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.25;
  font-weight: 700;
}

.gvm-team-dossier__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-team-dossier__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gvm-team-dossier__item:has(.gvm-team-dossier__text-stack) {
  align-items: flex-start;
}

.gvm-team-dossier__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(5, 97, 157, 0.1);
  border-radius: 12px;
  place-items: center;
  background: linear-gradient(180deg, #edf6fd 0%, #e5f3ff 100%);
  color: var(--gvm-blue);
}

.gvm-team-dossier__text {
  margin: 0;
  color: var(--gvm-text);
  font-family: var(--gvm-font-body);
  font-size: 15px;
  line-height: 1.6;
}

.gvm-team-dossier__text-stack {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-top: 2px;
}

.gvm-team-dossier__text-primary {
  margin: 0;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.gvm-team-dossier__text-secondary {
  margin: 0;
  color: var(--gvm-muted);
  font-family: var(--gvm-font-body);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.gvm-team-skills {
  display: flex;
  gap: 18px;
}

.gvm-team-skills__group {
  padding: 16px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.92);
}

.gvm-team-skills__label {
  margin: 0 0 12px;
  color: var(--gvm-text);
  font-size: 15px;
  font-weight: 700;
}

.gvm-team-skills__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-team-skills__item {
  padding: 6px 12px;
  border: 1px solid rgba(5, 97, 157, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--gvm-blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.gvm-team-projects {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gvm-team-projects__actions {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.gvm-team-projects__actions[hidden],
.gvm-team-projects__actions.is-hidden {
  display: none !important;
}

.gvm-team-projects__load-more {
  background: var(--gvm-blue-dark);
  border-color: #05619d;
  box-shadow: 0 12px 28px rgba(25, 118, 201, 0.24);
  color: var(--gvm-white);
  font-family: var(--gvm-font-title);
  font-weight: 700;
}

.gvm-team-projects__load-more:hover,
.gvm-team-projects__load-more:focus-visible {
  background: var(--gvm-blue);
  border-color: #132a4d;
  box-shadow: 0 16px 34px rgba(19, 42, 77, 0.28);
  color: var(--gvm-white);
}

.gvm-team-project {
  padding: 20px;
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.92);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gvm-team-project--hidden {
  display: none;
}

.gvm-team-project:hover {
  border-color: rgba(5, 97, 157, 0.16);
  box-shadow: 0 12px 28px rgba(5, 97, 157, 0.1);
  transform: translateY(-2px);
}

.gvm-team-project__title {
  margin: 0 0 6px;
  color: var(--gvm-text);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.gvm-team-project__role {
  margin: 0 0 10px;
  color: var(--gvm-blue);
  font-size: 14px;
  font-weight: 700;
}

.gvm-team-project__tech {
  margin: 0 0 10px;
  color: var(--gvm-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gvm-team-project__tech span {
  color: var(--gvm-text);
  font-weight: 700;
}

.gvm-team-project__summary {
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-team-project__summary p {
  margin: 0;
}

.gvm-team-single__footer {
  margin-top: clamp(8px, 2vw, 12px);
  padding: clamp(28px, 3.5vw, 36px);
  border: 1px solid rgba(19, 42, 77, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(25, 118, 201, 0.12), transparent 40%),
    linear-gradient(135deg, #ffffff 0%, #edf6fc 52%, #f7fbff 100%);
  box-shadow: 0 16px 40px rgba(19, 42, 77, 0.06);
  text-align: center;
}

.gvm-team-single__note {
  margin: 0 0 20px;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.65;
}

.gvm-team-single__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gvm-team-single__actions .gvm-btn--secondary {
  background: #ffffff;
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 10px 24px rgba(19, 42, 77, 0.08);
  color: var(--gvm-blue);
}

.gvm-main-content--our-team-single .gvm-team-profile__card .gvm-team-card__link--static {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--our-team-single .gvm-team-single-tabs__nav {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--our-team-single .gvm-team-single-tabs__panel {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--our-team-single .gvm-team-project,
.gvm-main-content--our-team-single .gvm-team-panel {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--our-team .no-results {
  padding: 36px 24px;
  border: 1px dashed rgba(5, 97, 157, 0.25);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

/* Technology single */
.gvm-main-content--technology-single,
.gvm-main-content--service-single {
  padding: 0;
  max-width: 100%;
}

.gvm-technology-single,
.gvm-service-single {
  max-width: 100%;
}

.gvm-technology-single__body,
.gvm-service-single__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}

.gvm-technology-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(48px, 6vw, 64px);
  background:
    radial-gradient(circle at 14% 16%, rgba(25, 118, 201, 0.14), transparent 38%),
    radial-gradient(circle at 86% 84%, rgba(5, 97, 157, 0.12), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #edf6fd 100%);
}

.gvm-technology-hero__glow {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 0;
  width: min(580px, 82vw);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(5, 97, 157, 0.18) 0%,
      rgba(25, 118, 201, 0.1) 26%,
      rgba(229, 243, 255, 0.16) 62%,
      transparent 100%
    );
  filter: blur(50px);
  opacity: 0.92;
}

.gvm-technology-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.gvm-technology-hero > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-technology-breadcrumb {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.gvm-technology-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.gvm-technology-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gvm-muted);
}

.gvm-technology-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(92, 107, 99, 0.55);
}

.gvm-technology-breadcrumb__link {
  color: var(--gvm-blue);
  font-weight: 600;
}

.gvm-technology-breadcrumb__text {
  color: var(--gvm-blue);
  font-weight: 600;
}

.gvm-technology-breadcrumb__item[aria-current="page"] {
  color: var(--gvm-text);
  font-weight: 600;
}

.gvm-technology-hero__head {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
}

.gvm-technology-hero__icon-wrap {
  display: flex;
  width: clamp(84px, 12vw, 112px);
  height: clamp(84px, 12vw, 112px);
  flex: 0 0 clamp(84px, 12vw, 112px);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 28px rgba(5, 97, 157, 0.14);
}

.gvm-technology-hero__icon {
  width: auto;
  max-width: 72%;
  height: auto;
  max-height: 72%;
  object-fit: contain;
}

.gvm-technology-hero__header {
  min-width: 0;
  flex: 1;
}

.gvm-technology-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-technology-hero__title {
  margin: 0 0 14px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-technology-hero__intro {
  max-width: 760px;
  margin: 0;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.gvm-technology-section {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 7vw, 80px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(25, 118, 201, 0.1), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(5, 97, 157, 0.08), transparent 36%),
    linear-gradient(180deg, #f9fcff 0%, #edf6fd 52%, #f7fbff 100%);
}

.gvm-technology-section:nth-child(even) {
  background:
    radial-gradient(circle at 88% 16%, rgba(25, 118, 201, 0.12), transparent 34%),
    radial-gradient(circle at 10% 84%, rgba(5, 97, 157, 0.1), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #edf6fd 100%);
}

.gvm-technology-section > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-technology-section__header {
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.gvm-technology-section__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--gvm-font-title);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-technology-section__title h1,
.gvm-technology-section__title h2,
.gvm-technology-section__title h3,
.gvm-technology-section__title h4,
.gvm-technology-section__title.entry-content :is(h1, h2, h3, h4) {
  margin: 0;
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.gvm-technology-section__title.entry-content > :first-child {
  margin-top: 0;
}

.gvm-technology-section__title.entry-content > :last-child {
  margin-bottom: 0;
}

.gvm-technology-section__title.entry-content p {
  margin: 0;
}

.gvm-technology-section__intro {
  max-width: 920px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-technology-section__intro p:first-child {
  margin-top: 0;
}

.gvm-technology-section__intro p:last-child {
  margin-bottom: 0;
}

.gvm-technology-hiring__benefits {
  margin-top: clamp(24px, 4vw, 36px);
}

.gvm-technology-hiring__benefits-title {
  margin: 0 0 22px;
  text-align: center;
  color: #132a4d;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  font-weight: 700;
}

.gvm-technology-hiring__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-technology-benefit {
  min-width: 0;
  padding: 24px 22px;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-technology-benefit:hover,
.gvm-technology-benefit:focus-within {
  border-color: rgba(5, 97, 157, 0.22);
  box-shadow: 0 16px 34px rgba(19, 42, 77, 0.1);
  transform: translateY(-2px);
}

.gvm-technology-benefit__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(5, 97, 157, 0.08);
}

.gvm-technology-benefit__title {
  margin: 0 0 10px;
  color: #132a4d;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.gvm-technology-benefit__text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.7;
}

.gvm-technology-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-service-comprehensive .gvm-technology-services__grid > .gvm-technology-service:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 9px);
  justify-self: center;
}

.gvm-technology-service {
  min-width: 0;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.06);
}

.gvm-technology-service__index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gvm-technology-service__title {
  margin: 0 0 12px;
  color: #132a4d;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.25;
  font-weight: 700;
}

.gvm-technology-service__content {
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.75;
}

.gvm-technology-service__content p:first-child {
  margin-top: 0;
}

.gvm-technology-service__content p:last-child {
  margin-bottom: 0;
}

.gvm-technology-case-study__layout {
  display: grid;
  align-items: start;
  gap: clamp(32px, 5vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gvm-technology-section.gvm-technology-case-study {
  overflow: visible;
}

.gvm-technology-case-study__intro {
  position: sticky;
  top: var(--gvm-sticky-top);
  align-self: start;
  max-width: none;
}

.gvm-technology-case-study__description {
  margin: 0;
  text-align: left;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-technology-case-study__intro .gvm-technology-section__title {
  text-align: left;
}

.gvm-technology-case-study__card {
  width: 100%;
  max-width: none;
  margin: 0;
}

.gvm-technology-case-study__card .gvm-case-study-card__title {
  font-size: clamp(20px, 2.5vw, 24px);
}

.gvm-technology-sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px) clamp(14px, 2vw, 20px);
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.gvm-technology-sector {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(5, 97, 157, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(19, 42, 77, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-technology-sector:hover,
.gvm-technology-sector:focus-within {
  border-color: rgba(5, 97, 157, 0.18);
  box-shadow: 0 12px 26px rgba(19, 42, 77, 0.08);
  transform: translateY(-1px);
}

.gvm-technology-sector__icon-wrap {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #1976c9 0%, #05619d 100%);
  box-shadow: 0 8px 18px rgba(5, 97, 157, 0.22);
  color: var(--gvm-white);
  font-size: 18px;
}

.gvm-technology-sector__image {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.gvm-technology-sector__label {
  min-width: 0;
  color: #132a4d;
  font-family: var(--gvm-font-title);
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 700;
  line-height: 1.35;
}

.gvm-technology-hire__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 260px;
  padding: clamp(36px, 5vw, 56px);
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(25, 118, 201, 0.24) 0%, transparent 40%),
    radial-gradient(circle at 92% 90%, rgba(19, 42, 77, 0.14) 0%, transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #edf6fc 52%, #dcecf8 100%);
  box-shadow: 0 24px 60px rgba(19, 42, 77, 0.14);
  text-align: center;
}

.gvm-technology-hire__title {
  margin: 0 0 14px;
  color: #132a4d;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-technology-hire__text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: 17px;
  line-height: 1.7;
}

.gvm-technology-hire__text p:first-child {
  margin-top: 0;
}

.gvm-technology-hire__text p:last-child {
  margin-bottom: 0;
}

.gvm-technology-single .gvm-technology-faq {
  overflow: visible;
}

.gvm-technology-single .gvm-faq__intro,
.gvm-service-single .gvm-faq__intro {
  top: var(--gvm-sticky-top);
}

.gvm-technology-intro .entry-content {
  overflow-wrap: anywhere;
}

.gvm-technology-intro .entry-content :is(img, iframe, video) {
  max-width: 100%;
  height: auto;
}

.gvm-technology-partner__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-technology-partner__item {
  min-width: 0;
  padding: 24px 22px;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-technology-partner__item:hover,
.gvm-technology-partner__item:focus-within {
  border-color: rgba(5, 97, 157, 0.22);
  box-shadow: 0 16px 34px rgba(19, 42, 77, 0.1);
  transform: translateY(-2px);
}

.gvm-technology-partner__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(5, 97, 157, 0.08);
}

.gvm-technology-partner__title {
  margin: 0 0 10px;
  color: #132a4d;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.gvm-technology-partner__text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Technology single — hero + cream / white sections */
.gvm-main-content--technology-single {
  background: var(--gvm-white);
}

.gvm-main-content--technology-single .gvm-technology-hero {
  background: var(--gvm-gradient-hero);
}

.gvm-main-content--technology-single .gvm-technology-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-main-content--technology-single .gvm-technology-hero__glow {
  display: none;
}

.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(odd) {
  background: var(--gvm-white);
}

.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(even) {
  background: var(--gvm-cream);
}

.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(even) .gvm-technology-benefit,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(even) .gvm-technology-service,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(even) .gvm-technology-sector,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(even) .gvm-technology-partner__item,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(even) .gvm-faq__item,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(even) .gvm-case-study-card__link {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(odd) .gvm-technology-benefit,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(odd) .gvm-technology-service,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(odd) .gvm-technology-sector,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(odd) .gvm-technology-partner__item,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(odd) .gvm-faq__item,
.gvm-main-content--technology-single .gvm-technology-single__body > section:nth-child(odd) .gvm-case-study-card__link {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--technology-single .gvm-technology-hire__panel {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.gvm-main-content--technology-single .gvm-technology-hire__title {
  text-align: left;
}

.gvm-main-content--technology-single .gvm-technology-hire__text {
  max-width: none;
  margin: 0;
  text-align: left;
}

.gvm-main-content--technology-single .gvm-technology-hire__action {
  align-self: flex-start;
}

.gvm-main-content--service-single .gvm-technology-hire__panel {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.gvm-main-content--service-single .gvm-technology-hire__title {
  text-align: left;
}

.gvm-main-content--service-single .gvm-technology-hire__text {
  max-width: none;
  margin: 0;
  text-align: left;
}

.gvm-main-content--service-single .gvm-technology-hire__action {
  align-self: flex-start;
}

/* Service single — hero + cream / white sections */
.gvm-main-content--service-single {
  background: var(--gvm-white);
}

.gvm-main-content--service-single .gvm-service-hero {
  background: var(--gvm-cream);
}

.gvm-main-content--service-single .gvm-service-hero .gvm-technology-hero__glow,
.gvm-main-content--service-single .gvm-service-hero .gvm-technology-hero__grid {
  display: none;
}

.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(odd) {
  background: var(--gvm-white);
}

.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(even) {
  background: var(--gvm-cream);
}

.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(even) .gvm-technology-service,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(even) .gvm-faq__item,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(even) .gvm-technology-card__link,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(even) .gvm-process-step,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(even) .gvm-process-step.is-active,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(even) .gvm-service-brand__image {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(odd) .gvm-technology-service,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(odd) .gvm-faq__item,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(odd) .gvm-technology-card__link,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(odd) .gvm-process-step,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(odd) .gvm-process-step.is-active,
.gvm-main-content--service-single .gvm-service-single__body > section:nth-child(odd) .gvm-service-brand__image {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

/* Service single hero */
.gvm-service-hero {
  --gvm-service-hero-min-height: clamp(320px, 32vw, 400px);
  --gvm-service-hero-media-height: clamp(280px, 30vw, 380px);
  padding: clamp(36px, 4.5vw, 56px) 0 clamp(28px, 3.5vw, 40px);
}

.gvm-service-hero .gvm-technology-hero__glow {
  top: 42%;
  left: 58%;
  width: min(640px, 72vw);
  opacity: 0.72;
}

.gvm-service-hero .gvm-technology-hero__grid {
  opacity: 0.34;
}

.gvm-service-hero__content .gvm-technology-breadcrumb {
  margin-bottom: clamp(18px, 3vw, 24px);
}

.gvm-service-hero__layout {
  display: grid;
  align-items: stretch;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  min-height: var(--gvm-service-hero-min-height);
}

.gvm-service-hero__layout--no-media {
  grid-template-columns: minmax(0, 1fr);
  min-height: var(--gvm-service-hero-min-height);
}

.gvm-service-hero__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.gvm-service-hero__content .gvm-technology-hero__title {
  max-width: none;
  margin: 0 0 clamp(16px, 2.5vw, 22px);
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(36px, 5.2vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.gvm-service-hero__content .gvm-technology-hero__intro {
  display: -webkit-box;
  max-width: 640px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.75;
}

.gvm-service-hero__content .gvm-technology-hero__intro p {
  margin: 0 0 1em;
}

.gvm-service-hero__content .gvm-technology-hero__intro p:last-child {
  margin-bottom: 0;
}

.gvm-service-hero__content .gvm-technology-hero__intro :is(img, iframe, video) {
  max-width: 100%;
  height: auto;
}

.gvm-service-hero__media {
  display: flex;
  height: 100%;
  min-height: var(--gvm-service-hero-media-height);
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  min-width: 0;
}

.gvm-service-hero__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: var(--gvm-service-hero-media-height);
  min-height: var(--gvm-service-hero-media-height);
  max-height: var(--gvm-service-hero-media-height);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 24px 48px rgba(19, 42, 77, 0.12));
}

.gvm-service-intro .entry-content {
  overflow-wrap: anywhere;
}

.gvm-service-intro__title {
  width: 100%;
  max-width: none;
  text-align: left;
}

.gvm-service-intro .gvm-service-intro__description,
.gvm-service-intro .gvm-technology-section__intro.gvm-service-intro__description {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

.gvm-service-intro__content {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.gvm-service-intro .entry-content :is(img, iframe, video) {
  max-width: 100%;
  height: auto;
}


.gvm-service-brand__layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(28px, 4vw, 40px);
  width: 100%;
}

.gvm-service-brand__content {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.gvm-service-brand__content .gvm-technology-section__title {
  text-align: left;
}

.gvm-service-brand__description {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.gvm-service-brand__media {
  width: 100%;
  margin: 0;
  min-width: 0;
}

.gvm-service-brand__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(19, 42, 77, 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(19, 42, 77, 0.12);
  object-fit: cover;
}

.gvm-service-process .gvm-process-intro__title {
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gvm-service-single .gvm-service-faq {
  overflow: visible;
}

.gvm-service-proficiency .gvm-technology-section__header,
.gvm-service-proficiency__header {
  margin-bottom: 0;
  text-align: center;
}

.gvm-service-proficiency .gvm-technologies--embedded {
  padding: 0;
  background: none;
}

.gvm-service-proficiency .gvm-technologies--embedded .gvm-technologies__slider {
  margin-top: clamp(24px, 4vw, 34px);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.gvm-service-proficiency .gvm-technologies__list {
  gap: 14px;
}

.gvm-service-proficiency .gvm-technologies--title-only .gvm-technology-card {
  width: 185px;
  min-width: 185px;
  max-width: 185px;
}

.gvm-service-proficiency .gvm-technologies--title-only .gvm-technology-card__link {
  padding: 16px 14px;
}

.gvm-service-proficiency .gvm-technologies--title-only .gvm-technology-card__title {
  font-size: 16px;
  line-height: 1.3;
}

.gvm-technologies--title-only .gvm-technology-card__link {
  gap: 0;
}

.gvm-technologies--title-only .gvm-technology-card__body {
  gap: 0;
}

.gvm-technologies--title-only .gvm-technology-card__excerpt {
  display: none;
}

/* Brochures page */
.gvm-brochure-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0 clamp(56px, 7vw, 80px);
  background: var(--gvm-white);
}

.gvm-brochure-hero__glow {
  display: none;
}

.gvm-brochure-hero__grid {
  display: none;
}

.gvm-brochure-hero > .gvm-container {
  position: relative;
  z-index: 1;
}

.gvm-brochure-hero__header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.gvm-brochure-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border: 1px solid rgba(5, 97, 157, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.06);
  color: var(--gvm-blue);
  font-family: var(--gvm-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gvm-brochure-hero__title {
  margin: 0 0 16px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.gvm-brochure-hero__intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.gvm-brochure-body {
  padding: clamp(48px, 6vw, 72px) 0 clamp(64px, 8vw, 88px);
  background: var(--gvm-cream);
}

.gvm-brochure-list {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.gvm-brochure-item {
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-width: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gvm-brochure-item:hover {
  border-color: rgba(5, 97, 157, 0.34);
  box-shadow: 0 18px 38px rgba(19, 42, 77, 0.11);
  transform: translateY(-2px);
}

.gvm-brochure-item__media {
  position: relative;
  display: flex;
  overflow: visible;
  min-width: 0;
  height: auto;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--gvm-cream);
}

.gvm-brochure-item__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
}

.gvm-brochure-item:hover .gvm-brochure-item__image {
  transform: none;
}

.gvm-brochure-item__placeholder {
  display: grid;
  width: 100%;
  min-height: 220px;
  place-items: center;
  color: var(--gvm-blue);
  font-size: 48px;
}

.gvm-brochure-item__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.gvm-brochure-item--image-right .gvm-brochure-item__content {
  padding-right: clamp(8px, 2vw, 16px);
}

.gvm-brochure-item--image-left .gvm-brochure-item__content {
  padding-left: clamp(8px, 2vw, 16px);
}

.gvm-brochure-item__title {
  margin: 0 0 14px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: var(--gvm-font-title);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.gvm-brochure-item__text {
  max-width: 520px;
  margin: 0;
  color: var(--gvm-muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
}

.gvm-brochure-item__actions {
  margin-top: clamp(20px, 3vw, 28px);
}

.gvm-brochure-item__button {
  gap: 10px;
}

.gvm-brochure-item__button-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* About Us page */
.gvm-main-content--about-us {
  background: var(--gvm-white);
}

.gvm-main-content--brochures {
  background: var(--gvm-white);
}

.gvm-about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 8vw, 72px) 0 0;
  background: var(--gvm-gradient-hero);
}

.gvm-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--gvm-gradient-hero-overlay);
}

.gvm-about-hero__glow {
  position: absolute;
  top: 34%;
  left: 50%;
  z-index: 0;
  width: min(620px, 84vw);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(5, 97, 157, 0.18) 0%,
      rgba(25, 118, 201, 0.1) 26%,
      rgba(229, 243, 255, 0.16) 62%,
      transparent 100%
    );
  filter: blur(50px);
  opacity: 0.92;
}

.gvm-about-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(5, 97, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 97, 157, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 76%);
}

.gvm-about-hero > .gvm-container {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.gvm-about-hero__header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.gvm-about-hero__title {
  margin: 0;
  font-family: var(--gvm-font-title);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gvm-about-hero__media {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  filter: drop-shadow(0px -8px 0px #05619da1);
}

.gvm-about-hero__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(220px, 38vw, 480px);
  object-fit: cover;
  object-position: center;
}

.gvm-about-story {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--gvm-cream);
}

.gvm-about-story__header {
  max-width: 920px;
  margin: 0 auto clamp(32px, 4vw, 44px);
  text-align: center;
}

.gvm-about-story__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-about-story__intro {
  max-width: 920px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-about-story__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.gvm-about-story__pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-about-story__pillar-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(5, 97, 157, 0.08);
  border-radius: 12px;
  place-items: center;
  background: linear-gradient(180deg, #f7fbff 0%, #e8f4fd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--gvm-blue);
}

.gvm-about-story__pillar-title {
  margin: 0;
  color: var(--gvm-text);
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gvm-about-story__pillar-text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
}

.gvm-about-story__stats .gvm-counters__grid {
  gap: 18px;
}

.gvm-about-story .gvm-counter {
  background: var(--gvm-white);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-main-content--about-us .gvm-counter__label {
  font-size: 15px;
}

.gvm-about-section {
  padding: clamp(56px, 7vw, 88px) 0;
}

.gvm-section-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
}

.gvm-about-section__header {
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.gvm-about-section__header--left {
  max-width: none;
  margin: 0;
  text-align: left;
}

.gvm-about-section__title {
  margin: 0 0 18px;
  background: var(--gvm-title-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gvm-about-section__intro {
  max-width: 920px;
  margin: 0 auto;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-about-section__header--left .gvm-about-section__intro {
  max-width: none;
  margin: 0;
}

.gvm-about-impact {
  background: var(--gvm-white);
}

.gvm-about-gallery {
  width: 100%;
  margin: 0 auto;
}

.gvm-about-gallery--masonry {
  columns: 3;
  column-gap: clamp(14px, 1.6vw, 18px);
}

.gvm-about-gallery__item {
  display: block;
  width: 100%;
  margin: 0 0 clamp(14px, 1.6vw, 18px);
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.gvm-about-gallery__media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.08);
}

.gvm-about-gallery__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gvm-about-gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(180deg, rgba(19, 42, 77, 0) 0%, rgb(19 42 77 / 57%) 58%, rgb(19 42 77 / 69%) 100%);
  color: var(--gvm-white);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.45;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.gvm-about-why {
  background: var(--gvm-cream);
}

.gvm-about-why .gvm-about-section__header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.gvm-about-why .gvm-about-section__intro {
  max-width: 860px;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.gvm-about-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.gvm-about-feature {
  display: flex;
  min-width: 0;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 24px) clamp(12px, 1.5vw, 16px);
  border: 1px solid rgba(19, 42, 77, 0.06);
  border-radius: 16px;
  background: var(--gvm-white);
  box-shadow: 0 6px 24px rgba(19, 42, 77, 0.06);
  text-align: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.gvm-about-feature:hover,
.gvm-about-feature:focus-within {
  border-color: rgba(5, 97, 157, 0.14);
  box-shadow: 0 10px 28px rgba(19, 42, 77, 0.08);
  transform: translateY(-2px);
}

.gvm-about-feature__icon {
  display: grid;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(5, 97, 157, 0.1);
  border-radius: 12px;
  place-items: center;
  background: rgba(229, 243, 255, 0.85);
  color: var(--gvm-blue);
}

.gvm-about-feature__title {
  margin: 0;
  color: #132a4d;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gvm-about-memories {
  --gvm-memories-gap: 14px;
  overflow: hidden;
  background: var(--gvm-white);
}

.gvm-about-memories .gvm-about-section__header {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.gvm-about-memories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gvm-memories-gap);
  padding-inline: clamp(12px, 2vw, 24px);
}

.gvm-about-memories__column {
  min-width: 0;
}

.gvm-about-memories__slider {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 52vw, 640px);
  border-radius: 18px;
}

.gvm-about-memories__track {
  display: flex;
  flex-direction: column;
  width: 100%;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.gvm-about-memories__column.is-up .gvm-about-memories__track {
  animation: gvm-about-memories-scroll-up var(--gvm-memories-duration, 28s) linear infinite;
}

.gvm-about-memories__column.is-down .gvm-about-memories__track {
  animation: gvm-about-memories-scroll-down var(--gvm-memories-duration, 28s) linear infinite;
}

.gvm-about-memories__list {
  display: flex;
  flex-direction: column;
  gap: var(--gvm-memories-gap);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gvm-about-memories__item {
  flex-shrink: 0;
  margin: 0;
}

.gvm-about-memories__card {
  margin: 0;
  line-height: 0;
}

.gvm-about-memories__media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(19, 42, 77, 0.08);
}

.gvm-about-memories__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gvm-about-memories__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 24px 10px 10px;
  background: linear-gradient(180deg, rgba(19, 42, 77, 0) 0%, rgba(19, 42, 77, 0.72) 58%, rgba(19, 42, 77, 0.88) 100%);
  color: var(--gvm-white);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}

@keyframes gvm-about-memories-scroll-up {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes gvm-about-memories-scroll-down {
  from {
    transform: translate3d(0, -50%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.gvm-about-certifications {
  background: var(--gvm-cream);
}

.gvm-about-certifications__panel {
  padding: clamp(28px, 4vw, 40px);
}

.gvm-about-certifications__panel .gvm-about-section__header {
  margin-bottom: 0;
}

.gvm-about-culture__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
  margin: clamp(18px, 2.5vw, 24px) 0 0;
  padding: 0;
  list-style: none;
}

.gvm-about-culture-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 26px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gvm-about-culture-card:hover,
.gvm-about-culture-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(5, 97, 157, 0.14);
  box-shadow: 0 12px 28px rgba(5, 97, 157, 0.08);
}

.gvm-about-culture-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(5, 97, 157, 0.08);
  border-radius: 12px;
  place-items: center;
  background: linear-gradient(180deg, #f7fbff 0%, #e8f4fd 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--gvm-blue);
}

.gvm-about-culture-card__title {
  margin: 0;
  color: var(--gvm-text);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gvm-about-culture-card__text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
}

.gvm-about-join {
  padding-bottom: clamp(64px, 8vw, 96px);
  background: var(--gvm-white);
}

.gvm-about-join__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 32px);
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: var(--gvm-cream);
  box-shadow: 0 10px 24px rgba(5, 97, 157, 0.07);
  text-align: center;
}

.gvm-about-join__copy {
  max-width: 760px;
}

.gvm-about-join__title {
  margin: 0 0 16px;
  color: #132a4d;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.gvm-about-join__text {
  margin: 0;
  color: var(--gvm-muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
}

.gvm-about-join__actions {
  display: flex;
  justify-content: center;
}

.gvm-about-join__button {
  min-width: 180px;
  justify-content: center;
}

