.sfr-footer {
  margin-top: 0;
  background:
    radial-gradient(circle at top left, rgba(158, 200, 240, 0.10), transparent 35%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fa 100%);
  border-top: 1px solid rgba(32, 52, 130, 0.10);
  font-family: "Montserrat", sans-serif;
}

.sfr-footer__shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 56px 28px 24px;
}

.sfr-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: start;
}

.sfr-footer__brand {
  min-width: 0;
}

.sfr-footer__logo {
  display: inline-flex;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 18px;
}

.sfr-footer__logo img {
  display: block;
  width: auto;
  height: 60px;
}

.sfr-footer__lead {
  margin: 0;
  max-width: 460px;
  color: #4f5f99;
  font-size: 17px;
  line-height: 1.75;
}

.sfr-footer__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sfr-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: #2f3b8f;
  border: 1px solid #2f3b8f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sfr-footer__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(47, 59, 143, 0.18);
}

.sfr-footer__cta--ghost {
  color: #23337e;
  background: #ffffff;
  border-color: rgba(35, 51, 126, 0.14);
}

.sfr-footer__cta--ghost:hover {
  box-shadow: 0 10px 24px rgba(35, 51, 126, 0.08);
}

.sfr-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sfr-footer__col {
  min-width: 0;
}

.sfr-footer__title {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6678b3;
}

.sfr-footer__links,
.sfr-footer__contact,
.sfr-footer__socials {
  display: grid;
  gap: 10px;
}

.sfr-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sfr-footer__links a,
.sfr-footer__contact a,
.sfr-footer__socials a {
  color: #23337e;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.sfr-footer__links a:hover,
.sfr-footer__contact a:hover,
.sfr-footer__socials a:hover {
  color: #5f87d8;
}

.sfr-footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(35, 51, 126, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sfr-footer__bottom p {
  margin: 0;
  color: #6a78a7;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .sfr-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sfr-footer__lead {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .sfr-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sfr-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .sfr-footer__shell {
    padding: 40px 16px 20px;
  }

  .sfr-footer__logo img {
    height: 50px;
  }

  .sfr-footer__lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .sfr-footer__cta-row {
    gap: 10px;
    margin-top: 20px;
  }

  .sfr-footer__cta {
    width: 100%;
  }

  .sfr-footer__links a,
  .sfr-footer__contact a,
  .sfr-footer__socials a {
    font-size: 17px;
  }
}