:root {
  --gb-green: #a2c801;
  --gb-green-dark: #a2c801;
  --gb-blue: #0B5CAB;
  --gb-blue-dark: #073B72;
  --gb-navy: #014380;
  --gb-text: #263238;
  --gb-light: #F5F9FC;
  --gb-border: #a2c801;
  --gb-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--gb-text);
  background: #ffffff;
  line-height: 1.65;
}

a {
  text-decoration: none;
}

.gb-container {
  width: min(1320px, 89%);
  margin: 0 auto;
}

.gb-section {
  padding: 80px 0;
}

.gb-section-light {
  background: var(--gb-light);
}

.gb-eyebrow {
  color: var(--gb-blue);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

h1, h2, h3 {
  color: var(--gb-navy);
  line-height: 1.2;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -1.2px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -.7px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 18px;
  color: var(--gb-muted);
  font-size: 17px;
}

.gb-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../src/photos/new-home-page/hero-clean.webp") center/cover no-repeat;
  color: #fff;
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
  margin: 10px;
  border-radius: 30px;
}

.gb-hero h1,
.gb-hero p {
  color: #fff;
}

.gb-hero p {
  max-width: 1320px;
  font-size: 20px;
  opacity: .95;
}

.gb-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

.gb-breadcrumb {
  font-size: 14px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.82);
}

.gb-breadcrumb a {
  color: #fff;
  font-weight: 600;
}

.gb-hero-card {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.gb-hero-card strong {
  color: #fff;
  font-size: 42px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.gb-hero-card span {
  color: rgba(255,255,255,.86);
  display: block;
  margin-bottom: 22px;
}

.gb-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.gb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}

.gb-btn-primary {
  background: var(--gb-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(122,174,32,.25);
}

.gb-btn-primary:hover {
  background: var(--gb-green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.gb-btn-secondary {
  background: #fff;
  color: var(--gb-blue-dark);
}

.gb-btn-secondary:hover {
  background: #eaf3fb;
  color: var(--gb-blue-dark);
  transform: translateY(-2px);
}

.gb-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gb-image {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(7,27,51,.14);
  border: 1px solid var(--gb-border);
}

.gb-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.gb-card {
  background: #fff;
  border: 1px solid var(--gb-border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(7,27,51,.06);
  height: 100%;
}

.gb-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gb-blue), var(--gb-green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.gb-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.gb-list li {
  padding: 11px 0 11px 32px;
  position: relative;
  color: var(--gb-text);
  border-bottom: 1px solid #edf2f6;
}

.gb-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gb-green-dark);
  font-weight: 800;
}

.gb-solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.gb-solution {
  background: #fff;
  border: 1px solid var(--gb-border);
  border-radius: 20px;
  padding: 24px;
  min-height: 170px;
}

.gb-solution h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.gb-stat-band {
  background: linear-gradient(120deg, var(--gb-navy), var(--gb-blue-dark));
  color: #fff;
  border-radius: 30px;
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gb-stat strong {
  color: #fff;
  display: block;
  font-size: 36px;
  margin-bottom: 6px;
}

.gb-stat span {
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

.gb-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.gb-value {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--gb-border);
}

.gb-cta {
  color: #fff;
  border-radius: 34px;
  padding: 56px;
  text-align: center;
}

.gb-cta h2,
.gb-cta p {
  color: #fff;
}
.cta-text-box h2{
  color: #fff;
}

.gb-cta p {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  opacity: .9;
}

@media (max-width: 992px) {
  .gb-hero-grid,
  .gb-grid-2,
  .gb-card-grid,
  .gb-solution-grid,
  .gb-stat-band,
  .gb-values {
    grid-template-columns: 1fr;
  }

  .gb-hero {
    padding: 80px 0 70px;
  }

  .gb-section {
    padding: 60px 0;
  }

  .gb-stat-band,
  .gb-cta {
    padding: 32px;
  }
}
