:root {
  --gs-blue: #257cff;
  --gs-green: #73d504;
  --gs-navy: #191f36;
  --gs-bg-primary: #f5f7fa;
  --gs-bg-secondary: #eef2f7;
  --gs-border: #d9e1ea;
  --gs-text-secondary: #5b6475;
  --gs-text-muted: #7e8798;
  --gs-white: #ffffff;
  --gs-dark: #0f172a;
  --shadow-soft: 0 22px 60px rgba(25, 31, 54, 0.1);
  --shadow-card: 0 14px 36px rgba(25, 31, 54, 0.08);
  --radius-lg: 8px;
  --radius-sm: 6px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gs-navy);
  background:
    radial-gradient(circle at 76% 6%, rgba(37, 124, 255, 0.13), transparent 28%),
    radial-gradient(circle at 18% 38%, rgba(115, 213, 4, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 48%, #eef5ff 100%);
  font-family: "Plus Jakarta Sans", "Segoe UI", Inter, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: inset 0 -1px 0 rgba(217, 225, 234, 0.84);
}

.brand img {
  width: 172px;
  height: auto;
}

.nav-links,
.header-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  justify-content: center;
  gap: 28px;
}

.nav-links a,
.footer-links a,
.footer-links button {
  color: var(--gs-text-secondary);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-links button:hover {
  color: var(--gs-blue);
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: inherit;
  cursor: pointer;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: var(--radius-sm);
  color: var(--gs-navy);
  background: rgba(255, 255, 255, 0.66);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.language-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: rgba(37, 124, 255, 0.35);
  color: var(--gs-blue);
  background: rgba(37, 124, 255, 0.07);
}

.language-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 168px;
  padding: 7px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(25, 31, 54, 0.14);
}

.language-popover[hidden] {
  display: none;
}

.language-popover button {
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--gs-text-secondary);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.language-popover button:hover,
.language-popover button[aria-checked="true"] {
  color: var(--gs-blue);
  background: rgba(37, 124, 255, 0.08);
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--gs-white);
  background: var(--gs-blue);
  box-shadow: 0 10px 24px rgba(37, 124, 255, 0.24);
}

.button-secondary,
.button-ghost {
  border-color: rgba(37, 124, 255, 0.64);
  color: var(--gs-navy);
  background: rgba(255, 255, 255, 0.34);
}

.button-ghost {
  min-height: 38px;
  color: var(--gs-blue);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gs-blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.text-link::after {
  content: " ->";
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
  gap: 42px;
  align-items: center;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
  padding: 86px max(20px, calc((100vw - 1180px) / 2)) 56px;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 -4px;
  z-index: -1;
  width: min(620px, 58%);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: -42px 0 -54px 0;
  z-index: -2;
  content: "";
  background: url("../images/hero-ai-platform.png") center / cover no-repeat;
  opacity: 0.98;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  mask-composite: intersect;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gs-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.65vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h1::first-line {
  color: var(--gs-navy);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.prose,
.cta-section p {
  color: var(--gs-text-secondary);
  font-size: 1.05rem;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: 1.17rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.trusted {
  padding: 34px 0;
  border-block: 1px solid rgba(217, 225, 234, 0.58);
  background: rgba(246, 249, 254, 0.78);
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
}

.service-page-hero::after {
  position: absolute;
  inset: 24px -80px auto auto;
  z-index: -1;
  width: min(620px, 54vw);
  height: 420px;
  content: "";
  border-radius: 48% 52% 42% 58% / 54% 44% 56% 46%;
  background:
    radial-gradient(circle at 42% 42%, rgba(37, 124, 255, 0.18), transparent 38%),
    radial-gradient(circle at 72% 62%, rgba(115, 213, 4, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(235, 244, 255, 0.42));
  filter: blur(10px);
}

.service-page-hero h1 {
  max-width: 760px;
}

.service-page-hero .hero-lede {
  max-width: 760px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 88px;
}

.service-main-panel,
.service-side-panel {
  border: 1px solid rgba(217, 225, 234, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.service-main-panel {
  padding: 34px;
}

.service-side-panel {
  position: sticky;
  top: 86px;
  padding: 28px;
}

.service-section + .service-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(217, 225, 234, 0.72);
}

.service-section p,
.service-list li {
  color: var(--gs-text-secondary);
}

.service-feature-image {
  overflow: hidden;
  margin: 8px 0 34px;
  border: 1px solid rgba(217, 225, 234, 0.74);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.service-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-kicker {
  max-width: 780px;
  color: var(--gs-text-secondary);
  font-size: 1.28rem;
  line-height: 1.65;
}

.service-section .lead {
  color: var(--gs-navy);
  font-size: 1.18rem;
  line-height: 1.7;
}

.service-quote {
  margin: 34px 0;
  border-left: 4px solid var(--gs-blue);
  padding: 4px 0 4px 22px;
  color: var(--gs-navy);
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.45;
}

.service-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.service-story-grid article {
  border: 1px solid rgba(217, 225, 234, 0.74);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: rgba(246, 249, 254, 0.78);
}

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

.service-story-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

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

.service-pill-list span {
  border: 1px solid rgba(37, 124, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gs-blue);
  background: rgba(37, 124, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-side-panel h2 {
  font-size: 1.24rem;
}

.service-side-panel .button {
  width: 100%;
  margin-top: 18px;
}

.article-page {
  padding-bottom: 96px;
}

.article-hero {
  max-width: 900px;
  padding: 92px 0 44px;
}

.article-hero h1 {
  max-width: 860px;
}

.article-meta {
  margin-bottom: 18px;
  color: var(--gs-text-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: 46px;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-body p {
  color: var(--gs-text-secondary);
  font-size: 1.08rem;
  line-height: 1.82;
}

.article-body h2 {
  margin-top: 46px;
  font-size: clamp(1.7rem, 3vw, 2.42rem);
}

.article-body h3 {
  margin-top: 28px;
}

.article-body .lead {
  color: var(--gs-navy);
  font-size: 1.28rem;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--gs-text-secondary);
}

.article-aside {
  position: sticky;
  top: 86px;
  border-left: 1px solid rgba(217, 225, 234, 0.82);
  padding-left: 24px;
}

.article-aside strong {
  display: block;
  margin-bottom: 12px;
}

.article-aside a {
  display: block;
  margin: 10px 0;
  color: var(--gs-text-secondary);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-aside .button {
  display: inline-flex;
  width: 100%;
  margin-top: 18px;
  color: var(--gs-white);
  font-size: 0.78rem;
  text-align: center;
  white-space: normal;
}

.article-callout {
  margin: 36px 0;
  border: 1px solid rgba(37, 124, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--gs-navy);
  background: rgba(37, 124, 255, 0.07);
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1.5;
}

.article-image {
  overflow: hidden;
  margin: 10px 0 38px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.trusted-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
}

.trusted h2 {
  margin-bottom: 0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trusted-label {
  margin: 0 0 2px;
  color: var(--gs-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trusted-logos {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.logo-marquee {
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  animation: logo-scroll 48s linear infinite;
}

.logo-track span {
  display: grid;
  width: 142px;
  min-height: 54px;
  flex: 0 0 auto;
  place-items: center;
}

.logo-track span.logo-dark,
.company-grid .logo-dark {
  width: auto;
  min-height: auto;
  border-radius: 6px;
  padding: 8px 12px;
  background: #111827;
}

.logo-track img,
.company-grid img {
  max-width: 132px;
  max-height: 34px;
  opacity: 0.78;
  object-fit: contain;
}

.logo-track img.logo-wide,
.company-grid img.logo-wide {
  max-width: 154px;
  max-height: 38px;
}

.logo-track img.logo-tall,
.company-grid img.logo-tall {
  max-width: 90px;
  max-height: 46px;
}

.more-link {
  border: 0;
  color: var(--gs-blue);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.company-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px 30px;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 225, 234, 0.7);
}

.company-panel[hidden] {
  display: none;
}

.company-panel h3 {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

.company-panel-heading {
  grid-row: span 2;
}

.company-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-filters button {
  min-height: 34px;
  border: 1px solid var(--gs-border);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--gs-text-secondary);
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.company-filters button.is-active {
  border-color: rgba(37, 124, 255, 0.36);
  color: var(--gs-blue);
  background: rgba(37, 124, 255, 0.09);
}

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

.company-grid article {
  display: grid;
  min-height: 96px;
  place-items: center;
  border: 1px solid rgba(217, 225, 234, 0.7);
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.64);
}

.company-grid article.is-hidden {
  display: none;
}

.company-grid span {
  margin-top: 8px;
  color: var(--gs-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.content-band {
  border-block: 1px solid rgba(217, 225, 234, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.94));
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  padding: 92px 0;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  padding-top: 96px;
  text-align: center;
}

.section-heading.align-left {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.service-card a::after,
.product-card a::after {
  content: " ->";
}

.card-grid {
  display: grid;
  gap: 18px;
  padding-bottom: 100px;
}

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

.service-card,
.product-card,
.expertise-item {
  border: 1px solid rgba(217, 225, 234, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 292px;
  padding: 34px 30px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.78)),
    var(--gs-white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(25, 31, 54, 0.12);
}

.service-card p,
.product-card p,
.expertise-item span {
  color: var(--gs-text-secondary);
  overflow-wrap: anywhere;
}

.icon-chip {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--gs-white);
  background: linear-gradient(135deg, var(--gs-blue), #4ba3ff);
  font-weight: 900;
}

.icon-chip.green {
  background: linear-gradient(135deg, #9aea62, var(--gs-green));
}

.app-window-icon {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 7px 1fr 1fr;
  gap: 3px;
  padding: 11px;
  place-items: stretch;
  background: linear-gradient(135deg, var(--gs-blue), #4ba3ff);
}

.app-window-icon i {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.app-window-icon i:first-child {
  grid-column: 1 / -1;
  height: 7px;
  background: rgba(255, 255, 255, 0.72);
}

.service-card a,
.product-card a {
  color: var(--gs-blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 96px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  min-height: 172px;
  overflow: hidden;
  padding: 34px 30px;
  background:
    linear-gradient(135deg, rgba(37, 124, 255, 0.06), rgba(115, 213, 4, 0.04)),
    rgba(255, 255, 255, 0.92);
}

.product-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 170px;
  height: 70px;
  content: "";
  border-radius: 100px 0 0 0;
  background: linear-gradient(135deg, rgba(37, 124, 255, 0.08), rgba(37, 124, 255, 0.22));
  transform: rotate(-18deg);
}

.product-card p {
  max-width: 720px;
  margin-bottom: 0;
}

.product-logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(217, 225, 234, 0.72);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(25, 31, 54, 0.06);
}

.product-logo-wide {
  width: 112px;
}

.product-logo img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.product-logo-wide img {
  max-width: 92px;
  max-height: 42px;
}

.product-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--gs-blue);
  background: rgba(37, 124, 255, 0.1);
  font-weight: 900;
  font-size: 1.45rem;
}

.product-icon.green {
  color: #299400;
  background: rgba(115, 213, 4, 0.12);
}

.product-icon.blue {
  color: var(--gs-blue);
  background: rgba(37, 124, 255, 0.1);
}

.expertise-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.95), rgba(235, 244, 255, 0.92)),
    var(--gs-bg-primary);
}

.expertise-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.expertise-split h2 {
  max-width: 620px;
  font-size: clamp(2.55rem, 4vw, 4.65rem);
  line-height: 0.98;
}

.section-heading.align-left .eyebrow,
.expertise-split .eyebrow {
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 900;
}

.expertise-split p {
  max-width: 560px;
  color: var(--gs-text-secondary);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-row span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.feature-row strong {
  font-size: 0.9rem;
}

.feature-row small {
  color: var(--gs-text-secondary);
  font-weight: 600;
  line-height: 1.35;
}

.expertise-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: transparent;
  transform: scale(1.08);
  transform-origin: center right;
}

.expertise-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(246, 249, 254, 0.98) 0%, rgba(246, 249, 254, 0) 24%, rgba(246, 249, 254, 0) 76%, rgba(238, 245, 255, 0.96) 100%),
    linear-gradient(180deg, rgba(246, 249, 254, 0.98) 0%, rgba(246, 249, 254, 0) 22%, rgba(246, 249, 254, 0) 78%, rgba(246, 249, 254, 0.96) 100%);
  pointer-events: none;
}

.expertise-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.88;
  filter: drop-shadow(0 28px 46px rgba(37, 124, 255, 0.12));
  mix-blend-mode: multiply;
  mask-image:
    radial-gradient(ellipse at 58% 52%, #000 0 38%, rgba(0, 0, 0, 0.72) 54%, transparent 74%),
    linear-gradient(90deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(ellipse at 58% 52%, #000 0 38%, rgba(0, 0, 0, 0.72) 54%, transparent 74%),
    linear-gradient(90deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}

.industry-tags span {
  border: 1px solid var(--gs-border);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--gs-text-secondary);
  background: var(--gs-bg-primary);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin-top: 96px;
  margin-bottom: 96px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--gs-navy);
  background:
    linear-gradient(135deg, rgba(37, 124, 255, 0.12), rgba(115, 213, 4, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 244, 255, 0.82));
  box-shadow: var(--shadow-soft);
}

.cta-section .eyebrow,
.cta-section p {
  color: var(--gs-text-secondary);
}

.cta-section h2 {
  max-width: 740px;
}

.cta-section p {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--gs-border);
}

.site-footer img {
  width: 168px;
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--gs-text-muted);
  font-size: 0.92rem;
}

.footer-address {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
  color: var(--gs-text-muted);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-address a {
  color: var(--gs-blue);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(25, 31, 54, 0.18);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-modal h2 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.cookie-banner p,
.cookie-modal p,
.cookie-choice span {
  margin: 0;
  color: var(--gs-text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.text-link-button {
  border: 0;
  color: var(--gs-blue);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 18, 35, 0.32);
}

.cookie-modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--gs-white);
  box-shadow: 0 30px 90px rgba(10, 18, 35, 0.26);
}

.cookie-modal-panel .cookie-actions {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 225, 234, 0.78);
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gs-border);
  border-radius: var(--radius-sm);
  color: var(--gs-text-secondary);
  background: var(--gs-white);
  font-size: 1.2rem;
  cursor: pointer;
}

.cookie-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: var(--radius-sm);
  background: rgba(246, 249, 254, 0.78);
}

.cookie-choice strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-choice input {
  width: 20px;
  height: 20px;
  accent-color: var(--gs-blue);
}

.cookie-status {
  color: var(--gs-blue);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .trusted-inner,
  .company-panel,
  .split-section,
  .cta-section,
  .expertise-split,
  .service-detail-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 62px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .card-grid.three,
  .product-list,
  .company-grid,
  .feature-row,
  .service-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-section {
    align-items: start;
  }

  .service-side-panel,
  .article-aside {
    position: static;
  }

  .article-aside {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    padding: 12px 14px 8px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    max-width: 420px;
    font-size: clamp(2.18rem, 10.8vw, 3.25rem);
    line-height: 1.1;
  }

  .hero-actions,
  .footer-links,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button,
  .cookie-actions .text-link-button {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 46px;
    white-space: normal;
  }

  .hero-visual {
    min-height: 360px;
  }

  .card-grid.three,
  .product-list,
  .company-grid,
  .feature-row,
  .service-story-grid {
    grid-template-columns: 1fr;
  }

  .trusted-logos {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .more-link {
    justify-self: start;
  }

  .split-section,
  .section-heading {
    padding-top: 70px;
  }

  .split-section {
    gap: 18px;
    padding-bottom: 70px;
  }

  .product-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin-block: 70px;
    padding: 28px;
  }
}
