: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 {
  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-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: 100vh;
  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;
  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:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.78) 42%, rgba(7, 17, 31, 0.18) 72%),
    url("../images/growbiz-hero-premium.png"),
    linear-gradient(135deg, #07111f 0%, #0b1b2e 54%, #071713 100%);
  background-size: cover;
  background-position: center right;
}

.gb-hero-overlay {
  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: 116px 0 76px;
}

.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-mobile-media {
  display: none;
}

.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;
}

.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;
  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-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gb-stats-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.gb-stats-num {
  margin-top: 18px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
}

.gb-stats-lbl {
  color: rgba(255, 255, 255, 0.68);
}

.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: grid;
  place-items: center;
  min-height: 430px;
  padding-top: 98px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 22%, rgba(53, 184, 111, 0.28), transparent 32%),
    linear-gradient(135deg, #0b1220, #123766);
}

.gb-page-header-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.gb-page-header-title {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.gb-page-header-sub {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
}

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

.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-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-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-contact-info-card {
  display: grid;
  gap: 20px;
}

.gb-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.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;
}

.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-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-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-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-navbar {
    min-height: 70px;
  }

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

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

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

  .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 (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-hero-shell {
    min-height: 100svh !important;
    padding: 82px 0 42px;
    gap: 14px;
  }

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

  .gb-hero-mobile-media {
    display: block;
    width: 100%;
    margin: 18px 0 16px;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f8fa;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

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

  .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-stats-grid {
    grid-template-columns: 1fr;
  }

  .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-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;
  }
}

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