/* IranNet Service Foundations */

.service-foundation-page {
  background: #fff;
}

.isf-page,
.isf-page * {
  box-sizing: border-box;
}

.isf-container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.isf-hero {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgb(70 105 244 / 25%), transparent 30%),
    radial-gradient(circle at 88% 82%, rgb(78 218 171 / 12%), transparent 25%),
    linear-gradient(145deg, #071225, #0c1933);
}

.isf-hero__grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 60px;
  align-items: center;
}

.isf-kicker {
  color: #75e4b5;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.isf-hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(43px, 6vw, 74px);
  line-height: 1.25;
  letter-spacing: -.05em;
  font-weight: 950;
}

.isf-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #aebbd2;
  font-size: 14px;
  line-height: 2;
}

.isf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.isf-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(152 174 221 / 20%);
  border-radius: 13px;
  padding: 12px 17px;
  color: #edf2fb;
  background: rgb(255 255 255 / 4%);
  font-size: 10px;
  font-weight: 950;
  text-decoration: none;
}

.isf-actions a:first-child {
  border-color: #72e3b2;
  color: #071d17;
  background: #72e3b2;
}

.isf-status {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(139 161 210 / 15%);
  border-radius: 25px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0, rgb(84 111 244 / 24%), transparent 38%),
    rgb(255 255 255 / 4%);
  box-shadow: 0 30px 80px rgb(0 0 0 / 24%);
}

.isf-status span {
  color: #7182a0;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.isf-status strong {
  display: block;
  margin-top: 13px;
  color: #fff;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 950;
}

.isf-status p {
  margin-top: 12px;
  font-size: 10px;
}

.isf-status i {
  display: block;
  width: 9px;
  height: 9px;
  margin-top: 22px;
  border-radius: 50%;
  background: #67dfa9;
  box-shadow: 0 0 0 7px rgb(103 223 169 / 9%);
}

.isf-services {
  padding: 90px 0;
  background: #f7f9fd;
}

.isf-services header span {
  color: #456af4;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.isf-services h2 {
  margin: 11px 0 0;
  color: #101a31;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 950;
}

.isf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 34px;
}

.isf-grid a {
  display: grid;
  min-height: 145px;
  align-content: center;
  gap: 9px;
  border: 1px solid #e1e7f0;
  border-radius: 19px;
  padding: 22px;
  color: inherit;
  background: #fff;
  box-shadow: 0 14px 38px rgb(29 54 112 / 5%);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.isf-grid a:hover {
  border-color: #c9d5ff;
  box-shadow: 0 21px 50px rgb(31 67 151 / 10%);
  transform: translateY(-4px);
}

.isf-grid strong {
  color: #101a31;
  font-size: 14px;
  font-weight: 950;
}

.isf-grid span {
  color: #68758d;
  font-size: 9px;
}

@media (max-width: 900px) {
  .isf-hero__grid {
    grid-template-columns: 1fr;
  }

  .isf-status {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .isf-container {
    width: min(100% - 20px, 1160px);
  }

  .isf-hero {
    padding: 72px 0;
  }

  .isf-hero h1 {
    font-size: 40px;
  }

  .isf-grid {
    grid-template-columns: 1fr;
  }

  .isf-actions {
    flex-direction: column;
  }

  .isf-actions a {
    width: 100%;
  }
}

/* End IranNet Service Foundations */
