:root {
  --gb-navy: #101623;
  --gb-ink: #162033;
  --gb-muted: #64748b;
  --gb-line: #e2e8f0;
  --gb-soft: #f7fafc;
  --gb-blue: #1d5fd1;
  --gb-blue-2: #22a6df;
  --gb-green: #35b86f;
  --gb-gold: #f4b740;
  --gb-white: #ffffff;
  --gb-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gb-ink);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

main {
  min-height: 60vh;
}

.gb-navbar {
  min-height: 78px;
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.gb-navbar.is-scrolled {
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.gb-logo-img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.gb-nav-link {
  position: relative;
  color: var(--gb-ink);
  font-weight: 700;
  padding: 0.75rem 1rem !important;
}

.gb-nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gb-blue), var(--gb-green));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.gb-nav-link:hover,
.gb-nav-link.active {
  color: var(--gb-blue);
}

.gb-nav-link:hover::after,
.gb-nav-link.active::after {
  transform: scaleX(1);
}

.gb-toggler {
  width: 44px;
  height: 40px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  padding: 8px;
}

.gb-toggler span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gb-ink);
  border-radius: 999px;
}

.gb-btn-primary,
.gb-btn-outline,
.gb-btn-soft {
  min-height: 44px;
  border-radius: 8px;
  padding: 0.7rem 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.gb-btn-primary {
  border: 0;
  color: #fff !important;
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-green));
  box-shadow: 0 12px 28px rgba(29, 95, 209, 0.24);
}

.gb-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(29, 95, 209, 0.3);
}

.gb-btn-outline {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.gb-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gb-btn-soft {
  color: var(--gb-ink) !important;
  border: 1px solid var(--gb-line);
  background: #f8fafc;
}

.gb-btn-soft:hover {
  color: var(--gb-blue) !important;
  border-color: rgba(29, 95, 209, 0.22);
  background: #eef6ff;
}

.gb-hero .gb-btn-outline {
  color: var(--gb-blue) !important;
  border-color: rgba(29, 95, 209, 0.28);
  background: #fff;
}

.gb-hero .gb-btn-outline:hover {
  background: #eef6ff;
}

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

.gb-section-header {
  max-width: 780px;
  margin: 0 auto;
}

.gb-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gb-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gb-green);
}

.gb-section-title,
.gb-page-header-title,
.gb-hero-title,
.gb-cta-title {
  font-family: "Outfit", "Inter", sans-serif;
  color: var(--gb-navy);
  font-weight: 900;
  letter-spacing: 0;
}

.gb-section-title {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.gb-section-sub {
  color: var(--gb-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.gb-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 18%, rgba(53, 184, 111, 0.12), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(29, 95, 209, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 58%, #f4f9f6 100%);
}

.gb-hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 95, 209, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 95, 209, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.gb-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gb-hero-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(29, 95, 209, 0.18);
  animation: gbFloat 8s ease-in-out infinite;
}

.gb-hero-shell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  padding: 118px 0 96px;
}

.gb-hero-trustbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gb-hero-trustbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(29, 95, 209, 0.12);
  border-radius: 999px;
  color: #33506f;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
  font-weight: 800;
}

.gb-hero-trustbar i {
  color: var(--gb-green);
}

.gb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(29, 95, 209, 0.16);
  border-radius: 999px;
  background: #eef6ff;
  color: var(--gb-blue);
  font-weight: 800;
}

.gb-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gb-green);
  box-shadow: 0 0 0 6px rgba(53, 184, 111, 0.18);
}

.gb-hero-title {
  color: var(--gb-navy);
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: 1;
}

.gb-gradient-text {
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gb-hero-desc {
  max-width: 610px;
  margin: 24px 0 32px;
  color: var(--gb-muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.gb-hero-actions,
.gb-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gb-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.gb-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  color: #29405d;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.gb-hero-chips i {
  color: var(--gb-green);
}

.gb-hero-stats {
  display: inline-flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 26px;
  padding: 20px 24px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.gb-stat-item {
  display: grid;
  gap: 2px;
}

.gb-stat-num {
  color: var(--gb-navy);
  font-size: 1.55rem;
  font-weight: 900;
}

.gb-stat-plus {
  color: var(--gb-green);
}

.gb-stat-label {
  max-width: 120px;
  color: var(--gb-muted);
  font-size: 0.82rem;
}

.gb-stat-divider {
  width: 1px;
  background: var(--gb-line);
}

.gb-hero-visual {
  position: relative;
  width: min(590px, 100%);
}

.gb-hero-panel {
  padding: 14px;
  border: 1px solid rgba(29, 95, 209, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
}

.gb-hero-panel-top {
  display: flex;
  gap: 8px;
  padding: 4px 2px 14px;
}

.gb-hero-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.gb-hero-panel-top span:first-child {
  background: #ef6461;
}

.gb-hero-panel-top span:nth-child(2) {
  background: #f4b740;
}

.gb-hero-panel-top span:nth-child(3) {
  background: var(--gb-green);
}

.gb-hero-photo {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(29, 95, 209, 0.14);
  border-radius: 8px;
  box-shadow: none;
}

.gb-hero-panel-metrics {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 12px;
  margin-top: 12px;
}

.gb-hero-progress-card,
.gb-hero-doc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.gb-hero-progress-card {
  justify-content: space-between;
}

.gb-hero-doc-card {
  min-width: 0;
}

.gb-hero-doc-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-green));
  font-size: 1.25rem;
}

.gb-hero-progress-card strong,
.gb-hero-doc-card strong {
  display: block;
  color: var(--gb-navy);
  font-weight: 900;
}

.gb-hero-progress-card small,
.gb-hero-doc-card small {
  display: block;
  color: var(--gb-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.gb-hero-progress-card > span {
  color: var(--gb-green);
  font-size: 1.45rem;
  font-weight: 900;
}

.gb-hero {
  background:
    radial-gradient(circle at 72% 42%, rgba(53, 184, 111, 0.14), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(29, 95, 209, 0.18), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1b2e 54%, #071713 100%);
}

.gb-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  z-index: 0;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(126, 230, 168, 0.18), transparent 66%);
}

.gb-hero::after {
  content: "";
  position: absolute;
  right: 30%;
  bottom: 18%;
  z-index: 0;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(29, 95, 209, 0.16), transparent 64%);
}

.gb-hero-overlay {
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
}

.gb-hero-shell {
  gap: 24px;
  padding: 88px 0 54px;
}

.gb-hero-enterprise {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
}

.gb-hero-copy {
  max-width: 680px;
}

.gb-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(126, 230, 168, 0.18);
  border-radius: 999px;
  color: #bff5d2;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gb-hero-mobile-media {
  display: none;
}

.gb-hero-visual-panel {
  position: relative;
  isolation: isolate;
  align-self: center;
  width: min(100%, 620px);
  margin-left: auto;
}

.gb-hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.38 / 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.gb-hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0) 54%, rgba(7, 17, 31, 0.56) 100%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.18), transparent 46%);
  pointer-events: none;
}

.gb-hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.gb-hero-service-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 17, 31, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  font-size: 0.86rem;
  font-weight: 900;
}

.gb-hero-service-card i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #07111f;
  background: #7ee6a8;
}

.gb-hero-service-card--top {
  top: 28px;
  left: -36px;
}

.gb-hero-service-card--bottom {
  right: -26px;
  bottom: 34px;
}

.gb-hero-enterprise .gb-hero-badge {
  margin-bottom: 22px;
  border-color: rgba(126, 230, 168, 0.2);
  color: #bff5d2;
  background: rgba(255, 255, 255, 0.07);
}

.gb-hero-enterprise .gb-hero-title {
  color: #fff;
  font-size: clamp(2.45rem, 4.1vw, 4.15rem);
  line-height: 1.04;
  max-width: 680px;
}

.gb-hero-enterprise .gb-gradient-text {
  background: linear-gradient(135deg, #77c7ff, #7ee6a8);
  -webkit-background-clip: text;
  background-clip: text;
}

.gb-hero-enterprise .gb-hero-desc {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  margin: 20px 0 28px;
}

.gb-hero-enterprise .gb-btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.gb-hero-enterprise .gb-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.gb-hero-enterprise .gb-hero-chips span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
}

.gb-hero-proof {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto 1px minmax(280px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.gb-hero-proof .gb-stat-num {
  color: #fff;
  font-size: 1.28rem;
}

.gb-hero-proof .gb-stat-label {
  color: rgba(255, 255, 255, 0.62);
}

.gb-hero-proof .gb-stat-divider {
  height: 48px;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.gb-hero-proof .gb-hero-trustbar {
  justify-content: flex-end;
}

.gb-hero-proof .gb-hero-trustbar span {
  border-color: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.gb-hero-center-circle,
.gb-about-img-card {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--gb-shadow);
  backdrop-filter: blur(16px);
}

.gb-hero-center-circle {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: #fff;
}

.gb-hero-logo-circle {
  width: 58%;
  border-radius: 10px;
}

.gb-hero-card-float,
.gb-about-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--gb-ink);
  box-shadow: var(--gb-shadow);
  font-weight: 800;
  animation: gbFloat 5s ease-in-out infinite;
}

.gb-hero-card-float i,
.gb-about-badge-float i {
  font-size: 1.45rem;
}

.gb-hc-1 {
  top: 12%;
  left: -10%;
}

.gb-hc-2 {
  top: 44%;
  right: -6%;
  animation-delay: 0.8s;
}

.gb-hc-3 {
  bottom: 10%;
  left: -8%;
  animation-delay: 1.4s;
}

.gb-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 90px;
}

.gb-hero-wave svg {
  width: 100%;
  height: 100%;
}

.gb-services-overview,
.gb-how-it-works,
.gb-mvv-section {
  background: var(--gb-soft);
}

.gb-service-card,
.gb-stats-card,
.gb-step-card,
.gb-mvv-card,
.gb-team-card,
.gb-svc-sub-card,
.gb-contact-form-wrap,
.gb-contact-info-card,
.gb-service-full-row {
  height: 100%;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gb-service-card:hover,
.gb-step-card:hover,
.gb-mvv-card:hover,
.gb-team-card:hover,
.gb-svc-sub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 95, 209, 0.25);
  box-shadow: var(--gb-shadow);
}

.gb-service-card,
.gb-step-card,
.gb-mvv-card,
.gb-team-card,
.gb-svc-sub-card {
  padding: 28px;
}

.gb-service-icon-wrap,
.gb-stats-icon,
.gb-step-icon,
.gb-mvv-icon,
.gb-service-full-icon,
.gb-contact-icon,
.gb-why-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-blue-2));
  font-size: 1.55rem;
}

.gb-service-icon-wrap--2,
.gb-sfi-3 {
  background: linear-gradient(135deg, #6f5bd8, #23b0d8);
}

.gb-service-icon-wrap--3,
.gb-sfi-2 {
  background: linear-gradient(135deg, #f59e0b, #ef5f67);
}

.gb-service-icon-wrap--4,
.gb-sfi-4 {
  background: linear-gradient(135deg, var(--gb-green), #168c5c);
}

.gb-service-card-title,
.gb-svc-sub-card h6,
.gb-step-card h5,
.gb-mvv-card h5,
.gb-team-card h6 {
  margin: 20px 0 10px;
  color: var(--gb-navy);
  font-weight: 900;
}

.gb-service-card-desc,
.gb-svc-sub-card p,
.gb-step-card p,
.gb-mvv-card p,
.gb-team-bio {
  color: var(--gb-muted);
  line-height: 1.7;
}

.gb-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--gb-blue);
  font-weight: 900;
  text-decoration: none;
}

.gb-why-us {
  background: #0d0f1a;
  color: #fff;
}

.gb-why-us .gb-section-title {
  color: #fff;
}

.gb-why-us .gb-section-sub {
  color: rgba(255, 255, 255, 0.68);
}

.gb-why-list {
  display: grid;
  gap: 18px;
}

.gb-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.gb-why-item h6 {
  margin: 0 0 4px;
  font-weight: 900;
}

.gb-why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.gb-support-panel {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.gb-support-panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #126a42;
  background: #dcfce7;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-support-panel-head h3 {
  max-width: 440px;
  margin: 0;
  color: var(--gb-navy);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.2;
}

.gb-support-list {
  display: grid;
  gap: 8px;
  counter-reset: supportSteps;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gb-support-list li {
  counter-increment: supportSteps;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  padding: 12px;
  border: 1px solid #e5edf6;
  border-radius: 8px;
  color: #334155;
  background: #f8fbff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.38;
}

.gb-support-list li::before {
  content: counter(supportSteps, decimal-leading-zero);
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--gb-blue);
  background: #eaf4ff;
  font-size: 0.75rem;
  font-weight: 900;
}

.gb-support-list i {
  display: none;
}

.gb-support-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 13px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #166534;
  background: #f0fdf4;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.gb-support-note i {
  color: #16a34a;
  margin-top: 2px;
}

.gb-step-number {
  color: rgba(29, 95, 209, 0.16);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.gb-step-card--accent,
.gb-mvv-card--accent {
  border-color: rgba(53, 184, 111, 0.35);
}

.gb-page-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 330px;
  overflow: hidden;
  padding: 104px 0 54px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 184, 111, 0.28), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(29, 95, 209, 0.36), transparent 34%),
    linear-gradient(135deg, #06142c 0%, #0b2453 54%, #071b34 100%);
}

.gb-page-header-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.07) 48%, transparent 62%);
  background-size: 56px 56px, 56px 56px, 100% 100%;
  mask-image: linear-gradient(to bottom, black 58%, transparent 100%);
}

.gb-page-header::before {
  content: "";
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  bottom: 34px;
  width: min(26vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 50%, rgba(53, 184, 111, 0.14), transparent 58%);
}

.gb-page-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  background: linear-gradient(176deg, transparent 0 48%, #f7fafc 49% 100%);
}

.gb-page-header-inner {
  max-width: 980px;
  text-align: left;
}

.gb-page-header .gb-section-tag {
  color: #70f0b4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
}

.gb-page-header .gb-section-tag::before {
  background: #70f0b4;
}

.gb-page-header-title {
  color: #fff;
  max-width: 760px;
  margin: 10px 0 10px;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.gb-page-header-sub {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.72;
}

.gb-page-header-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.gb-page-header-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.gb-page-header-signals i {
  color: #70f0b4;
}

.gb-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 18px 0 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  font-size: 0.88rem;
  font-weight: 800;
}

.gb-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.gb-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.gb-breadcrumb .active {
  color: #fff;
}

.gb-about-img-wrap {
  position: relative;
  min-height: 420px;
}

.gb-about-img-card--main {
  width: 82%;
  height: 360px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf4ff, #eefbf3);
}

.gb-about-icon-large {
  color: var(--gb-blue);
  font-size: 7rem;
}

.gb-about-main-logo {
  width: min(68%, 260px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(13, 35, 73, 0.16));
}

.gb-about-badge-float {
  min-width: 230px;
}

.gb-about-badge-float span {
  display: block;
  color: var(--gb-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.gb-about-badge-1 {
  top: 42px;
  right: 0;
}

.gb-about-badge-2 {
  left: 34px;
  bottom: 22px;
}

.gb-about-text {
  color: var(--gb-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.gb-about-feat {
  padding: 12px 14px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.gb-team-card {
  text-align: center;
}

.gb-team-avatar {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--gb-blue);
  background: #eaf4ff;
  font-size: 2.2rem;
}

.gb-team-photo {
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eaf4ff;
}

.gb-team-role {
  color: var(--gb-green);
  font-weight: 900;
}

.gb-team-social a {
  color: var(--gb-blue);
  font-size: 1.2rem;
}

.gb-service-full-row {
  margin-top: 32px;
  padding: 30px;
}

.gb-service-full-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.gb-service-full-header h3 {
  margin: 0 0 8px;
  color: var(--gb-navy);
  font-weight: 900;
}

.gb-service-full-header p {
  margin: 0;
  color: var(--gb-muted);
  line-height: 1.7;
}

.gb-svc-sub-card {
  position: relative;
}

.gb-svc-sub-card > i {
  color: var(--gb-blue);
  font-size: 2rem;
}

.gb-svc-badge {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #126a42;
  background: #dcfce7;
  font-size: 0.75rem;
  font-weight: 900;
}

.gb-contact-info-card,
.gb-contact-form-wrap {
  padding: 30px;
}

.gb-contact-layout {
  --gb-contact-radius: 8px;
}

.gb-contact-aside {
  display: grid;
  gap: 0;
}

.gb-contact-aside .gb-section-title {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.gb-contact-aside .gb-section-sub {
  font-size: 0.98rem;
  line-height: 1.7;
}

.gb-form-intro {
  margin-bottom: 24px;
  color: var(--gb-muted);
  line-height: 1.65;
}

.gb-form-note {
  margin: 12px 0 0;
  color: var(--gb-muted);
  font-size: 0.84rem;
  text-align: center;
}

.gb-consult-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
}

.gb-consult-modal .modal-header {
  align-items: flex-start;
  padding: 24px 26px 16px;
  border-bottom: 1px solid var(--gb-line);
  background:
    linear-gradient(135deg, rgba(29, 95, 209, 0.08), rgba(29, 199, 132, 0.1)),
    #fff;
}

.gb-consult-modal .modal-title {
  color: var(--gb-navy);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.gb-consult-modal .modal-body {
  padding: 22px 26px 10px;
}

.gb-consult-modal .modal-footer {
  gap: 10px;
  padding: 18px 26px 24px;
  border-top: 0;
}

.gb-consult-modal .gb-form-intro {
  margin-bottom: 18px;
}

.gb-contact-info-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  min-height: 0;
  padding: 24px;
  border-color: rgba(29, 95, 209, 0.1);
  background:
    linear-gradient(180deg, rgba(238, 246, 255, 0.82), rgba(255, 255, 255, 0) 42%),
    #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.gb-contact-info-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  min-width: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--gb-line);
}

.gb-contact-info-item:first-child {
  padding-top: 0;
}

.gb-contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gb-contact-info-item > div:last-child {
  min-width: 0;
  flex: 1;
}

.gb-contact-info-item h6 {
  margin: 0 0 4px;
  font-weight: 900;
}

.gb-contact-info-item a {
  color: var(--gb-blue);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.gb-contact-info-item p {
  color: var(--gb-muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.gb-contact-info-card .gb-contact-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  font-size: 1.14rem;
}

.gb-contact-form-wrap {
  min-height: 100%;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.gb-form-group label {
  margin-bottom: 8px;
  color: var(--gb-ink);
  font-weight: 800;
}

.gb-form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  outline: none;
  color: var(--gb-ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea.gb-form-control {
  min-height: 150px;
}

.gb-form-control:focus {
  border-color: var(--gb-blue);
  box-shadow: 0 0 0 4px rgba(29, 95, 209, 0.12);
}

.gb-map-wrap {
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  box-shadow: var(--gb-shadow);
}

.gb-contact-map-wrap {
  height: 240px;
  margin-top: 20px;
  background: #e2e8f0;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.gb-contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gb-gallery-section {
  background: #f7fafc;
}

.gb-gallery-card {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gb-gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 95, 209, 0.26);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.gb-gallery-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: #e2e8f0;
}

.gb-gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gb-gallery-card:hover .gb-gallery-image-wrap img {
  transform: scale(1.05);
}

.gb-gallery-view {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 20, 44, 0.78);
  backdrop-filter: blur(10px);
}

.gb-empty-state {
  max-width: 560px;
  margin: 34px auto 0;
  padding: 42px 24px;
  border: 1px dashed rgba(29, 95, 209, 0.28);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.gb-empty-state i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-green));
  font-size: 1.8rem;
}

.gb-empty-state h3 {
  color: var(--gb-navy);
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 900;
}

.gb-empty-state p {
  margin: 0;
  color: var(--gb-muted);
}

.gb-gallery-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.gb-gallery-modal .modal-dialog {
  width: fit-content;
  max-width: calc(100vw - 32px);
}

.gb-gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 12px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
}

.gb-gallery-preview {
  display: block;
}

.gb-gallery-preview-media {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.gb-gallery-preview-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 80px);
  border-radius: 8px;
  object-fit: contain;
}

.gb-partners-section {
  background: #fff;
  padding: 64px 0 76px;
}

.gb-partners-heading {
  margin: 0 auto;
}

.gb-partners-heading .gb-section-title {
  color: #071f4a;
  font-size: clamp(1.85rem, 2.6vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 0;
  position: relative;
}

.gb-partners-heading .gb-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #071f4a;
}

.gb-partners-scroll-wrapper {
  overflow: hidden;
  margin-top: 30px;
  padding: 24px 0;
  background: #071f4a;
  border-block: 0;
}

.gb-partners-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: gbMarquee 52s linear infinite;
}

.gb-partner-logo {
  display: grid;
  place-items: center;
  width: 206px;
  height: 72px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.gb-partner-logo a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.gb-partners-section .gb-partner-logo img {
  display: block;
  max-width: 174px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.gb-partner-logo-fallback {
  color: #071f4a;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.gb-cta-section {
  background: #0d0f1a;
}

.gb-cta-inner {
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(53, 184, 111, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(29, 95, 209, 0.28), rgba(255, 255, 255, 0.04));
}

.gb-cta-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.gb-cta-desc {
  max-width: 720px;
  margin: 14px auto 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.75;
}

.gb-footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #080d17;
}

.gb-footer-logo {
  height: 58px;
  width: auto;
  border-radius: 8px;
}

.gb-footer-tagline {
  color: #fff;
  font-weight: 900;
}

.gb-footer-desc {
  line-height: 1.8;
}

.gb-footer-heading {
  margin-bottom: 18px;
  color: #fff;
  font-weight: 900;
}

.gb-footer-links,
.gb-footer-contact {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gb-footer-links a,
.gb-footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.gb-footer-links a:hover,
.gb-footer-contact a:hover {
  color: #fff;
}

.gb-footer-contact li {
  display: flex;
  gap: 10px;
}

.gb-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-social-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
}

.gb-social-icon:hover {
  color: #fff;
  background: var(--gb-blue);
}

.gb-whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 1.62rem;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34), 0 0 0 8px rgba(37, 211, 102, 0.1);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.gb-whatsapp-float.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gb-whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.42), 0 0 0 10px rgba(37, 211, 102, 0.14);
}

.gb-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.gb-footer-credit a {
  color: #7ee6a8;
  text-decoration: none;
}

.gb-heart {
  color: #ef5f67;
}

.gb-messages-container {
  position: fixed;
  top: 92px;
  right: 20px;
  z-index: 2000;
  width: min(420px, calc(100vw - 40px));
}

.gb-alert {
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--gb-shadow);
}

[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos].gb-aos-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gbFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes gbMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .gb-hero::before,
  .gb-hero::after {
    display: none;
  }

  .gb-hero-visual-panel {
    display: none;
  }

  .gb-navbar {
    min-height: 70px;
  }

  .navbar-collapse {
    padding: 14px 0 18px;
  }

  .gb-nav-link::after {
    display: none;
  }

  .gb-hero-shell {
    min-height: auto !important;
    padding: 90px 0 58px;
  }

  .gb-hero-enterprise {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gb-hero-copy {
    order: 2;
    max-width: 100%;
  }

  .gb-hero-proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .gb-hero-proof .gb-stat-divider {
    display: none;
  }

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

  .gb-hero-actions,
  .gb-cta-actions,
  .gb-hero-stats,
  .gb-service-full-header {
    align-items: stretch;
  }

  .gb-hero-stats {
    width: 100%;
  }

  .gb-hero-panel-metrics {
    grid-template-columns: 1fr;
  }

  .gb-hero-proof .gb-hero-trustbar {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .gb-hero-enterprise {
    min-height: 460px;
  }

  .gb-hero-copy {
    padding: 24px 0;
  }

  .gb-hero-visual-panel {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .gb-logo-img {
    height: 46px;
  }

  .gb-hero-actions .btn,
  .gb-cta-actions .btn {
    width: 100%;
    margin-right: 0 !important;
  }

  .gb-hero {
    background:
      linear-gradient(135deg, #07111f 0%, #0b1b2e 54%, #071713 100%);
  }

  .gb-page-header {
    min-height: auto;
    padding: 92px 0 42px;
  }

  .gb-page-header::before {
    right: -120px;
    bottom: 44px;
    width: 260px;
  }

  .gb-page-header::after {
    height: 30px;
  }

  .gb-page-header-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.04;
  }

  .gb-page-header-sub {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .gb-page-header-signals {
    gap: 8px;
    margin-top: 14px;
  }

  .gb-page-header-signals span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .gb-breadcrumb {
    margin-top: 14px;
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  .gb-hero-shell {
    min-height: 100svh !important;
    padding: 74px 0 34px;
    gap: 14px;
  }

  .gb-hero-enterprise {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .gb-hero-mobile-media {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 16px auto 14px;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f8fa;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }

  .gb-hero-mobile-media img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center 46%;
  }

  .gb-hero-copy {
    order: 2;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 0;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(8, 15, 27, 0.72);
    backdrop-filter: blur(14px);
  }

  .gb-hero-badge {
    max-width: 100%;
    padding: 7px 10px;
    margin-bottom: 14px;
    font-size: 0.74rem;
    white-space: normal;
  }

  .gb-hero-title {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    line-height: 1.12;
  }

  .gb-hero-enterprise .gb-hero-desc {
    margin: 12px 0 18px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .gb-hero-badge,
  .gb-hero-title,
  .gb-hero-desc {
    text-align: left;
  }

  .gb-hero-actions,
  .gb-hero-chips {
    justify-content: flex-start;
  }

  .gb-hero-chips {
    gap: 8px;
  }

  .gb-hero-chips span {
    padding: 7px 9px;
    font-size: 0.74rem;
  }

  .gb-hero-proof {
    display: none;
  }

  .gb-hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gb-stat-divider {
    width: 100%;
    height: 1px;
  }

  .gb-about-img-wrap {
    min-height: 320px;
  }

  .gb-about-img-card--main {
    width: 100%;
    height: 300px;
  }

  .gb-about-badge-float {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .gb-service-full-row,
  .gb-contact-info-card,
  .gb-contact-form-wrap {
    padding: 22px;
  }

  .gb-contact-aside .gb-section-title {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .gb-contact-aside .gb-section-sub {
    margin-bottom: 18px !important;
  }

  .gb-contact-info-item {
    gap: 12px;
    padding: 15px 0;
  }

  .gb-contact-info-card .gb-contact-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 1.12rem;
  }

  .gb-contact-map-wrap {
    height: 220px;
    margin-top: 18px;
  }

  .gb-consult-modal .modal-dialog {
    margin: 12px;
  }

  .gb-consult-modal .modal-header,
  .gb-consult-modal .modal-body,
  .gb-consult-modal .modal-footer {
    padding-inline: 18px;
  }

  .gb-consult-modal .modal-footer {
    align-items: stretch;
  }

  .gb-consult-modal .modal-footer .btn {
    width: 100%;
  }

  .gb-gallery-modal .modal-dialog {
    margin: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
  }

  .gb-gallery-modal .modal-content {
    border-radius: 8px;
  }

  .gb-gallery-close {
    top: 10px;
    right: 10px;
    padding: 9px;
  }

  .gb-gallery-preview-media {
    min-height: auto;
    padding: 0;
  }

  .gb-gallery-preview-media img {
    width: auto;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 72px);
  }

  .gb-partners-section {
    padding: 48px 0 58px;
  }

  .gb-partners-scroll-wrapper {
    margin-top: 24px;
    padding: 18px 0;
  }

  .gb-partners-track {
    gap: 12px;
    animation-duration: 46s;
  }

  .gb-partner-logo {
    width: 172px;
    height: 64px;
    padding: 8px 12px;
  }

  .gb-partners-section .gb-partner-logo img {
    max-width: 146px;
    max-height: 46px;
  }

  .gb-footer-bottom {
    flex-direction: column;
  }

  .gb-whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .gb-hero-mobile-media img {
    height: 205px;
    object-position: center 46%;
  }
}
