:root {
  --sferum-blue: #2B3175;
  --sferum-blue-light: #CBDDEF;
  --sferum-blue-soft: #EEF4FB;
  --sferum-blue-softer: #F6F9FD;
  --sferum-warm-soft: #F8F2F6;
  --sferum-neutral-soft: #F7F8FC;
  --sferum-white: #ffffff;
  --sferum-text: #2B3175;
  --sferum-max-width: 900px;
  --sferum-radius: 18px;
  --sferum-radius-sm: 12px;
  --sferum-shadow: 0 18px 40px rgba(43, 49, 117, 0.08);
  --sferum-shadow-hover: 0 22px 48px rgba(43, 49, 117, 0.14);
  --sferum-transition: 0.25s ease;
}

.sferum-branze-page {
  width: 100%;
  background: var(--sferum-white);
  color: var(--sferum-text);
  font-family: "Montserrat", sans-serif;
}

.sferum-branze-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: 70px 20px 90px;
  box-sizing: border-box;
}

.sferum-branze-page *,
.sferum-branze-page *::before,
.sferum-branze-page *::after {
  box-sizing: border-box;
}

.sferum-branze-page a {
  text-decoration: none;
}

.sferum-branze-page h1,
.sferum-branze-page h2,
.sferum-branze-page h3,
.sferum-branze-page h4 {
  margin: 0;
  color: var(--sferum-blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.sferum-branze-page p {
  margin: 0;
  color: var(--sferum-blue);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}

.sferum-branze-section {
  margin-top: 72px;
}

.sferum-branze-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  background: var(--sferum-blue-light);
  color: var(--sferum-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sferum-branze-title {
  font-size: clamp(50px, 4.1vw, 66px);
  line-height: 1.04;
  max-width: 900px;
}

.sferum-branze-lead {
  margin-top: 20px!important;
  margin-bottom: 40px;
  max-width: 860px;
  font-size: 17px;
  line-height: 1.8;
}

.sferum-branze-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sferum-branze-actions--center {
  justify-content: center;
}

.sferum-branze-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform var(--sferum-transition),
    box-shadow var(--sferum-transition),
    background var(--sferum-transition),
    color var(--sferum-transition),
    border-color var(--sferum-transition);
}

.sferum-branze-btn:hover {
  transform: translateY(-2px);
}

.sferum-branze-btn--primary {
  background: var(--sferum-blue);
  color: var(--sferum-white);
  box-shadow: 0 14px 30px rgba(43, 49, 117, 0.16);
}

.sferum-branze-btn--primary:hover {
  color: var(--sferum-white);
  box-shadow: 0 18px 36px rgba(43, 49, 117, 0.22);
}

.sferum-branze-btn--secondary,
.sferum-branze-btn--ghost {
  border: 1.5px solid var(--sferum-blue);
  color: var(--sferum-blue);
  background: transparent;
}

.sferum-branze-btn--secondary:hover,
.sferum-branze-btn--ghost:hover {
  background: var(--sferum-blue);
  color: var(--sferum-white);
}

.sferum-branze-section-head {
  margin-bottom: 60px;
}

.sferum-branze-section-head h2 {
  font-size: 35px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.sferum-branze-section-head p {
  max-width: 760px;
}

.sferum-branze-section--intro {
  padding: 34px;
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.42) 0%, rgba(203, 221, 239, 0.20) 100%);
  border-radius: 28px;
}

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

.sferum-branze-step {
  background: var(--sferum-white);
  border: 1px solid rgba(43, 49, 117, 0.08);
  border-radius: var(--sferum-radius);
  padding: 24px 22px;
  box-shadow: 0 12px 28px rgba(43, 49, 117, 0.05);
}

.sferum-branze-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--sferum-blue-light);
  color: var(--sferum-blue);
  font-size: 14px;
  font-weight: 700;
}

.sferum-branze-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.sferum-branze-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sferum-branze-featured-card {
  position: relative;
  display: block;
  padding: 30px 26px 28px;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(43, 49, 117, 0.08);
  border-radius: 24px;
  box-shadow: var(--sferum-shadow);
  overflow: hidden;
  transition:
    transform var(--sferum-transition),
    box-shadow var(--sferum-transition),
    border-color var(--sferum-transition),
    background var(--sferum-transition);
}

.sferum-branze-featured-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sferum-blue) 0%, #6b8cc7 100%);
}

.sferum-branze-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sferum-shadow-hover);
  border-color: rgba(43, 49, 117, 0.16);
  background: linear-gradient(180deg, rgba(238, 244, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-branze-featured-card:nth-child(2)::before {
  background: linear-gradient(90deg, #2B3175 0%, #8aa8dd 100%);
}

.sferum-branze-featured-card:nth-child(3)::before {
  background: linear-gradient(90deg, #4a5aa0 0%, #c9d9f1 100%);
}

.sferum-branze-featured-card:nth-child(4)::before {
  background: linear-gradient(90deg, #2B3175 0%, #9fb8df 100%);
}

.sferum-branze-featured-card__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sferum-blue);
  opacity: 0.9;
  border-radius: 999px;
  background: rgba(203, 221, 239, 0.6);
}

.sferum-branze-featured-card h3 {
  font-size: 27px;
  margin-bottom: 12px;
}

.sferum-branze-featured-card p {
  margin-bottom: 16px;
}

.sferum-branze-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sferum-blue);
  font-size: 15px;
  font-weight: 700;
}

.sferum-branze-link::after {
  content: "→";
  transition: transform var(--sferum-transition);
}

.sferum-branze-featured-card:hover .sferum-branze-link::after {
  transform: translateX(4px);
}

.sferum-branze-section--sectors .sferum-branze-section-head {
  margin-bottom: 44px;
}

.sferum-branze-group + .sferum-branze-group {
  margin-top: 52px;
}

.sferum-branze-group {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(43, 49, 117, 0.06);
}

.sferum-branze-section--sectors .sferum-branze-group:nth-of-type(1) {
  background: linear-gradient(180deg, rgba(238, 244, 251, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-branze-section--sectors .sferum-branze-group:nth-of-type(2) {
  background: linear-gradient(180deg, rgba(248, 242, 246, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-branze-section--sectors .sferum-branze-group:nth-of-type(3) {
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.22) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-branze-group__head {
  margin-bottom: 20px;
}

.sferum-branze-group__head h3 {
  font-size: 29px;
  margin-bottom: 10px;
}

.sferum-branze-group__head p {
  max-width: 760px;
}

.sferum-branze-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sferum-branze-card {
  display: block;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(43, 49, 117, 0.10);
  border-radius: 20px;
  transition:
    transform var(--sferum-transition),
    border-color var(--sferum-transition),
    box-shadow var(--sferum-transition),
    background var(--sferum-transition);
}

.sferum-branze-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 49, 117, 0.18);
  box-shadow: 0 18px 34px rgba(43, 49, 117, 0.08);
}

.sferum-branze-section--sectors .sferum-branze-group:nth-of-type(1) .sferum-branze-card:hover {
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.30) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-branze-section--sectors .sferum-branze-group:nth-of-type(2) .sferum-branze-card:hover {
  background: linear-gradient(180deg, rgba(248, 242, 246, 0.75) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-branze-section--sectors .sferum-branze-group:nth-of-type(3) .sferum-branze-card:hover {
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.24) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-branze-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.sferum-branze-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sferum-branze-benefit {
  padding: 26px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.30) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(43, 49, 117, 0.06);
}

.sferum-branze-benefit h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.sferum-branze-cta-box {
  padding: 42px 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.48) 0%, rgba(203, 221, 239, 0.24) 100%);
  text-align: center;
  box-shadow: 0 16px 34px rgba(43, 49, 117, 0.06);
}

.sferum-branze-cta-box h2 {
  font-size: 35px;
  margin-bottom: 14px;
}

.sferum-branze-cta-box p {
  max-width: 700px;
  margin: 0 auto;
}

.sferum-branze-cta-box .sferum-branze-actions {
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .sferum-branze-title {
    font-size: 46px;
  }

  .sferum-branze-steps,
  .sferum-branze-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sferum-branze-shell {
    padding: 46px 18px 70px;
  }

  .sferum-branze-section {
    margin-top: 56px;
  }

  .sferum-branze-title {
    font-size: 35px;
    line-height: 1.1;
  }

  .sferum-branze-lead {
    margin-top: 22px;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.75;
  }

  .sferum-branze-section-head h2,
  .sferum-branze-cta-box h2 {
    font-size: 35px;
  }

  .sferum-branze-featured-grid,
  .sferum-branze-card-grid {
    grid-template-columns: 1fr;
  }

  .sferum-branze-section--intro {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .sferum-branze-group {
    padding: 18px;
    border-radius: 22px;
  }

  .sferum-branze-step,
  .sferum-branze-featured-card,
  .sferum-branze-card,
  .sferum-branze-benefit {
    padding: 22px 18px;
  }

  .sferum-branze-group__head h3 {
    font-size: 25px;
  }

  .sferum-branze-featured-card h3 {
    font-size: 24px;
  }

  .sferum-branze-card h4,
  .sferum-branze-step h3,
  .sferum-branze-benefit h3 {
    font-size: 21px;
  }

  .sferum-branze-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sferum-branze-btn {
    width: 100%;
  }

  .sferum-branze-cta-box {
    padding: 30px 20px;
    border-radius: 22px;
  }
}

/* =========================================
   FILARY / PODSTRONY BRANŻOWE
========================================= */

.sferum-filar-page .sferum-branze-shell {
  padding-top: 56px;
}

.sferum-filar-page .sferum-branze-section {
  margin-top: 84px;
}

.sferum-filar-page .sferum-branze-section-head {
  margin-bottom: 42px;
}

.sferum-filar-page .sferum-branze-section-head p {
  max-width: 780px;
}

/* HERO FILARU */

.sferum-filar-hero {
  position: relative;
  padding: 42px 40px 40px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(203, 221, 239, 0.52) 0%, rgba(203, 221, 239, 0) 42%),
    linear-gradient(180deg, rgba(238, 244, 251, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(43, 49, 117, 0.08);
  box-shadow: 0 18px 42px rgba(43, 49, 117, 0.07);
}

.sferum-filar-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(203, 221, 239, 0.24);
  filter: blur(8px);
  pointer-events: none;
}

.sferum-filar-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #2B3175 0%, #6b8cc7 100%);
}

.sferum-filar-page .sferum-branze-kicker {
  position: relative;
  z-index: 2;
}

.sferum-filar-page .sferum-branze-title {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.sferum-filar-page .sferum-branze-lead {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-bottom: 0;
}

.sferum-filar-page .sferum-branze-actions {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

/* INTRO I BLOKI WSPÓLNE */

.sferum-filar-page .sferum-branze-section--intro {
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.34) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 14px 34px rgba(43, 49, 117, 0.05);
}

.sferum-filar-page .sferum-branze-steps,
.sferum-filar-page .sferum-branze-featured-grid,
.sferum-filar-page .sferum-branze-benefits {
  align-items: stretch;
}

.sferum-filar-page .sferum-branze-step,
.sferum-filar-page .sferum-branze-featured-card,
.sferum-filar-page .sferum-branze-benefit,
.sferum-filar-page .sferum-branze-card {
  height: 100%;
}

.sferum-filar-page .sferum-branze-step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 249, 253, 0.88) 100%);
}

.sferum-filar-page .sferum-branze-step__number {
  box-shadow: inset 0 0 0 1px rgba(43, 49, 117, 0.06);
}

/* KORZYŚCI / DLA KOGO */

.sferum-filar-page .sferum-branze-benefit {
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.24) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 12px 28px rgba(43, 49, 117, 0.04);
}

/* SEKCJA ZASTOSOWAŃ */

.sferum-filar-page .sferum-branze-section--sectors .sferum-branze-group {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(238, 244, 251, 0.88) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(43, 49, 117, 0.07);
  box-shadow: 0 14px 34px rgba(43, 49, 117, 0.04);
}

.sferum-filar-page .sferum-branze-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.sferum-filar-page .sferum-branze-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(43, 49, 117, 0.9) 0%, rgba(107, 140, 199, 0.85) 100%);
  opacity: 0;
  transition: opacity var(--sferum-transition);
}

.sferum-filar-page .sferum-branze-card:hover::before {
  opacity: 1;
}

.sferum-filar-page .sferum-branze-card:hover {
  box-shadow: 0 20px 38px rgba(43, 49, 117, 0.09);
}

/* KARTY "CO JEST NAJWAŻNIEJSZE" */

.sferum-filar-page .sferum-branze-featured-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-filar-page .sferum-branze-featured-card__eyebrow {
  background: rgba(203, 221, 239, 0.72);
}

/* CTA KOŃCOWE */

.sferum-filar-page .sferum-branze-section--cta {
  margin-top: 88px;
}

.sferum-filar-page .sferum-branze-cta-box {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, rgba(203, 221, 239, 0.50) 0%, rgba(203, 221, 239, 0.24) 100%);
  box-shadow: 0 18px 38px rgba(43, 49, 117, 0.07);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .sferum-filar-hero {
    padding: 34px 30px 32px;
    border-radius: 28px;
  }

  .sferum-filar-page .sferum-branze-section {
    margin-top: 72px;
  }

  .sferum-filar-page .sferum-branze-section--sectors .sferum-branze-group {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .sferum-filar-page .sferum-branze-shell {
    padding-top: 40px;
  }

  .sferum-filar-page .sferum-branze-section {
    margin-top: 58px;
  }

  .sferum-filar-hero {
    padding: 28px 20px 26px;
    border-radius: 24px;
  }

  .sferum-filar-page .sferum-branze-section-head {
    margin-bottom: 28px;
  }

  .sferum-filar-page .sferum-branze-section--sectors .sferum-branze-group {
    padding: 18px;
    border-radius: 22px;
  }

  .sferum-filar-page .sferum-branze-section--cta {
    margin-top: 64px;
  }
}

/* =========================================
   KLASTRY / PODSTRONY SZCZEGÓŁOWE
========================================= */

.sferum-klaster-page .sferum-branze-shell {
  padding-top: 48px;
}

.sferum-klaster-page .sferum-branze-section {
  margin-top: 76px;
}

.sferum-klaster-page .sferum-branze-section-head {
  margin-bottom: 34px;
}

.sferum-klaster-page .sferum-branze-section-head p {
  max-width: 760px;
}

/* HERO KLASTRA */

.sferum-klaster-page .sferum-filar-hero {
  padding: 34px 34px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(203, 221, 239, 0.42) 0%, rgba(203, 221, 239, 0) 42%),
    linear-gradient(180deg, rgba(246, 249, 253, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 14px 34px rgba(43, 49, 117, 0.06);
}

.sferum-klaster-page .sferum-filar-hero::before {
  width: 180px;
  height: 180px;
  top: -50px;
  right: -50px;
  background: rgba(203, 221, 239, 0.20);
}

.sferum-klaster-page .sferum-filar-hero::after {
  height: 4px;
}

.sferum-klaster-page .sferum-branze-kicker {
  background: rgba(203, 221, 239, 0.72);
}

.sferum-klaster-page .sferum-branze-title {
  max-width: 760px;
  font-size: 46px;
  line-height: 1.05;
}

.sferum-klaster-page .sferum-branze-lead {
  max-width: 760px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.sferum-klaster-page .sferum-branze-actions {
  margin-top: 24px;
}

/* INTRO / BLOKI */

.sferum-klaster-page .sferum-branze-section--intro {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.28) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-klaster-page .sferum-branze-step,
.sferum-klaster-page .sferum-branze-benefit,
.sferum-klaster-page .sferum-branze-featured-card,
.sferum-klaster-page .sferum-branze-card {
  box-shadow: 0 10px 24px rgba(43, 49, 117, 0.04);
}

.sferum-klaster-page .sferum-branze-step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 253, 0.96) 100%);
}

.sferum-klaster-page .sferum-branze-step h3,
.sferum-klaster-page .sferum-branze-benefit h3,
.sferum-klaster-page .sferum-branze-card h4,
.sferum-klaster-page .sferum-branze-featured-card h3 {
  line-height: 1.18;
}

/* KORZYŚCI / DLA KOGO */

.sferum-klaster-page .sferum-branze-benefit {
  background: linear-gradient(180deg, rgba(238, 244, 251, 0.8) 0%, rgba(255, 255, 255, 0.98) 100%);
}

/* SEKCJE Z KARTAMI */

.sferum-klaster-page .sferum-branze-section--sectors .sferum-branze-group {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(238, 244, 251, 0.72) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(43, 49, 117, 0.06);
  box-shadow: 0 12px 28px rgba(43, 49, 117, 0.04);
}

.sferum-klaster-page .sferum-branze-group__head {
  margin-bottom: 18px;
}

.sferum-klaster-page .sferum-branze-group__head h3 {
  font-size: 27px;
}

.sferum-klaster-page .sferum-branze-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(43, 49, 117, 0.09);
}

.sferum-klaster-page .sferum-branze-card:hover {
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.22) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 18px 34px rgba(43, 49, 117, 0.08);
}

/* KARTY FEATURED */

.sferum-klaster-page .sferum-branze-featured-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-klaster-page .sferum-branze-featured-card__eyebrow {
  background: rgba(203, 221, 239, 0.64);
}

/* CTA */

.sferum-klaster-page .sferum-branze-section--cta {
  margin-top: 80px;
}

.sferum-klaster-page .sferum-branze-cta-box {
  padding: 38px 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(203, 221, 239, 0.42) 0%, rgba(203, 221, 239, 0.20) 100%);
  box-shadow: 0 16px 34px rgba(43, 49, 117, 0.06);
}

.sferum-klaster-page .sferum-branze-cta-box h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .sferum-klaster-page .sferum-filar-hero {
    padding: 30px 26px 28px;
  }

  .sferum-klaster-page .sferum-branze-title {
    font-size: 40px;
  }

  .sferum-klaster-page .sferum-branze-section {
    margin-top: 66px;
  }
}

@media (max-width: 767px) {
  .sferum-klaster-page .sferum-branze-shell {
    padding-top: 38px;
  }

  .sferum-klaster-page .sferum-branze-section {
    margin-top: 54px;
  }

  .sferum-klaster-page .sferum-filar-hero {
    padding: 24px 18px 24px;
    border-radius: 22px;
  }

  .sferum-klaster-page .sferum-branze-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .sferum-klaster-page .sferum-branze-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .sferum-klaster-page .sferum-branze-section--intro {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .sferum-klaster-page .sferum-branze-section--sectors .sferum-branze-group {
    padding: 18px;
    border-radius: 20px;
  }

  .sferum-klaster-page .sferum-branze-cta-box {
    padding: 28px 18px;
    border-radius: 22px;
  }
}