.ses-home {
  --ses-blue: #1743e3;
  --ses-yellow: #fbc00c;
  --ses-green: #84da0e;
  --ses-green-dark: #72c20b;
  --ses-page: #f1f1f1;
  --ses-text: #2e2e2e;
  --ses-footer-green: #84da0e;
  --ses-footer-blue: #0c42f3;
  background: #efefef;
  color: var(--ses-text);
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.ses-home a { text-decoration: none; }
.ses-home img { display: block; max-width: 100%; }
.ses-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ses-section--plain {
  padding: 0 0 18px;
}

.ses-title-block h2 {
  margin: 0 0 18px;
  color: var(--ses-green-dark);
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  line-height: 1;
  font-weight: 800;
}

.ses-title-block--center h2 {
  text-align: center;
}

.ses-title-block--light h2 {
  color: #fff;
}

.ses-hero {
  position: relative;
  min-height: 470px;
  background: linear-gradient(90deg, #2451eb, #7fa9f4);
  background-size: cover;
  background-position: center;
}

.ses-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 68, 229, 0.88) 0%, rgba(24, 68, 229, 0.78) 28%, rgba(44, 93, 238, 0.55) 50%, rgba(44, 93, 238, 0.20) 75%, rgba(44, 93, 238, 0.05) 100%);
}

.ses-hero__inner {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
}

.ses-hero__content {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 48px 0 40px;
  color: #fff;
}

.ses-hero__content h1 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #7ee8f6;
  text-transform: uppercase;
  max-width: 720px;
  white-space: pre-line;
}

.ses-hero__content p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.6;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.92);
}

.ses-news-access {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.8fr);
  gap: 26px;
  padding-top: 12px;
}

.ses-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ses-news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #363636;
}

.ses-news-card__thumb {
  background: #dcdcdc;
  aspect-ratio: 0.72;
  overflow: hidden;
}

.ses-news-card__thumb img,
.ses-video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ses-news-card__placeholder,
.ses-video-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d9d9d9, #f2f2f2);
}

.ses-news-card__title {
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 700;
}

.ses-quick-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.ses-quick-link {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid #bfbfbf;
  color: var(--ses-green-dark);
  font-size: 0.98rem;
  font-weight: 700;
  background: #fff;
}

.ses-quick-link:last-child { border-bottom: 0; }
.ses-quick-link__icon {
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
}

.ses-services-wrap {
  padding-top: 6px;
  padding-bottom: 12px;
}

.ses-services-wrap > .ses-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(16px, 2.5vw, 32px);
  padding-right: clamp(16px, 2.5vw, 32px);
}

.ses-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.ses-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 180px;
  padding: 24px 28px 24px 28px;
  background: #efefef;
  border-left: 6px solid var(--ses-blue);
  color: #555;
  box-shadow: none;
}

.ses-service-card::after {
  content: attr(data-icon);
}

.ses-service-card__icon {
  position: absolute;
  right: 20px;
  top: 14px;
  color: var(--ses-green-dark);
  font-size: 3.4rem;
  line-height: 1;
}

.ses-service-card__title {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--ses-green-dark);
  line-height: 1.1;
  max-width: calc(100% - 108px);
}

.ses-service-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
  max-width: 90%;
}

.ses-videos {
  background: var(--ses-yellow);
  padding: 38px 0 48px;
}

.ses-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  justify-content: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.ses-video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
}

.ses-video-card__media {
  background: rgba(255,255,255,0.35);
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.ses-video-card__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ses-video-card__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
}

.ses-video-card__title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  color: #fff;
}

.ses-bids {
  background: #efefef;
  padding: 28px 0 4px;
}

.ses-bids__container {
  padding-bottom: 0;
}

.ses-bids-tabs {
  width: min(860px, 100%);
  margin: 0 auto;
}

.ses-bids-tabs__nav {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 0;
}

.ses-bids-tabs__button {
  appearance: none;
  border: 0;
  background: #e0e0e0;
  color: #666;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 12px 28px;
  cursor: pointer;
}

.ses-bids-tabs__button.is-active {
  background: #61c349;
  color: #fff;
}

.ses-bids-tabs__panel {
  display: none;
}

.ses-bids-tabs__panel.is-active {
  display: block;
}

.ses-bids-list-wrap {
  background: transparent;
  max-height: 510px;
  overflow-y: auto;
  padding-right: 10px;
}

.ses-bids-list {
  list-style: none;
  padding: 12px 8px 0;
  margin: 0;
}

.ses-bids-list li + li {
  margin-top: 22px;
}

.ses-bids-list a {
  color: #101010;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  font-size: 0.96rem;
}

.ses-map {
  width: 100%;
  margin: 0;
}

.ses-map iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.ses-footer-main {
  background: var(--ses-footer-green);
  color: #0c42f3;
}

.ses-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 26px 0 18px;
}

.ses-footer-col h3 {
  margin: 0 0 16px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ses-footer-col p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.ses-footer-logo {
  max-width: 90px;
  margin-bottom: 12px;
}

.ses-footer-copy {
  background: var(--ses-footer-blue);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.ses-empty {
  background: #fff;
  border: 1px solid #d6d6d6;
  padding: 20px;
  color: #666;
}

.ses-empty--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  width: min(840px, 100%);
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .ses-news-access {
    grid-template-columns: 1fr;
  }

  .ses-news-grid,
  .ses-services-grid,
  .ses-videos-grid,
  .ses-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ses-bids-tabs,
  .ses-videos-grid {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .ses-hero,
  .ses-hero__inner {
    min-height: 320px;
  }

  .ses-hero__content {
    width: min(100%, calc(100% - 32px));
    padding: 28px 0;
  }

  .ses-hero__content h1 {
    font-size: 2.3rem;
    max-width: 100%;
  }

  .ses-news-grid,
  .ses-services-grid,
  .ses-videos-grid,
  .ses-footer-grid {
    grid-template-columns: 1fr;
  }

  .ses-service-card {
    min-height: 150px;
  }

  .ses-bids-tabs__nav {
    flex-wrap: wrap;
  }

  .ses-bids-tabs__button {
    flex: 1 1 180px;
  }
}
