@charset "utf-8";

/* Grey section band */
.sg-systems-band{
  padding: 100px 0;
  background: #f6f7f8;
}

/* Header */
.sg-systems-band .section-head{
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.sg-systems-band .section-label{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0063A6;
}

.sg-systems-band .section-head h2{
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.1;
  color: #123257;
}

.sg-systems-band .section-head p{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #5b6673;
}

/* List */
.sg-systems-list{
  display: grid;
  gap: 34px;
}

/* Card */
.sg-system-card{
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  align-items: stretch;
}

.sg-system-card--reverse{
  grid-template-columns: 1.08fr 1.02fr;
}

.sg-system-card--reverse .sg-system-card__image{
  order: 2;
}

.sg-system-card--reverse .sg-system-card__content{
  order: 1;
}

/* Image side */
.sg-system-card__image{
  position: relative;
  min-height: 340px;
  background: #e9edf1;
}

.sg-system-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* soft white fade into content */
.sg-system-card__image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0) 68%, rgba(255,255,255,.96) 100%);
  pointer-events: none;
}

.sg-system-card--reverse .sg-system-card__image::after{
  background: linear-gradient(to left, rgba(255,255,255,0) 68%, rgba(255,255,255,.96) 100%);
}

/* Content side */
.sg-system-card__content{
  padding: 42px 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sg-system-card__eyebrow{
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0063A6;
}

.sg-system-card__content h3{
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.15;
  color: #123257;
  font-weight: 800;
}

.sg-system-card__content p{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: #55606d;
}

/* Bullet points */
.sg-system-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sg-system-points li{
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #334150;
}

.sg-system-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0063A6;
}

/* Actions */
.sg-system-card__actions{
  margin-top: 24px;
}

/* Buttons */
.btn2026{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn2026:hover{
  transform: translateY(-1px);
}

.btn2026--primary{
  color: #fff;
  background: linear-gradient(135deg, #0063A6 0%, #0b5f9a 100%);
  box-shadow: 0 10px 22px rgba(0,99,166,.22);
}

/* Responsive */
@media (max-width: 1024px){
  .sg-system-card,
  .sg-system-card--reverse{
    grid-template-columns: 1fr;
  }

  .sg-system-card--reverse .sg-system-card__image,
  .sg-system-card--reverse .sg-system-card__content{
    order: initial;
  }

  .sg-system-card__image{
    min-height: 280px;
  }

  .sg-system-card__image::after,
  .sg-system-card--reverse .sg-system-card__image::after{
    background: linear-gradient(to top, rgba(255,255,255,.96) 0%, rgba(255,255,255,0) 34%);
  }
}

@media (max-width: 767px){
  .sg-systems-band{
    padding: 72px 0;
  }

  .sg-systems-band .section-head{
    margin-bottom: 34px;
    text-align: left;
  }

  .sg-systems-band .section-head h2{
    font-size: 30px;
  }

  .sg-systems-band .section-head p{
    font-size: 16px;
  }

  .sg-system-card__content{
    padding: 28px 22px 26px;
  }

  .sg-system-card__content h3{
    font-size: 24px;
  }

  .sg-system-card__image{
    min-height: 220px;
  }
}