/* GEO优化服务落地页 - gs- 前缀，纯 CSS/SVG，无位图 */

.page-geo-service {
  --gs-navy: #0f172a;
  --gs-navy-mid: #1e3a5f;
  --gs-blue: #0052d9;
  --gs-blue-light: #3b82f6;
  --gs-bg: #f0f7ff;
  --gs-bg-alt: #f8fafc;
  --gs-text: #334155;
  --gs-text-muted: #64748b;
  --gs-border: #e8eef5;
  --gs-radius: 12px;
  --gs-shadow: 0 4px 20px rgba(0, 82, 217, 0.08);
  --gs-card-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  --gs-surface-blue: linear-gradient(135deg, #0047b8 0%, #0052d9 48%, #1a75ff 100%);
  --gs-surface-blue-shadow: 0 6px 24px rgba(0, 82, 217, 0.28);
}

.gs-page {
  background: #fff;
  color: var(--gs-text);
  font-family: "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", "Heiti SC", "Helvetica Neue", Arial, system-ui, sans-serif;
}

.gs-breadcrumb {
  padding: 1rem 0 0.5rem;
}

.gs-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--gs-text-muted);
}

.gs-breadcrumb__list a {
  color: var(--gs-text-muted);
  text-decoration: none;
}

.gs-breadcrumb__list a:hover {
  color: var(--gs-blue);
}

.gs-breadcrumb__sep {
  color: #cbd5e1;
}

.gs-breadcrumb__current {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gs-navy);
}

.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.gs-btn--primary {
  background: linear-gradient(135deg, #0066ff 0%, var(--gs-blue) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 82, 217, 0.35);
}

.gs-btn--primary:hover {
  background: linear-gradient(135deg, #1a75ff 0%, #0066ff 100%);
}

.gs-btn--outline {
  background: #fff;
  color: var(--gs-blue);
  border-color: var(--gs-blue);
}

.gs-btn--pill {
  background: #fff;
  color: var(--gs-blue);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gs-btn--pill:hover {
  background: #f0f7ff;
}

.gs-btn--outline:hover {
  background: var(--gs-bg);
}

.gs-btn--outline-dark {
  background: transparent;
  color: var(--gs-navy);
  border-color: var(--gs-navy);
}

.gs-btn--outline-dark:hover {
  background: var(--gs-bg);
}

.gs-btn--white {
  background: #fff;
  color: var(--gs-blue);
}

.gs-btn--white:hover {
  background: #f1f5f9;
}

.gs-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.gs-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.gs-link {
  color: var(--gs-blue);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.gs-link:hover {
  text-decoration: underline;
}

.gs-highlight {
  color: var(--gs-blue);
}

/* ── Hero ── */
.gs-hero {
  position: relative;
  background: linear-gradient(180deg, #f3f8ff 0%, #fafcff 45%, #fff 100%);
  padding-bottom: 2rem;
  overflow: hidden;
}

.gs-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(0, 82, 217, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 100% 5%, rgba(0, 82, 217, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 85% 95%, rgba(59, 130, 246, 0.05) 0%, transparent 55%);
}

.gs-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 0 1.75rem;
}

.gs-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.gs-hero__content {
  max-width: 36rem;
}

.gs-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  background: var(--gs-surface-blue);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: var(--gs-surface-blue-shadow);
}

.gs-hero__brand-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-hero__title {
  margin: 0 0 1.375rem;
}

.gs-hero__title-line {
  display: block;
  font-size: clamp(2rem, 4.8vw, 2.875rem);
  font-weight: 800;
  line-height: 1.28;
  color: #1d2129;
  letter-spacing: -0.025em;
}

.gs-hero__title .gs-highlight {
  color: var(--gs-blue);
  font-weight: 800;
}

.gs-hero__title-line--sub {
  font-size: clamp(1.625rem, 3.8vw, 2.375rem);
  font-weight: 700;
  color: #1d2129;
  margin-top: 0.2rem;
  letter-spacing: -0.015em;
}

.gs-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.375rem;
}

.gs-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.375rem 0.8rem;
  background: #f0f5ff;
  border: 1px solid #d6e4ff;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--gs-blue);
  font-weight: 600;
  line-height: 1.3;
}

.gs-tag__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: var(--gs-blue);
}

.gs-hero__lead {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #4e5969;
  margin: 0 0 1.625rem;
  max-width: 34rem;
}

.gs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 0;
}

.gs-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.gs-stat-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.gs-stat-card__icon {
  flex-shrink: 0;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-stat-card__icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: var(--gs-blue);
}

.gs-stat-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-size: 0.6875rem;
  color: #86909c;
  line-height: 1.35;
}

.gs-stat-card__text strong {
  font-size: 0.875rem;
  color: #1d2129;
  font-weight: 700;
}

/* Hero visual (right column) */
.gs-hero__visual {
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
}

.gs-hero__visual-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 860 / 786;
  object-fit: contain;
  object-position: center;
}

/* Process bar */
.gs-process-bar {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--gs-surface-blue);
  color: #fff;
  padding: 1.125rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--gs-surface-blue-shadow);
}

.gs-process-bar__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.gs-process-bar__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.125rem 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
}

.gs-process-bar__steps > li:not(.gs-process-bar__arrow) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 4.25rem;
  text-align: center;
}

.gs-process-bar__steps > li:not(.gs-process-bar__arrow) span:last-child {
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.82;
  line-height: 1.35;
  white-space: nowrap;
}

.gs-process-bar__steps strong {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.gs-process-bar__icon {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
}

.gs-process-bar__icon svg {
  width: 1.0625rem;
  height: 1.0625rem;
  stroke: #fff;
}

.gs-process-bar__arrow {
  display: flex;
  align-items: center;
  align-self: flex-start;
  padding-top: 0.7rem;
  opacity: 0.42;
}

.gs-process-bar__arrow svg {
  width: 0.8125rem;
  height: 0.8125rem;
  stroke: #fff;
}

.gs-process-bar__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  flex-shrink: 0;
}

.gs-process-bar__tagline {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.92;
  margin: 0;
  letter-spacing: 0.01em;
}

.gs-section {
  padding: 3.5rem 0;
}

.gs-section:nth-child(even) {
  background: var(--gs-bg-alt);
}

.gs-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gs-navy);
  text-align: center;
  margin: 0 0 1rem;
}

.gs-section__lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gs-text);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.gs-section__lead--center {
  text-align: center;
}

/* ── About GEO ── */
.gs-about {
  position: relative;
  background: linear-gradient(180deg, #f3f8ff 0%, #f8fbff 45%, #fff 100%);
  overflow: hidden;
  padding: 3rem 0;
}

.gs-about::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 22rem);
  height: min(55%, 18rem);
  background-image: radial-gradient(circle, rgba(0, 82, 217, 0.14) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  mask-image: radial-gradient(ellipse 90% 90% at 100% 100%, #000 15%, transparent 72%);
  pointer-events: none;
}

.gs-about .container {
  position: relative;
  z-index: 1;
}

.gs-about .gs-section__title {
  font-size: clamp(2.125rem, 4.8vw, 3rem);
  font-weight: 800;
  color: #002b5b;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.gs-about .gs-section__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  max-width: min(62rem, 94%);
  margin: 0 auto 2.25rem;
}

.gs-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}

.gs-about__highlights {
  margin-top: 0.25rem;
}

.gs-about__text {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  min-width: 0;
}

.gs-about__subtitle {
  font-size: clamp(1.3125rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--gs-blue);
  margin: 0;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.gs-about__intro {
  font-size: 1rem;
  line-height: 1.95;
  color: #374151;
  margin: 0;
}

.gs-about__desc {
  font-size: 1rem;
  line-height: 1.95;
  color: #374151;
  margin: 0;
}

.gs-about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0.5rem 0 0;
}

.gs-about__feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.125rem;
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 43, 91, 0.05);
}

.gs-about__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #0052d9);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 82, 217, 0.22);
}

.gs-about__feature-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke: #fff;
}

.gs-about__feature-body {
  flex: 1;
  min-width: 0;
}

.gs-about__feature-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.gs-about__feature-body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #64748b;
}

.gs-about__dashboard {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
}

.gs-about__dashboard-picture {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}

.gs-about__dashboard-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}

/* Bottom highlights */
.gs-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0;
  background: transparent;
  border: none;
}

.gs-highlight-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: linear-gradient(135deg, #f5f9ff 0%, #f0f6ff 100%);
  border-radius: 12px;
}

.gs-highlight-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #4d9fff 0%, #0052d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 82, 217, 0.28);
}

.gs-highlight-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #fff;
}

.gs-highlight-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gs-highlight-card__text strong {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gs-blue);
  letter-spacing: -0.01em;
}

.gs-highlight-card__text span {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}

/* ── Our Services ── */
.gs-services {
  background: #fff;
  padding: 3.5rem 0 4rem;
}

.gs-services__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gs-services__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gs-navy);
  margin: 0 0 0.75rem;
}

.gs-services__title-line {
  display: block;
  width: 2.5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--gs-blue), #60a5fa);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.gs-services__lead {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gs-text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.gs-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.gs-service-card {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 82, 217, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.gs-service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 82, 217, 0.12);
  transform: translateY(-3px);
}

.gs-service-card__visual {
  position: relative;
  aspect-ratio: 702 / 426;
  background: linear-gradient(180deg, #f5f9ff 0%, #eef4ff 50%, #f8fbff 100%);
  border-bottom: 1px solid #f0f4f8;
  overflow: hidden;
  margin: 0;
}

.gs-service-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gs-service-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gs-navy);
  margin: 0;
  padding: 1rem 1.25rem 0.5rem;
  line-height: 1.4;
}

.gs-service-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gs-blue);
  background: #eff6ff;
  border-radius: 4px;
  vertical-align: middle;
}

.gs-service-card p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--gs-text-muted);
  margin: 0;
  padding: 0 1.25rem;
  flex: 1;
}

.gs-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0.875rem 1.25rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gs-blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.gs-service-card__link span {
  transition: transform 0.2s;
}

.gs-service-card__link:hover {
  color: #0047b8;
}

.gs-service-card__link:hover span {
  transform: translateX(3px);
}

/* ── Core Advantages ── */
.gs-advantages {
  background: linear-gradient(180deg, #f5f8ff 0%, #eef4ff 40%, #f8fafc 100%);
  padding: 3.5rem 0 4rem;
}

.gs-advantages__header {
  text-align: center;
  margin-bottom: 2rem;
}

.gs-advantages__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gs-blue);
  margin: 0 0 1rem;
}

.gs-advantages__title-deco {
  display: inline-flex;
  gap: 0.2rem;
  align-items: center;
}

.gs-advantages__title-deco i {
  display: block;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gs-blue);
  transform: rotate(45deg);
  border-radius: 1px;
}

.gs-advantages__title-deco i:last-child {
  width: 0.25rem;
  height: 0.25rem;
  opacity: 0.6;
}

.gs-advantages__lead {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gs-text-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.gs-advantages__lead strong {
  color: var(--gs-blue);
  font-weight: 600;
}

.gs-advantages__panel {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #dce8f8;
  box-shadow: 0 8px 40px rgba(0, 82, 217, 0.08);
  padding: 1.75rem 1.5rem 2rem;
}

.gs-advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  border-radius: 14px;
  border: 1px solid #e0edff;
}

.gs-advantages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.gs-advantages__list li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.gs-advantages__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, var(--gs-blue) 100%);
  box-shadow: 0 4px 14px rgba(0, 82, 217, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-advantages__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: #fff;
}

.gs-advantages__list strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--gs-blue);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.gs-advantages__list p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gs-text-muted);
  line-height: 1.65;
}

/* Comparison card */
.gs-comparison {
  background: #fff;
  border: 1px solid #c7dcff;
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 82, 217, 0.06);
  overflow: hidden;
}

.gs-comparison__figure {
  margin: 0;
}

.gs-comparison__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 572;
  object-fit: contain;
  object-position: center;
}

/* Service flow (6 steps) */
.gs-flow {
  border-top: 1px solid #e8f0fe;
  padding-top: 1.5rem;
}

.gs-flow__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gs-navy);
  text-align: center;
  margin: 0 0 1.25rem;
}

.gs-flow__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gs-flow__step {
  flex: 1 1 10rem;
  max-width: 11rem;
  padding: 0.875rem;
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 82, 217, 0.05);
}

.gs-flow__step-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.gs-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.35rem;
  background: linear-gradient(135deg, #3b82f6, var(--gs-blue));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
}

.gs-flow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-flow__step-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--gs-blue);
}

.gs-flow__step strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gs-blue);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.gs-flow__step p {
  margin: 0;
  font-size: 0.65rem;
  color: var(--gs-text-muted);
  line-height: 1.55;
}

.gs-flow__arrow {
  display: none;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  color: #93c5fd;
}

.gs-flow__arrow svg {
  width: 1rem;
  height: 1rem;
  stroke: #93c5fd;
}

.gs-cases {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.gs-cases__head {
  position: relative;
  text-align: center;
  margin-bottom: 2.25rem;
}

.gs-cases__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  margin: 0;
  font-size: clamp(3.5rem, 11vw, 6.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(0, 82, 217, 0.055);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.gs-cases__head .gs-section__title,
.gs-cases__head .gs-section__lead {
  position: relative;
  z-index: 1;
}

.gs-cases .gs-section__title {
  color: #002b5b;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.875rem;
}

.gs-cases .gs-section__lead {
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #64748b;
}

.gs-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-bottom: 1.125rem;
}

.gs-case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.gs-case-card__body {
  padding: 1.125rem 1.125rem 0.875rem;
  flex: 1;
}

.gs-case-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.gs-case-card__head-text {
  min-width: 0;
  flex: 1;
}

.gs-case-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.5rem;
}

.gs-case-card__title-row strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1d2129;
  line-height: 1.35;
}

.gs-case-card__logo {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #0052d9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 82, 217, 0.2);
}

.gs-case-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  padding: 0.15rem 0.5rem;
  background: #eef4ff;
  color: var(--gs-blue);
  border-radius: 999px;
  font-weight: 500;
  line-height: 1.3;
}

.gs-case-card__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 0.875rem;
}

.gs-case-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem 0.5rem;
}

.gs-case-card__metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.gs-case-card__metric-label {
  font-size: 0.625rem;
  color: #86909c;
  line-height: 1.3;
  white-space: nowrap;
}

.gs-case-card__metric-value {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #1d2129;
  line-height: 1.35;
  white-space: nowrap;
}

.gs-case-card__metric-growth {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gs-blue);
  line-height: 1.3;
}

.gs-case-card__result {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(180deg, #f0f6ff 0%, #eef4ff 100%);
  border-top: 1px solid #e0edff;
  margin: 0;
}

.gs-case-card__result-label {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gs-blue);
  line-height: 1.45;
}

.gs-case-card__result-items {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #4e5969;
}

.gs-cases__footer-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--gs-surface-blue);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--gs-surface-blue-shadow);
}

.gs-cases__footer-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-width: 0;
}

.gs-cases__footer-item {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  min-width: 0;
}

.gs-cases__footer-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-cases__footer-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke: #fff;
}

.gs-cases__footer-text {
  min-width: 0;
}

.gs-cases__footer-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.2rem;
}

.gs-cases__footer-text span {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  opacity: 0.92;
}

.gs-cases__footer-cta {
  align-self: center;
  flex-shrink: 0;
  padding: 0.625rem 1.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

/* ── Customer Reviews ── */
.gs-reviews {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 50%, #f5f9ff 100%);
  padding: 3.5rem 0 3rem;
}

.gs-reviews__wave {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.gs-reviews__wave svg {
  width: 100%;
  height: 100%;
}

.gs-reviews__wave--tl {
  top: 0;
  left: 0;
  width: 12rem;
  height: 7rem;
}

.gs-reviews__wave--br {
  bottom: 0;
  right: 0;
  width: 14rem;
  height: 8rem;
}

.gs-reviews .container {
  position: relative;
  z-index: 1;
}

.gs-reviews__header {
  text-align: center;
  margin-bottom: 2rem;
}

.gs-reviews__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gs-navy);
  margin: 0 0 0.75rem;
}

.gs-reviews__title-line {
  display: block;
  width: 2.5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--gs-blue), #60a5fa);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.gs-reviews__lead {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gs-text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

.gs-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.gs-review-card {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1.5rem;
  margin: 0;
  box-shadow: 0 4px 24px rgba(0, 82, 217, 0.07);
  display: flex;
  flex-direction: column;
}

.gs-review-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f0f4f8;
}

.gs-review-card__avatar {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0edff;
  box-shadow: 0 2px 8px rgba(0, 82, 217, 0.1);
}

.gs-review-card__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.gs-review-card__meta strong {
  display: block;
  color: var(--gs-blue);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.gs-review-card__meta > span {
  display: block;
  font-size: 0.75rem;
  color: var(--gs-text-muted);
  margin-bottom: 0.4rem;
}

.gs-review-card__stars svg {
  width: 4.5rem;
  height: 0.875rem;
  display: block;
}

.gs-review-card__body {
  position: relative;
  flex: 1;
  padding: 0.25rem 0.5rem 0;
}

.gs-review-card__quote {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #bfdbfe;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}

.gs-review-card__quote--open {
  top: -0.25rem;
  left: -0.15rem;
}

.gs-review-card__quote--close {
  bottom: -1rem;
  right: 0;
  font-size: 2rem;
}

.gs-review-card__body p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.5rem 0.75rem 0.25rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--gs-text);
  text-align: left;
}

.gs-reviews__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.gs-reviews__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d1d5db;
  transition: background 0.2s;
}

.gs-reviews__dot.is-active {
  background: var(--gs-blue);
  width: 0.625rem;
  height: 0.625rem;
}

/* ── Bottom CTA ── */
.gs-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0047b8 0%, #0052d9 45%, #1a6fe8 75%, #0052d9 100%);
  color: #fff;
  padding: 4rem 0 4.5rem;
}

.gs-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gs-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.gs-cta__glow--br {
  bottom: -28%;
  right: -5%;
  width: 58%;
  height: 92%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.38) 0%, rgba(191, 219, 254, 0.22) 38%, rgba(147, 197, 253, 0.1) 55%, transparent 72%);
  filter: blur(48px);
}

.gs-cta__glow--bl {
  bottom: -38%;
  left: -9%;
  width: 48%;
  height: 72%;
  background: radial-gradient(ellipse, rgba(147, 197, 253, 0.28) 0%, rgba(96, 165, 250, 0.12) 45%, transparent 68%);
  filter: blur(42px);
}

.gs-cta__streak {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58%;
  opacity: 0.88;
}

.gs-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gs-cta__title {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1.125rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.gs-cta__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  max-width: 38rem;
  margin: 0 0 2rem;
}

.gs-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gs-btn--cta-primary {
  background: #fff;
  color: var(--gs-blue);
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  min-width: 9rem;
}

.gs-btn--cta-primary:hover {
  background: #f0f7ff;
  color: #0047b8;
}

.gs-btn--cta-outline {
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  min-width: 9rem;
}

.gs-btn--cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

@media (min-width: 768px) {
  .gs-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .gs-about__features { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gs-highlights { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gs-services__grid { grid-template-columns: repeat(2, 1fr); }
  .gs-cases__grid { grid-template-columns: repeat(2, 1fr); }
  .gs-reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .gs-flow__arrow { display: flex; }
  .gs-case-card__metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.375rem; }

  .gs-cases__footer-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: center;
    column-gap: 1rem;
    row-gap: 0;
    padding: 0.875rem 1.25rem;
  }

  .gs-cases__footer-items {
    display: contents;
  }

  .gs-cases__footer-cta {
    grid-column: 4;
    justify-self: end;
  }

  .gs-process-bar {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.125rem 1.5rem;
  }

  .gs-process-bar__title {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.9375rem;
  }

  .gs-process-bar__steps {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
  }

  .gs-process-bar__cta {
    grid-column: 2;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    gap: 0.875rem;
  }

  .gs-process-bar__tagline br { display: none; }
}

@media (min-width: 1024px) {
  .gs-hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: auto auto;
    gap: 2rem 2.5rem;
    align-items: start;
  }

  .gs-hero__content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .gs-hero__visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: none;
    margin: 0;
    align-self: center;
  }

  .gs-hero__stats {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
    margin-top: 0;
    width: 100%;
  }

  .gs-process-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 0 1.75rem;
    padding: 1rem 1.625rem 1rem 1.375rem;
  }

  .gs-process-bar__title {
    grid-column: 1;
    grid-row: 1;
    font-size: 1rem;
    padding-right: 0.25rem;
  }

  .gs-process-bar__steps {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0 0.125rem;
  }

  .gs-process-bar__steps > li:not(.gs-process-bar__arrow) {
    min-width: 5.25rem;
  }

  .gs-process-bar__cta {
    grid-column: 3;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding-left: 0.5rem;
  }

  .gs-process-bar__tagline {
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .gs-about__grid {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
    grid-template-rows: auto auto;
    column-gap: 2.25rem;
    row-gap: 0.75rem;
    align-items: start;
  }

  .gs-about__text {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .gs-about__subtitle {
    font-size: 1.625rem;
    line-height: 1.5;
  }

  .gs-about__intro,
  .gs-about__desc {
    font-size: 1.0625rem;
    line-height: 2;
  }

  .gs-about__dashboard {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .gs-about__highlights {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.25rem;
  }

  .gs-about__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.375rem;
  }

  .gs-about__feature-card {
    padding: 1.25rem 1.125rem;
    min-height: 6.5rem;
  }

  .gs-about__feature-body strong {
    font-size: 1.0625rem;
    margin-bottom: 0.5625rem;
  }

  .gs-about__feature-body p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }

  .gs-about__dashboard-img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: top center;
  }

  .gs-highlights { grid-template-columns: repeat(4, 1fr); gap: 0.875rem; }
  .gs-advantages__grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 2rem; }
  .gs-advantages__panel { padding: 2rem 2rem 2.25rem; }
  .gs-flow__step { flex: 1 1 8.5rem; max-width: none; }
  .gs-flow__arrow { display: flex; }
  .gs-services__grid { grid-template-columns: repeat(3, 1fr); }
  .gs-cases__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .gs-case-card__body { padding: 1.125rem 1rem 0.75rem; }
  .gs-case-card__title-row strong { font-size: 0.875rem; }
  .gs-case-card__desc { font-size: 0.75rem; margin-bottom: 0.75rem; }
  .gs-case-card__metric-label { font-size: 0.5625rem; }
  .gs-case-card__metric-value,
  .gs-case-card__metric-growth { font-size: 0.625rem; }
  .gs-case-card__result { padding: 0.5625rem 0.875rem; }
  .gs-case-card__result-label,
  .gs-case-card__result-items { font-size: 0.625rem; }

  .gs-cases__footer-bar {
    padding: 0.8125rem 1.375rem;
    column-gap: 1.125rem;
    border-radius: 12px;
  }

  .gs-cases__footer-icon {
    width: 2.375rem;
    height: 2.375rem;
  }

  .gs-cases__footer-text strong {
    font-size: 0.8125rem;
    margin-bottom: 0.15rem;
  }

  .gs-cases__footer-text span {
    font-size: 0.625rem;
    line-height: 1.4;
  }

  .gs-cases__footer-cta {
    padding: 0.5625rem 1.375rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 767px) {
  .gs-about__dashboard {
    margin-top: 0.25rem;
  }
}
