.gb-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
  width: 100%;
}

.gb-skip {
  background: var(--bk-ink);
  color: var(--bk-white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 1000;
}

.gb-skip:focus {
  top: 16px;
}

.gb-header {
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(220, 232, 237, 0.72);
  backdrop-filter: blur(12px) saturate(1.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gb-nav {
  align-items: center;
  display: flex;
  min-height: 76px;
  gap: 22px;
  justify-content: space-between;
  max-width: 1420px;
}

.gb-brand,
.gb-footer-brand {
  align-items: center;
  color: var(--bk-ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 850;
  gap: 12px;
  min-width: 0;
}

.gb-brand img,
.gb-footer-brand img {
  height: 36px;
  width: auto;
}

.gb-brand img {
  height: 42px;
  width: 42px;
}

.gb-brand img.gb-brand-logo {
  height: 46px;
  max-width: 280px;
  width: auto;
}

.gb-brand-word {
  color: var(--bk-ink);
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.gb-brand-word em {
  color: var(--bk-accent);
  font-style: normal;
  font-weight: 900;
}

.gb-footer-brand span {
  background: rgba(92, 165, 198, 0.12);
  border: 1px solid rgba(92, 165, 198, 0.18);
  border-radius: 999px;
  color: var(--bk-primary-700);
  font-size: 0.86rem;
  line-height: 1;
  padding: 8px 11px;
  white-space: nowrap;
}

.gb-menu {
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  gap: 14px;
  justify-content: flex-end;
  min-width: 0;
}

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

.gb-menu a {
  border-radius: 999px;
  color: var(--bk-ink);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  padding: 11px 10px;
  white-space: nowrap;
}

.gb-menu a:hover,
.gb-menu a[aria-current="page"] {
  background: rgba(92, 165, 198, 0.12);
  color: var(--bk-primary-700);
}

.gb-nav-cta {
  background: var(--bk-accent);
  border: 1px solid var(--bk-accent);
  color: var(--bk-ink) !important;
  font-weight: 850 !important;
}

.gb-nav-cta:hover {
  background: transparent;
  color: var(--bk-accent-700) !important;
}

.gb-language-switcher {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  position: relative;
}

.gb-language-button {
  align-items: center;
  appearance: none;
  background: rgba(223, 151, 93, 0.12);
  border: 1px solid rgba(223, 151, 93, 0.22);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  gap: 7px;
  height: 38px;
  justify-content: center;
  padding: 0 10px;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.gb-language-button:hover,
.gb-language-button:focus-visible,
.gb-language-switcher.is-open .gb-language-button {
  background: rgba(223, 151, 93, 0.2);
  border-color: rgba(223, 151, 93, 0.48);
  box-shadow: 0 8px 22px rgba(31, 52, 66, 0.08);
  outline: none;
}

.gb-language-button img,
.gb-language-dropdown img {
  border-radius: 999px;
  height: 20px;
  width: 20px;
}

.gb-language-chevron {
  border-bottom: 2px solid var(--bk-primary-700);
  border-right: 2px solid var(--bk-primary-700);
  height: 7px;
  margin-top: -3px;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  width: 7px;
}

.gb-language-switcher.is-open .gb-language-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.gb-language-dropdown {
  background: var(--bk-white);
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(24, 50, 61, 0.14);
  min-width: 190px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 200;
}

.gb-language-dropdown ul {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gb-language-dropdown a {
  align-items: center;
  border-radius: 8px;
  color: var(--bk-ink);
  display: flex;
  font-size: 0.92rem;
  font-weight: 750;
  gap: 10px;
  justify-content: flex-start;
  padding: 10px 11px;
}

.gb-language-dropdown a:hover,
.gb-language-dropdown a[aria-current="true"] {
  background: rgba(92, 165, 198, 0.12);
  color: var(--bk-primary-700);
}

.gb-menu-toggle {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.gb-menu-toggle span {
  background: var(--bk-ink);
  border-radius: 999px;
  height: 2px;
  width: 22px;
}

.gb-hero {
  background:
    linear-gradient(135deg, rgba(92, 165, 198, 0.14), rgba(223, 151, 93, 0.08) 52%, rgba(223, 244, 236, 0.5)),
    var(--bk-cloud);
  border-bottom: 1px solid var(--bk-line);
  overflow: hidden;
  padding: 72px 0 64px;
}

.gb-compact-hero {
  padding-bottom: 52px;
}

.gb-contact-hero {
  background:
    linear-gradient(135deg, rgba(223, 151, 93, 0.12), rgba(92, 165, 198, 0.12) 54%, rgba(223, 244, 236, 0.58)),
    var(--bk-cloud);
}

.gb-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

.gb-hero-copy {
  min-width: 0;
}

.gb-kicker {
  color: var(--bk-primary-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.gb-hero h1,
.gb-section h2,
.gb-final-cta h2 {
  color: var(--bk-ink);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0;
}

.gb-hero h1 {
  font-size: clamp(2.55rem, 5.3vw, 5.35rem);
  max-width: 900px;
}

.gb-compact-hero h1 {
  font-size: clamp(2.35rem, 4.35vw, 4.45rem);
}

.gb-lead {
  color: var(--bk-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 680px;
}

.gb-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.gb-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

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

.gb-button-primary {
  background: var(--bk-primary);
  border: 1.2px solid var(--bk-primary);
  color: var(--bk-white);
}

.gb-button-primary:hover,
.gb-button-primary:focus {
  background: transparent;
  color: var(--bk-primary-700);
}

.gb-button-secondary {
  background: var(--bk-white);
  border: 1.2px solid rgba(92, 165, 198, 0.58);
  color: var(--bk-ink);
}

.gb-button-secondary:hover,
.gb-button-secondary:focus {
  background: var(--bk-ink);
  border-color: var(--bk-ink);
  color: var(--bk-white);
}

.gb-proof {
  color: var(--bk-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.gb-proof li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 232, 237, 0.9);
  border-radius: 999px;
  color: var(--bk-ink);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 9px 13px;
}

.gb-hero-media {
  margin: 0;
  position: relative;
}

.gb-hero-media::before {
  animation: gb-hero-orbit 9s ease-in-out infinite;
  background: rgba(223, 151, 93, 0.22);
  border-radius: 999px;
  content: "";
  height: 220px;
  position: absolute;
  right: -40px;
  top: -36px;
  width: 220px;
  z-index: 0;
}

@keyframes gb-hero-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(14px, -10px, 0) scale(1.02);
  }

  50% {
    transform: translate3d(4px, 12px, 0) scale(0.98);
  }

  75% {
    transform: translate3d(-12px, 6px, 0) scale(1.01);
  }
}

.gb-hero-media img {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(92, 165, 198, 0.18);
  border-radius: 42px;
  box-shadow: 0 24px 70px rgba(31, 52, 66, 0.08);
  position: relative;
  z-index: 1;
}

.gb-section {
  padding: 72px 0;
}

.gb-muted {
  background: var(--bk-cloud);
}

.gb-section-head {
  margin-bottom: 32px;
  max-width: 820px;
}

.gb-section-head h2,
.gb-final-cta h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.gb-section-head p:not(.gb-kicker),
.gb-final-cta p:not(.gb-kicker),
.gb-split p:not(.gb-kicker) {
  color: var(--bk-muted);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 15px 0 0;
}

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

.gb-card {
  background: var(--bk-white);
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  padding: 24px;
}

.gb-card-icon {
  align-items: center;
  background: rgba(92, 165, 198, 0.12);
  border-radius: 999px;
  color: var(--bk-primary-700);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  min-width: 42px;
  padding: 0 10px;
}

.gb-card h3,
.gb-industry-card span {
  color: var(--bk-ink);
  font-size: 1.16rem;
  font-weight: 860;
  line-height: 1.2;
  margin: 0;
}

.gb-card p,
.gb-industry-card p {
  color: var(--bk-muted);
  line-height: 1.62;
  margin: 12px 0 0;
}

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

.gb-seo-link-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gb-seo-link-card {
  background: var(--bk-white);
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  color: var(--bk-ink);
  display: block;
  min-height: 148px;
  padding: 20px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.gb-seo-link-card:hover,
.gb-seo-link-card:focus-visible {
  border-color: rgba(92, 165, 198, 0.58);
  box-shadow: 0 16px 34px rgba(24, 50, 61, 0.08);
  color: var(--bk-ink);
  outline: none;
  transform: translateY(-1px);
}

.gb-seo-link-card span {
  color: var(--bk-ink);
  display: block;
  font-size: 1.02rem;
  font-weight: 860;
  line-height: 1.22;
}

.gb-seo-link-card p {
  color: var(--bk-muted);
  line-height: 1.55;
  margin: 10px 0 0;
}

.gb-comparison-table-wrap {
  background: var(--bk-white);
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 50, 61, 0.08);
  overflow-x: auto;
}

.gb-comparison-table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.gb-comparison-table th,
.gb-comparison-table td {
  border-bottom: 1px solid var(--bk-line);
  line-height: 1.55;
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

.gb-comparison-table thead th {
  background: rgba(92, 165, 198, 0.12);
  color: var(--bk-ink);
  font-weight: 880;
}

.gb-comparison-table tbody th {
  color: var(--bk-ink);
  font-weight: 860;
  width: 21%;
}

.gb-comparison-table td {
  color: var(--bk-muted);
}

.gb-comparison-table td:last-child {
  color: var(--bk-ink);
}

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

.gb-list-panel {
  background: var(--bk-white);
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  padding: 24px;
}

.gb-list-panel h3 {
  color: var(--bk-ink);
  font-size: 1.25rem;
  margin: 0 0 16px;
}

.gb-list-panel ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gb-list-panel li {
  color: var(--bk-muted);
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}

.gb-list-panel li::before {
  background: var(--bk-primary);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 8px;
}

.gb-industry-card {
  border: 1px solid rgba(92, 165, 198, 0.34);
  border-radius: 8px;
  min-height: 184px;
  padding: 22px;
  position: relative;
}

.gb-industry-card::after {
  background: currentColor;
  border-radius: 999px;
  color: rgba(31, 52, 66, 0.08);
  content: "";
  height: 72px;
  position: absolute;
  right: -22px;
  top: -22px;
  width: 72px;
}

.tone-1 {
  background: linear-gradient(135deg, rgba(92, 165, 198, 0.18), rgba(255, 255, 255, 0.95));
}

.tone-2 {
  background: linear-gradient(135deg, rgba(223, 151, 93, 0.18), rgba(255, 255, 255, 0.95));
}

.tone-3 {
  background: linear-gradient(135deg, rgba(126, 176, 158, 0.22), rgba(255, 255, 255, 0.95));
}

.tone-4 {
  background: linear-gradient(135deg, rgba(133, 142, 214, 0.18), rgba(255, 255, 255, 0.95));
}

.gb-split {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
}

.gb-language-band {
  background: linear-gradient(135deg, rgba(31, 52, 66, 0.96), rgba(40, 114, 143, 0.93));
}

.gb-language-band h2,
.gb-language-band p,
.gb-language-band .gb-kicker {
  color: var(--bk-white);
}

.gb-language-band p:not(.gb-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.gb-language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-language-cloud span,
.gb-flow span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--bk-white);
  font-weight: 850;
  padding: 12px 16px;
}

.gb-flow {
  background: var(--bk-white);
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 50, 61, 0.08);
  display: grid;
  gap: 12px;
  padding: 24px;
}

.gb-flow span {
  background: rgba(92, 165, 198, 0.12);
  border-color: rgba(92, 165, 198, 0.32);
  color: var(--bk-ink);
}

.gb-faq-list {
  border-top: 1px solid var(--bk-line);
}

.gb-faq-list details {
  border-bottom: 1px solid var(--bk-line);
  padding: 20px 0;
}

.gb-faq-list summary {
  color: var(--bk-ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
}

.gb-faq-list p {
  color: var(--bk-muted);
  line-height: 1.7;
  margin: 12px 0 0;
  max-width: 820px;
}

.gb-final-cta {
  background:
    linear-gradient(135deg, rgba(92, 165, 198, 0.16), rgba(223, 151, 93, 0.1) 54%, rgba(223, 244, 236, 0.5)),
    var(--bk-cloud);
  border-top: 1px solid var(--bk-line);
}

.gb-final-cta-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.gb-final-cta-inner > div:first-child {
  max-width: 720px;
}

.gb-lead-form {
  background: var(--bk-white);
  border: 1px solid rgba(92, 165, 198, 0.34);
  border-radius: 8px;
  box-shadow: var(--bk-shadow);
  display: grid;
  gap: 16px;
  padding: 26px;
}

.gb-lead-form label {
  color: var(--bk-ink);
  display: grid;
  font-size: 0.92rem;
  font-weight: 850;
  gap: 7px;
}

.gb-lead-form input,
.gb-lead-form textarea {
  border: 1px solid var(--bk-line);
  border-radius: 8px;
  color: var(--bk-ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.gb-lead-form input:focus,
.gb-lead-form textarea:focus {
  border-color: var(--bk-primary);
  outline: 3px solid rgba(92, 165, 198, 0.14);
}

.gb-honeypot {
  left: -10000px;
  position: absolute;
  top: auto;
}

.gb-form-alert {
  border-radius: 8px;
  font-weight: 850;
  margin: 0;
  padding: 13px 14px;
}

.gb-form-alert-success {
  background: rgba(92, 165, 198, 0.13);
  color: var(--bk-ink);
}

.gb-form-alert-error {
  background: rgba(213, 143, 85, 0.14);
  color: var(--bk-ink);
}

.gb-form-alt-contact {
  margin: -4px 0 0;
}

.gb-form-alt-contact a {
  color: var(--bk-primary-dark);
  font-weight: 850;
}

.gb-footer {
  background: var(--bk-ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 26px;
}

.gb-footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
}

.gb-footer-brand {
  color: var(--bk-white);
}

.gb-footer-brand img {
  filter: brightness(0) invert(1);
}

.gb-footer-brand span {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--bk-accent);
}

.gb-footer h2 {
  color: var(--bk-white);
  font-size: 0.95rem;
  margin: 0 0 14px;
}

.gb-footer a {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  line-height: 1.45;
  margin: 0 0 10px;
}

.gb-footer a:hover {
  color: var(--bk-accent);
}

.gb-footer p {
  line-height: 1.65;
  max-width: 420px;
}

.gb-powered {
  color: var(--bk-accent);
  font-weight: 850;
}

.gb-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 20px;
}

@media (max-width: 1180px) {
  .gb-menu-toggle {
    display: inline-flex;
  }

  .gb-menu {
    background: var(--bk-white);
    border-bottom: 1px solid var(--bk-line);
    box-shadow: 0 18px 48px rgba(24, 50, 61, 0.08);
    display: none;
    left: 0;
    padding: 18px 24px 24px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .gb-menu.is-open {
    align-items: stretch;
    display: grid;
    gap: 16px 14px;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }

  .gb-menu > ul {
    align-items: stretch;
    display: grid;
    gap: 8px 10px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    justify-self: center;
    max-width: 420px;
    width: min(100%, 420px);
  }

  .gb-menu a {
    justify-content: center;
  }

  .gb-language-switcher {
    grid-column: 1;
    justify-content: flex-end;
    justify-self: end;
  }

  .gb-language-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .gb-nav-cta {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .gb-hero-grid,
  .gb-split,
  .gb-footer-grid {
    grid-template-columns: 1fr;
  }

  .gb-card-grid,
  .gb-industry-grid,
  .gb-seo-link-grid,
  .gb-list-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gb-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .gb-footer-grid {
    column-gap: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gb-footer-grid > div:first-child,
  .gb-footer-grid > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .gb-footer-grid > div:nth-child(3) {
    justify-self: end;
    text-align: left;
    width: max-content;
  }

  .gb-footer-grid > div:nth-child(4) {
    justify-self: center;
    max-width: 360px;
    text-align: center;
    width: 100%;
  }

  .gb-footer-grid > div:nth-child(4) a {
    margin-left: auto;
    margin-right: auto;
  }

  .gb-footer-bottom {
    justify-content: center;
    margin-top: 46px;
    padding-top: 30px;
    row-gap: 10px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .gb-container {
    padding: 0 18px;
  }

  .gb-hero {
    padding: 52px 0 46px;
  }

  .gb-hero h1 {
    font-size: 2.55rem;
  }

  .gb-section {
    padding: 54px 0;
  }

  .gb-card-grid,
  .gb-industry-grid,
  .gb-seo-link-grid,
  .gb-list-panel-grid {
    grid-template-columns: 1fr;
  }

  .gb-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gb-button {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .gb-hero-media::before {
    animation: none;
  }
}
