:root {
  --gl-primary: #00796B;
  --gl-primary-dark: #00574F;
  --gl-primary-light: #B2DFDB;
  --gl-secondary: #1565C0;
  --gl-bg: #F7FAFA;
  --gl-bg-alt: #EEF5F4;
  --gl-bg-dark: #0A1F2E;
  --gl-bg-card: #1A3344;
  --gl-text: #0F2230;
  --gl-muted: #4A6B7A;
  --gl-border: #C8DCDA;
  --gl-radius: 6px;
  --gl-shadow: 0 2px 16px rgba(0,121,107,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #0F2230;
  background-color: #F7FAFA;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F2230;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

p {
  font-size: 16px;
  line-height: 1.65;
  color: #0F2230;
}

.gl-text-muted {
  color: #4A6B7A;
}

.gl-section {
  padding: 80px 0;
}

.gl-section-alt {
  background-color: #EEF5F4;
}

.gl-section-dark {
  background-color: #0A1F2E;
}

.gl-section-compact {
  padding: 60px 0;
}

.gl-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #00796B;
}

a {
  color: #00796B;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #00574F;
}

.gl-btn-primary {
  display: inline-block;
  background-color: #00796B;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4px;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.gl-btn-primary:hover {
  background-color: #00574F;
  color: #FFFFFF;
}

.gl-btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #00796B;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4px;
  padding: 11px 28px;
  border-radius: 4px;
  border: 1.5px solid #00796B;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.gl-btn-secondary:hover {
  background-color: rgba(0,121,107,0.08);
  color: #00796B;
}

.gl-btn-dark {
  display: inline-block;
  background-color: #FFFFFF;
  color: #00796B;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4px;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.gl-btn-dark:hover {
  background-color: #EEF5F4;
  color: #00796B;
}

.gl-site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(247,250,250,0.97);
  border-bottom: 1px solid #C8DCDA;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.2s;
}

.gl-site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,121,107,0.1);
}

.gl-site-nav .navbar-brand img {
  height: 36px;
  width: auto;
}

.gl-site-nav .nav-link,
.gl-site-nav .nav-link:visited {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #0F2230;
  padding: 8px 14px;
  transition: color 0.2s;
}

.gl-site-nav .nav-link:hover,
.gl-site-nav .nav-link.active {
  color: #00796B;
}

.gl-site-nav .navbar-toggler {
  border-color: #C8DCDA;
}

.gl-site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300796B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.gl-hero {
  padding: 120px 0 100px;
  background-color: #F7FAFA;
  margin-top: 65px;
}

.gl-hero-split {
  min-height: 600px;
  align-items: center;
}

.gl-hero-split .gl-hero-text {
  padding-right: 48px;
}

.gl-hero-split .gl-hero-visual {
  position: relative;
}

.gl-hero-split .gl-hero-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,121,107,0.15);
}

.gl-hero-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.gl-hero-left {
  max-width: 680px;
}

.gl-hero-bg {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.gl-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,46,0.82) 0%, rgba(0,121,107,0.45) 100%);
  z-index: 1;
}

.gl-hero-bg .container {
  position: relative;
  z-index: 2;
}

.gl-hero-bg h1,
.gl-hero-bg p {
  color: #FFFFFF;
}

.gl-hero-tagline {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #4A6B7A;
  margin-bottom: 32px;
}

.gl-hero-dark-text h1,
.gl-hero-dark-text p.gl-hero-tagline {
  color: #FFFFFF;
}

.gl-hero-dark-text p.gl-hero-tagline {
  color: rgba(255,255,255,0.8);
}

.gl-stats-bar {
  background-color: #00796B;
  padding: 36px 0;
}

.gl-stats-bar .gl-stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.gl-stats-bar .gl-stat-item:last-child {
  border-right: none;
}

.gl-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  display: block;
}

.gl-stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 4px;
}

.gl-stats-cards .gl-stat-card {
  background-color: #FFFFFF;
  border: 1px solid #C8DCDA;
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,121,107,0.08);
  height: 100%;
}

.gl-stats-cards .gl-stat-card .gl-stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #00796B;
  display: block;
}

.gl-stats-cards .gl-stat-card .gl-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #4A6B7A;
  display: block;
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.gl-section-heading {
  margin-bottom: 56px;
}

.gl-section-heading h2 {
  margin-top: 8px;
  margin-bottom: 16px;
}

.gl-section-heading p {
  font-size: 18px;
  color: #4A6B7A;
  max-width: 640px;
}

.gl-section-heading.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.gl-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #C8DCDA;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,121,107,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gl-feature-card .gl-feature-icon {
  width: 52px;
  height: 52px;
  background-color: #EEF5F4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #00796B;
}

.gl-feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.gl-feature-card p {
  color: #4A6B7A;
  font-size: 15px;
  flex: 1;
}

.gl-alternating-row {
  align-items: center;
  padding: 48px 0;
}

.gl-alternating-row + .gl-alternating-row {
  border-top: 1px solid #C8DCDA;
}

.gl-alternating-row .gl-alt-text {
  padding: 0 24px;
}

.gl-alternating-row .gl-alt-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,121,107,0.12);
}

.gl-alternating-row h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.gl-alternating-row p {
  font-size: 16px;
  color: #4A6B7A;
  line-height: 1.7;
}

.gl-process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #C8DCDA;
}

.gl-process-step:last-child {
  border-bottom: none;
}

.gl-step-number {
  font-size: 48px;
  font-weight: 700;
  color: #B2DFDB;
  line-height: 1;
  min-width: 72px;
  font-feature-settings: "tnum";
}

.gl-step-icon {
  width: 52px;
  height: 52px;
  background-color: #00796B;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.gl-step-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.gl-step-content p {
  color: #4A6B7A;
  font-size: 15px;
}

.gl-impact-numbers {
  background-color: #0A1F2E;
  padding: 80px 0;
}

.gl-impact-item {
  text-align: center;
}

.gl-impact-number {
  font-size: 56px;
  font-weight: 700;
  color: #00796B;
  line-height: 1.1;
  display: block;
}

.gl-impact-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(200,214,229,0.85);
  display: block;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.gl-cta-banner {
  background-color: #0A1F2E;
  padding: 80px 0;
  text-align: center;
}

.gl-cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.gl-cta-banner p {
  color: rgba(200,214,229,0.85);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.gl-cta-card {
  background-color: #EEF5F4;
  padding: 60px 0;
  text-align: center;
}

.gl-cta-card-inner {
  background-color: #FFFFFF;
  border: 1px solid #C8DCDA;
  border-radius: 6px;
  padding: 48px 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0,121,107,0.08);
}

.gl-cta-card-inner h2 {
  margin-bottom: 16px;
}

.gl-cta-card-inner p {
  color: #4A6B7A;
  font-size: 16px;
  margin-bottom: 28px;
}

.gl-portfolio-grid .gl-portfolio-card {
  background-color: #FFFFFF;
  border: 1px solid #C8DCDA;
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0,121,107,0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.gl-portfolio-grid .gl-portfolio-card:hover {
  box-shadow: 0 4px 24px rgba(0,121,107,0.14);
  border-color: #00796B;
}

.gl-portfolio-logo {
  width: 128px;
  height: 64px;
  background-color: #EEF5F4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #4A6B7A;
}

.gl-portfolio-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.gl-portfolio-card p {
  font-size: 14px;
  color: #4A6B7A;
  flex: 1;
  margin-bottom: 16px;
}

.gl-stage-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 3px;
  background-color: #EEF5F4;
  color: #00796B;
  border: 1px solid #B2DFDB;
  margin-top: auto;
}

.gl-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.gl-filter-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 7px 16px;
  border-radius: 4px;
  border: 1.5px solid #C8DCDA;
  background-color: #FFFFFF;
  color: #4A6B7A;
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
}

.gl-filter-tag.active {
  border-color: #00796B;
  color: #00796B;
  background-color: #EEF5F4;
}

.gl-team-section {
  padding: 80px 0;
}

.gl-team-card {
  background-color: #FFFFFF;
  border: 1px solid #C8DCDA;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,121,107,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gl-team-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  background-color: #EEF5F4;
}

.gl-team-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gl-team-card-body h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.gl-team-card-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #00796B;
  margin-bottom: 12px;
}

.gl-team-card-bg {
  font-size: 12px;
  font-weight: 600;
  color: #4A6B7A;
  background-color: #EEF5F4;
  border-radius: 3px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.gl-team-card-body p {
  font-size: 14px;
  color: #4A6B7A;
  line-height: 1.6;
  flex: 1;
}

.gl-advisor-card {
  text-align: center;
  padding: 24px;
}

.gl-advisor-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  background-color: #EEF5F4;
  margin: 0 auto 16px;
  display: block;
}

.gl-advisor-card h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.gl-advisor-card p {
  font-size: 13px;
  color: #4A6B7A;
}

.gl-contact-section {
  padding: 80px 0;
}

.gl-contact-form-wrap {
  padding-right: 48px;
}

.gl-contact-info-wrap {
  padding-left: 24px;
}

.gl-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.gl-contact-info-item .gl-contact-icon {
  width: 44px;
  height: 44px;
  background-color: #EEF5F4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #00796B;
  flex-shrink: 0;
}

.gl-contact-info-item .gl-contact-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #0F2230;
  display: block;
  margin-bottom: 4px;
}

.gl-contact-info-item .gl-contact-text span,
.gl-contact-info-item .gl-contact-text a {
  font-size: 15px;
  color: #4A6B7A;
}

.gl-form-group {
  margin-bottom: 20px;
}

.gl-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0F2230;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.gl-form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F2230;
  background-color: #FFFFFF;
  border: 1.5px solid #C8DCDA;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}

.gl-form-control:focus {
  border-color: #00796B;
  box-shadow: 0 0 0 3px rgba(0,121,107,0.1);
}

.gl-form-control::placeholder {
  color: #4A6B7A;
  opacity: 0.7;
}

textarea.gl-form-control {
  resize: vertical;
  min-height: 130px;
}

.gl-blog-grid {
  padding: 80px 0;
}

.gl-blog-card {
  background-color: #FFFFFF;
  border: 1px solid #C8DCDA;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,121,107,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
}

.gl-blog-card:hover {
  box-shadow: 0 4px 24px rgba(0,121,107,0.14);
}

.gl-blog-card-img {
  height: 200px;
  overflow: hidden;
  display: block;
}

.gl-blog-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}

.gl-blog-card:hover .gl-blog-card-img img {
  transform: scale(1.03);
}

.gl-blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gl-blog-card-meta {
  font-size: 12px;
  font-weight: 500;
  color: #4A6B7A;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.gl-blog-card-body h4 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.35;
  flex: 1;
}

.gl-blog-card-body h4 a {
  color: #0F2230;
  transition: color 0.2s;
}

.gl-blog-card-body h4 a:hover {
  color: #00796B;
}

.gl-blog-card-body p {
  font-size: 14px;
  color: #4A6B7A;
  line-height: 1.6;
  margin-bottom: 16px;
}

.gl-read-more {
  font-size: 13px;
  font-weight: 600;
  color: #00796B;
  letter-spacing: 0.3px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.gl-read-more:hover {
  color: #00574F;
  gap: 10px;
}

.gl-site-footer {
  background-color: #0A1F2E;
  padding: 60px 0 32px;
}

.gl-footer-brand .gl-footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.gl-footer-brand p {
  font-size: 14px;
  color: rgba(200,214,229,0.7);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 16px;
}

.gl-footer-copyright {
  font-size: 13px;
  color: rgba(200,214,229,0.5);
}

.gl-footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(200,214,229,0.9);
  margin-bottom: 18px;
}

.gl-footer-col ul {
  list-style: none;
}

.gl-footer-col ul li {
  margin-bottom: 10px;
}

.gl-footer-col ul li a {
  font-size: 14px;
  color: rgba(200,214,229,0.65);
  transition: color 0.2s;
}

.gl-footer-col ul li a:hover {
  color: #00796B;
}

.gl-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.gl-footer-contact-item i {
  font-size: 14px;
  color: #00796B;
  margin-top: 2px;
  flex-shrink: 0;
}

.gl-footer-contact-item span,
.gl-footer-contact-item a {
  font-size: 14px;
  color: rgba(200,214,229,0.7);
  line-height: 1.5;
}

.gl-footer-contact-item a:hover {
  color: #00796B;
}

.gl-footer-divider {
  border-color: rgba(200,214,229,0.1);
  margin: 40px 0 24px;
}

.gl-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: #0A1F2E;
  border-top: 1px solid rgba(200,214,229,0.15);
  padding: 18px 0;
}

.gl-cookie-banner .gl-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.gl-cookie-banner .gl-cookie-text {
  font-size: 14px;
  color: #C8D6E5;
  line-height: 1.55;
  flex: 1;
  min-width: 260px;
}

.gl-cookie-banner .gl-cookie-text a {
  color: #00796B;
  text-decoration: underline;
}

.gl-cookie-banner .gl-cookie-text a:hover {
  color: #B2DFDB;
}

.gl-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.gl-cookie-accept {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  background-color: #00796B;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.gl-cookie-accept:hover {
  background-color: #00574F;
}

.gl-cookie-manage {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  background-color: transparent;
  color: rgba(200,214,229,0.75);
  border: 1.5px solid rgba(200,214,229,0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.gl-cookie-manage:hover {
  border-color: rgba(200,214,229,0.5);
  color: #C8D6E5;
}

.gl-legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.gl-legal-content h2 {
  font-size: 26px;
  margin-top: 48px;
  margin-bottom: 14px;
}

.gl-legal-content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
}

.gl-legal-content p {
  color: #4A6B7A;
  margin-bottom: 16px;
}

.gl-legal-content ul {
  color: #4A6B7A;
  padding-left: 24px;
  margin-bottom: 16px;
}

.gl-legal-content ul li {
  margin-bottom: 8px;
}

.gl-404-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #F7FAFA;
  padding: 40px 24px;
}

.gl-404-number {
  font-size: 96px;
  font-weight: 700;
  color: #00796B;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.gl-404-icon {
  font-size: 40px;
  color: #00796B;
  margin-bottom: 20px;
}

.gl-404-page h1 {
  font-size: 30px;
  margin-bottom: 16px;
}

.gl-404-page p {
  font-size: 17px;
  color: #4A6B7A;
  max-width: 480px;
  margin: 0 auto 32px;
}

.gl-about-story {
  max-width: 760px;
}

.gl-about-story p {
  font-size: 17px;
  line-height: 1.75;
  color: #4A6B7A;
  margin-bottom: 22px;
}

.gl-values-grid .gl-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gl-values-grid .gl-value-icon {
  width: 44px;
  height: 44px;
  background-color: #EEF5F4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #00796B;
  flex-shrink: 0;
}

.gl-values-grid .gl-value-content h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.gl-values-grid .gl-value-content p {
  font-size: 14px;
  color: #4A6B7A;
}

@media (max-width: 991px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .gl-hero {
    padding: 100px 0 70px;
  }

  .gl-hero-split .gl-hero-text {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .gl-contact-form-wrap {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .gl-contact-info-wrap {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .gl-section {
    padding: 60px 0;
  }

  .gl-stats-bar .gl-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 16px 20px;
  }

  .gl-stats-bar .gl-stat-item:last-child {
    border-bottom: none;
  }

  .gl-impact-number {
    font-size: 40px;
  }

  .gl-cookie-banner .gl-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* vc0502-dark-section-safeguard -- prevent dark-bg sections from inheriting default dark text */
[class*="-dark"] h1,
[class*="-dark"] h2,
[class*="-dark"] h3,
[class*="-dark"] h4,
[class*="-dark"] h5,
[class*="-dark"] h6,
[class*="dark-"] h1,
[class*="dark-"] h2,
[class*="dark-"] h3,
[class*="dark-"] h4,
[class*="dark-"] h5,
[class*="dark-"] h6,
[class*="-night"] h1,
[class*="-night"] h2,
[class*="-night"] h3 {
  color: #E8F5F2 !important;
}
[class*="-dark"] p,
[class*="-dark"] .lead,
[class*="dark-"] p,
[class*="dark-"] .lead {
  color: color-mix(in srgb, #E8F5F2 82%, transparent) !important;
}
[class*="-dark"] .eyebrow,
[class*="-dark"] .kicker,
[class*="-dark"] [class*="section-label"],
[class*="dark-"] .eyebrow,
[class*="dark-"] .kicker,
[class*="dark-"] [class*="section-label"] {
  color: #3DB0A0 !important;
}


/* ===== Hero as background image (index) ===== */
.gl-hero-bg-full {
  padding: 180px 0 140px;
  margin-top: 65px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #0A1F2E;
}
.gl-hero-bg-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,46,0.94) 0%, rgba(10,31,46,0.82) 40%, rgba(10,31,46,0.30) 85%, rgba(10,31,46,0.10) 100%);
  z-index: 1;
}
.gl-hero-bg-full .container {
  position: relative;
  z-index: 2;
}
.gl-hero-bg-full .gl-hero-left {
  max-width: 640px;
}
.gl-hero-bg-full h1 {
  color: #FFFFFF;
}
.gl-hero-bg-full .gl-hero-tagline {
  color: rgba(232,237,245,0.88);
}
.gl-hero-bg-full .gl-label {
  color: #3DB0A0;
}
.gl-hero-bg-full .gl-btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.75);
}
.gl-hero-bg-full .gl-btn-secondary:hover {
  background-color: rgba(255,255,255,0.10);
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.gl-btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 12px 8px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.gl-btn-ghost:hover {
  color: #FFFFFF;
  border-bottom-color: #3DB0A0;
}

/* ===== Thesis pillars grid (replaces alternating rows on index) ===== */
.gl-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gl-pillar-card {
  background: #FFFFFF;
  border: 1px solid #C8DCDA;
  border-radius: 8px;
  padding: 36px 28px 28px;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,121,107,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.gl-pillar-card:hover {
  box-shadow: 0 6px 28px rgba(0,121,107,0.16);
  transform: translateY(-3px);
}
.gl-pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #00796B;
}
.gl-pillar-card:nth-child(2)::before { background: #C9A13D; }
.gl-pillar-card:nth-child(3)::before { background: #1565C0; }
.gl-pillar-roman {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #4A6B7A;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.gl-pillar-icon {
  font-size: 30px;
  color: #00796B;
  margin-bottom: 16px;
  line-height: 1;
}
.gl-pillar-card:nth-child(2) .gl-pillar-icon { color: #C9A13D; }
.gl-pillar-card:nth-child(3) .gl-pillar-icon { color: #1565C0; }
.gl-pillar-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.gl-pillar-card > p {
  font-size: 15px;
  color: #4A6B7A;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.gl-pillar-meta {
  padding-top: 16px;
  border-top: 1px solid #EEF5F4;
  font-size: 13px;
  color: #0F2230;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gl-pillar-count {
  color: #4A6B7A;
  font-weight: 400;
  font-size: 12.5px;
}

/* ===== Horizontal process timeline (replaces vertical numbered list) ===== */
.gl-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 16px;
}
.gl-process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-image: linear-gradient(to right, #C8DCDA 50%, transparent 50%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.gl-timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 4px;
}
.gl-timeline-dot {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: #FFFFFF;
  border: 2px solid #00796B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00796B;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,121,107,0.12);
}
.gl-timeline-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: #00796B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}
.gl-timeline-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.gl-timeline-step p {
  font-size: 14px;
  color: #4A6B7A;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .gl-hero-bg-full {
    padding: 130px 0 90px;
    background-position: center;
  }
  .gl-hero-bg-full::before {
    background: linear-gradient(180deg, rgba(10,31,46,0.88) 0%, rgba(10,31,46,0.75) 100%);
  }
  .gl-pillar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gl-process-timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
  .gl-process-timeline::before { display: none; }
}
@media (max-width: 575.98px) {
  .gl-hero-bg-full { padding: 110px 0 70px; }
  .gl-process-timeline { grid-template-columns: 1fr; }
}
