.g2link-container {
    display: flex;
    max-width: 125rem;
    margin: 0 auto;
    padding: 0 0;
    flex-wrap: wrap;
}
.g2link {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 2.5rem;
    background-color: #ffffff;
}

.home-g2-btn {
    display: inline-block;
    width: 225px;
    padding: 3px 7px;
    background-color: #FF492C;
    color: var(--brightText) !important;
    text-decoration: none;
    border: 1px solid #FF492C;
    border-radius: 25px;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
    margin-top: 1.2rem;
    margin-right: 2rem;
    line-height: 1.4;
}
.home-g2-btn:hover {
    font-weight: 600;
}

/* LOGOS */
.home-logos {
    display: flex;
    align-items: center;
    padding-top: 0rem;
    margin-top:-2rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}

/* Container sizing and clip safety */
.logo-container {
  max-width: 1250px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Optional: Adds a smooth fade out on the left and right edges */
.logo-container::before,
.logo-container::after {
  content: "";
  height: 100%;
  width: 150px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.logo-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.logo-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-item {
  /* Remove fixed width/height from the container to let the image dictate the size */
  margin: 0 40px; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* Force all Illustrator SVGs to perfectly match at 12px high */
.logo-item img {
  height: 20px !important;   /* Matches your intended design height */
  width: auto !important;    /* Keeps the logo's unique aspect ratio perfect */
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* Optional: Pauses the animation when a user hovers over the logos */
.logo-track:hover {
  animation-play-state: paused;
}

.sma-grid-container {
  max-width: 100rem; /* 2000px, given browser default 16px root font */
  width: 100%;
  margin: 0 auto;
  padding: 1rem 3rem;
}

.sma-grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr 1fr 0.4fr 1fr; /* 2nd & 4th columns narrower */
  gap: 0; /* no gap */
}

.sma-grid .sma-text-cell {
  padding: 1rem 0;
  text-align: center;
}
.sma-grid .sma-image-cell {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sma-grid .sma-image-cell img {
  height: 100px;
  width: auto;
  max-width: 50%;
  object-fit: contain; /* shrinks to fit, preserves aspect ratio, no cropping */
  display: block;
  margin: 0;
  padding: 0;
}

.sma-grid .sma-image-cell:nth-child(2) img,
.sma-grid .sma-image-cell:nth-child(4) img {
  max-width: 100%;
}
/*    VALUE BOXES    */
.value-section-master   {
    padding-block: 3rem;
    background-color: #ffffff;
}
.value-section-container {
    width: 100%;
    max-width: 125rem;
    margin-inline: auto;
    padding-inline: 2.4rem;
    padding-bottom: 4rem
}
.value-boxes {
    display: flex;
    gap: 2.4rem;
}
.value-box {
    flex: 0 0 calc((100% - 4.8rem) / 3);
    width: calc((100% - 4.8rem) / 3);
    border: 1px solid var(--solGreenBorder);
    border-radius: 20px;
    background: linear-gradient(135deg, #00afa903 10%, #00afa91a 80%);
    padding: 1.5rem 2.8rem;
}
.value-box h3 {
    font-size: var(--fs-large);
    font-weight: var(--fw-h4);
    margin-bottom: 1.2rem;
    margin-top: 0;
}
.value-box p {
    font-size: var(--fw-body);
    line-height: 1.6;
}



@media (max-width: 768px) {
    .value-boxes {
        flex-direction: column;
    }
    .value-box {
        flex: 1 1 auto;
        width: 100%;
    }
    .sma-grid {
        grid-template-columns: 1fr;
    }
    .sma-grid .sma-image-cell:nth-child(2),
    .sma-grid .sma-image-cell:nth-child(4),
    .sma-grid .sma-text-cell:nth-child(7),
    .sma-grid .sma-text-cell:nth-child(9) {
        display: none;
    }
    .sma-grid .sma-image-cell:nth-child(1) { order: 1; }
    .sma-grid .sma-text-cell:nth-child(6)  { order: 2; }
    .sma-grid .sma-image-cell:nth-child(3) { order: 3; }
    .sma-grid .sma-text-cell:nth-child(8)  { order: 4; }
    .sma-grid .sma-image-cell:nth-child(5) { order: 5; }
    .sma-grid .sma-text-cell:nth-child(10) { order: 6; }
}

/* AI Sprawl */

.ai-section {
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: #ffffff;
}
.ai-container {
    display: flex;
    max-width: 125rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex-wrap: wrap;
}


