:root {
  --color-gs-blue: #1a73e8;
  --color-gs-blue-light: #4285f4;
  --color-gs-blue-soft: #e8f0fe;
  --color-gs-accent: #34a853;
  --color-gs-surface: #f8f9fa;
  --color-gs-ink: #202124;
  --shadow-soft: 0 8px 28px rgba(26, 115, 232, 0.10);
  --shadow-card: 0 2px 10px rgba(32, 33, 36, 0.05);
  --radius-lg: 1.5rem;
}


/* ---------- Header ---------- */
.gs-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(1, 1, 1, 0.06);
  box-shadow: none;
}

.gs-header__logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.gs-header__menu-link {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.gs-header__menu-link--active {
  border-bottom-color: var(--color-gs-blue);
  color: var(--color-gs-blue);
}

.gs-header__menu-link:hover {
  color: var(--color-gs-blue);
}

.gs-header__cart-badge {
  background: var(--color-gs-blue);
}

.gs-header__phone {
  color: var(--color-gs-ink);
  font-weight: 600;
}

/* ---------- Hero: light & airy ---------- */
.gs-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-gs-ink) !important;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(33, 137, 255, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 90%, rgba(26, 115, 232, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f4f6fb 48%, #eef2fa 100%) !important;
}

.gs-hero .text-white,
.gs-hero__headline,
.gs-hero__subhead {
  color: var(--color-gs-ink) !important;
}

.gs-hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.95fr);
  gap: 0.5rem 0.65rem;
  align-items: center;
}

@media (min-width: 640px) {
  .gs-hero__row {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    gap: 1.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .gs-hero__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 4rem;
  }
}

.gs-hero__headline {
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1.08;
}

.gs-hero__subhead {
  max-width: 34rem;
  color: rgba(1, 1, 1, 0.62) !important;
  font-weight: 400;
}

.gs-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  align-self: stretch;
}

.gs-hero__product {
  display: block;
  width: auto;
  height: clamp(240px, 62vw, 340px);
  max-width: none;
  object-fit: contain;
  object-position: center right;
  margin-right: -0.35rem;
  filter: drop-shadow(0 18px 28px rgba(26, 115, 232, 0.16));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) {
  .gs-hero__product {
    height: clamp(280px, 46vw, 390px);
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .gs-hero__product {
    height: clamp(340px, 42vw, 460px);
  }
}

.gs-hero__product:hover {
  transform: translateY(-6px) scale(1.02);
}

.gs-hero .cta--contained {
  background: var(--color-gs-blue) !important;
  color: #fff !important;
  border-color: var(--color-gs-blue) !important;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(26, 115, 232, 0.22);
}

.gs-hero .cta--contained:hover {
  background: var(--color-gs-blue-light) !important;
}

.gs-hero .cta--outlined {
  border-radius: 999px;
  border-color: rgba(1, 1, 1, 0.18) !important;
  color: var(--color-gs-ink) !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

.gs-hero .cta--outlined:hover {
  border-color: var(--color-gs-blue) !important;
  color: var(--color-gs-blue) !important;
}

/* Dark page heroes (inner pages) stay readable but softer */
.gs-hero--dark,
section.gs-hero.bg-gs-black {
  color: #fff !important;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(33, 137, 255, 0.22) 0%, transparent 55%),
    linear-gradient(155deg, #0b1224 0%, #121826 50%, #070b14 100%) !important;
}

.gs-hero--dark .gs-hero__headline,
.gs-hero--dark .text-white,
section.gs-hero.bg-gs-black .gs-hero__headline,
section.gs-hero.bg-gs-black .text-white {
  color: #fff !important;
}

.gs-hero--dark .gs-hero__subhead,
section.gs-hero.bg-gs-black .gs-hero__subhead,
section.gs-hero.bg-gs-black .text-white\/80 {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* ---------- Categories ---------- */
.gs-lineup {
  background: #fff;
}

.gs-lineup__title {
  letter-spacing: -0.02em;
}

.gs-lineup__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  justify-items: center;
  align-items: start;
  width: 100%;
}

.gs-lineup__grid > *:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 50%;
}

@media (min-width: 640px) {
  .gs-lineup__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gs-lineup__grid > *:last-child:nth-child(odd) {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .gs-lineup__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .gs-lineup__grid > *:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

.gs-lineup__item {
  width: 100%;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.5rem 0.25rem !important;
  transition: transform 0.25s ease;
}

.gs-lineup__item:hover {
  transform: translateY(-2px);
  border-color: transparent !important;
  box-shadow: none !important;
  background: transparent !important;
}

.gs-lineup__media {
  width: 96px;
  height: 96px;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible;
}

.gs-lineup__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  display: block;
}

.gs-lineup__icon-fallback {
  width: 64px;
  height: 64px;
  background: transparent;
}

/* ---------- Product grid ---------- */
.gs-product-grid {
  background: var(--color-gs-surface) !important;
}

.gs-product-grid__title,
.gs-lineup__title {
  letter-spacing: -0.02em;
}

.gs-product-card {
  border-radius: 1.25rem !important;
  overflow: hidden;
  background: #fff !important;
}

.gs-product-card__image {
  background: #fff !important;
  border-radius: 0;
  padding: 12px !important;
}

.gs-product-card__image .image,
.gs-product-card__image .image__main {
  background: #fff !important;
}

.gs-product-card__info {
  padding: 12px 14px 14px !important;
}

.gs-product-card__name {
  font-size: 0.92rem !important;
  line-height: 1.25 !important;
  margin-bottom: 0.2rem !important;
}

.gs-product-card__specs {
  margin-bottom: 0.4rem !important;
}

.gs-product-card__colors {
  margin-bottom: 0.35rem !important;
}

.gs-product-card__price {
  margin-bottom: 0.65rem !important;
  min-height: 0 !important;
  flex-wrap: nowrap !important;
}

.gs-product-card__price-row,
.gs-product-card__price-current,
.gs-product-card__price-old {
  white-space: nowrap !important;
}

.gs-product-card__price-current {
  font-size: 1rem !important;
}

.gs-memory-chip {
  min-width: 0 !important;
  padding: 0.28rem 0.55rem !important;
  font-size: 0.7rem !important;
}

.gs-color-swatch {
  width: 1.15rem !important;
  height: 1.15rem !important;
}

.gs-add-to-cart-btn {
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

/* ---------- Benefits ---------- */
.gs-benefit-card {
  border: 1px solid rgba(1, 1, 1, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gs-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.gs-benefit-card__icon {
  background: linear-gradient(145deg, #f0f4ff 0%, #e4ebfc 100%) !important;
  color: var(--color-gs-blue);
  border-radius: 1.1rem !important;
}

/* ---------- Delivery promo: image as background ---------- */
.gs-delivery-promo {
  position: relative;
  overflow: hidden;
  color: #fff !important;
  background-color: #0b1220;
  background-image: var(--gs-delivery-bg);
  background-size: cover;
  background-position: center right;
  isolation: isolate;
}

.gs-delivery-promo__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(7, 11, 20, 0.92) 0%, rgba(7, 11, 20, 0.72) 42%, rgba(7, 11, 20, 0.35) 70%, rgba(7, 11, 20, 0.2) 100%);
}

.gs-delivery-promo__inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem 1rem;
}

@media (min-width: 640px) {
  .gs-delivery-promo__inner {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gs-delivery-promo__inner {
    padding: 3.5rem 2rem;
  }
}

.gs-delivery-promo__content {
  max-width: 34rem;
}

.gs-delivery-promo__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.gs-delivery-promo__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff !important;
}

.gs-delivery-promo__text {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.95rem;
  line-height: 1.45;
}

.gs-delivery-promo__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
}

.gs-delivery-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  background: #fff !important;
  color: var(--color-gs-ink) !important;
  border-radius: 999px !important;
  font-weight: 700;
  text-decoration: none;
}

.gs-delivery-promo__btn:hover {
  background: var(--color-gs-accent) !important;
  color: #fff !important;
}

.gs-delivery-promo__link {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}

.gs-delivery-promo__link:hover {
  color: var(--color-gs-accent) !important;
}

/* ---------- Consult / Reviews ---------- */
.gs-consult {
  background:
    linear-gradient(120deg, #1a73e8 0%, #1a3bb8 45%, #4285f4 100%) !important;
}

.gs-consult .cta--contained {
  background: #fff !important;
  color: var(--color-gs-blue) !important;
  border-radius: 999px;
}

.gs-reviews {
  background: #fff !important;
}

.gs-review-card {
  border-radius: var(--radius-lg) !important;
  border-color: rgba(1, 1, 1, 0.06) !important;
  box-shadow: var(--shadow-card);
}

/* ---------- Footer: compact ---------- */
.gs-footer {
  background: #090c12 !important;
  color: #fff;
}

.gs-footer__inner {
  padding-top: 1.35rem !important;
  padding-bottom: 1.1rem !important;
}

.gs-footer__top {
  display: grid;
  gap: 1rem 1.5rem;
}

@media (min-width: 1024px) {
  .gs-footer__top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.2fr);
    align-items: start;
  }
}

.gs-footer__brand-logo {
  display: block;
  height: 22px;
  width: auto;
  margin-bottom: 0.45rem;
  filter: none;
}

.gs-footer__brand-text {
  margin: 0 0 0.65rem;
  max-width: 22rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.gs-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

@media (min-width: 768px) {
  .gs-footer__columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gs-footer__title {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.gs-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.gs-footer__link,
.gs-footer__text {
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.gs-footer__link:hover {
  color: #fff;
}

.gs-footer__bottom {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .gs-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}

.gs-footer__bottom p {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
}

.gs-footer__brand-name {
  display: none;
}

/* ---------- Shared ---------- */
.text-gs-blue {
  color: var(--color-gs-blue) !important;
}

.gs-mega-menu__category:hover .gs-mega-menu__category-name,
.gs-mega-menu__quick-link:hover .gs-mega-menu__quick-title {
  color: var(--color-gs-blue);
}

.gs-mobile-nav__phone {
  color: var(--color-gs-blue);
}

/* Compact mobile menu */
.gs-mobile-nav {
  gap: 0 !important;
  padding: 0.35rem 0 0.75rem !important;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.gs-mobile-nav__phone {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  margin: 0.15rem 0 0.45rem;
  padding: 0.55rem 0.75rem !important;
  border-radius: 0.65rem;
  background: var(--color-gs-blue-soft);
  color: var(--color-gs-blue) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  border-bottom: none !important;
}

.gs-mobile-nav__item {
  padding: 0.45rem 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}

.gs-mobile-nav__sub {
  padding: 0.15rem 0 0.25rem 0.85rem !important;
  gap: 0 !important;
}

.gs-mobile-nav__sub-item {
  padding: 0.28rem 0 !important;
  font-size: 0.82rem !important;
  line-height: 1.2 !important;
  color: rgba(1, 1, 1, 0.62) !important;
}

/* Soft page rhythm */
.gs-seo-text__heading {
  letter-spacing: -0.01em;
}

/* Compact Samsung-style page title bar (internal pages) */
.gs-page-bar,
.gs-page-hero,
.gs-samsung-hero,
section[class*="-hero"]:not(.gs-hero) {
  background: #f5f6f8 !important;
  color: #010101 !important;
  min-height: 0 !important;
  position: relative;
  overflow: visible !important;
  border-bottom: 1px solid rgba(1, 1, 1, 0.06);
}

.gs-page-bar__inner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.gs-page-bar__crumbs {
  font-size: 0.75rem;
  color: rgba(1, 1, 1, 0.45);
  margin-bottom: 0.4rem;
}

.gs-page-bar__crumbs a {
  color: rgba(1, 1, 1, 0.45);
  text-decoration: none;
}

.gs-page-bar__crumbs a:hover {
  color: var(--color-gs-blue);
}

.gs-page-bar__sep {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.gs-page-bar__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gs-blue);
  margin-bottom: 0.35rem;
}

.gs-page-bar__title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #010101 !important;
  margin: 0;
}

.gs-page-bar__desc {
  margin: 0.45rem 0 0;
  max-width: 42rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(1, 1, 1, 0.58) !important;
}

.gs-page-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.7rem;
}

.gs-page-bar__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gs-blue);
  text-decoration: none;
}

.gs-page-bar__link:hover {
  text-decoration: underline;
}

/* FAQ: light surface so it doesn't blend with white sections */
.gs-faq,
.gs-faq-main,
.gs-credit-faq,
.gs-installment-faq,
.gs-payment-faq,
section[class*="-faq"]:not(.gs-faq-contacts):not(.gs-faq-info):not(.gs-faq-pickup):not(.gs-faq-note):not(.gs-faq-tradein):not(.gs-faq-contact) {
  background: #f5f6f8 !important;
}

.gs-faq__item,
.gs-faq-main__item,
[class*="-faq__item"] {
  border-color: rgba(1, 1, 1, 0.08) !important;
}

/* Hide leftover hero images on internal pages */
.gs-page-bar .gs-page-hero__img,
.gs-page-hero__img,
.gs-samsung-hero .absolute.inset-0 {
  display: none !important;
}

@keyframes gs-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.gs-hero__content {
  animation: gs-fade-up 0.7s ease both;
}

.gs-hero__media {
  animation: gs-fade-up 0.9s 0.1s ease both;
}

/* Yandex rating badge */
.gs-yandex-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.gs-yandex-rating:hover {
  transform: translateY(-1px);
}

.gs-yandex-rating__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  background: #fc3f1d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.gs-yandex-rating__stars {
  display: inline-flex;
  gap: 0.08rem;
  color: #fc3f1d;
}

.gs-yandex-rating__score {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gs-yandex-rating__label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.72;
}

.gs-yandex-rating--light {
  background: #fff;
  color: #010101;
  border: 1px solid rgba(1, 1, 1, 0.08);
  box-shadow: 0 2px 8px rgba(1, 1, 1, 0.04);
}

.gs-yandex-rating--dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gs-yandex-rating--dark .gs-yandex-rating__stars {
  color: #ffb020;
}

.gs-yandex-rating--dark .gs-yandex-rating__label {
  color: rgba(255, 255, 255, 0.7);
}

.gs-reviews__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0;
}

/* Contact CTA with map */
.gs-contact-cta,
section.gs-contact {
  background: linear-gradient(145deg, #0c1220 0%, #101826 55%, #070b14 100%) !important;
  color: #fff !important;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

/* Inner already had Tailwind py-* which is missing from build — keep content inset */
.gs-contact-cta > [class$="__inner"] {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

@media (min-width: 1024px) {
  .gs-contact-cta,
  section.gs-contact {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

.gs-contact-cta__grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .gs-contact-cta__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 1.75rem;
  }
}

.gs-contact-cta__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff !important;
}

.gs-contact-cta__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1rem;
  line-height: 1.45;
}

.gs-contact-cta__phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 1rem;
}

.gs-contact-cta__phone {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem !important;
  border-radius: 0.75rem !important;
  background: #fff !important;
  color: #010101 !important;
  font-weight: 700;
  text-decoration: none;
}

.gs-contact-cta__address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

.gs-contact-cta__address strong {
  color: #fff;
}

.gs-contact-cta__address-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.gs-contact-cta__address-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.gs-contact-cta__hours {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.gs-contact-cta__map-wrap {
  min-height: 240px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 1024px) {
  .gs-contact-cta__map-wrap {
    min-height: 100%;
  }
}

.gs-contact-cta__map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

@media (min-width: 1024px) {
  .gs-contact-cta__map {
    min-height: 320px;
  }
}


/* Pixel Material accents */
.gs-hero {
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(66, 133, 244, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 90%, rgba(52, 168, 83, 0.10) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f8f9fa 48%, #e8f0fe 100%) !important;
}
.gs-footer {
  background: #202124 !important;
}
.gs-header__logo-img { height: 30px; }
