: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-offer-max: 1320px;
  --sferum-radius: 20px;
  --sferum-radius-lg: 30px;
  --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-offer-page {
  width: 100%;
  background: var(--sferum-white);
  color: var(--sferum-text);
  font-family: "Montserrat", sans-serif;
}

.sferum-offer-shell {
  max-width: var(--sferum-offer-max);
  margin: 0 auto;
  padding: 40px 24px 96px;
  box-sizing: border-box;
}

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

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

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

.sferum-offer-page p {
  margin: 0;
  color: var(--sferum-blue);
  font-size: 15px;
  line-height: 1.78;
}

.sferum-offer-section {
  margin-top: 88px;
  scroll-margin-top: 120px;
}

.sferum-offer-section-head {
  margin-bottom: 34px;
}

.sferum-offer-section-head h2 {
  font-size: 40px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.sferum-offer-section-head p {
  max-width: 860px;
  font-size: 16px;
  line-height: 1.82;
}

/* HERO */

.sferum-offer-hero {
  position: relative;
  padding: 54px 44px 48px;
  border-radius: 34px;
  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.96) 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-offer-hero::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(203, 221, 239, 0.22);
  filter: blur(12px);
  pointer-events: none;
}

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

.sferum-offer-kicker {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  background: rgba(203, 221, 239, 0.92);
  color: var(--sferum-blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(43, 49, 117, 0.06);
}

.sferum-offer-title {
  position: relative;
  z-index: 2;
  max-width: 980px;
  font-size: clamp(50px, 4.1vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.sferum-offer-lead {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-top: 20px!important;
  font-size: 17px;
  line-height: 1.85;
}

.sferum-offer-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.sferum-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  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-offer-btn:hover {
  transform: translateY(-2px);
}

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

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

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

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

/* HERO IMAGE INLINE */



/* INTRO */

.sferum-offer-section--intro {
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.40) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 14px 32px rgba(43, 49, 117, 0.05);
}

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

.sferum-offer-step {
  height: 100%;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(43, 49, 117, 0.08);
  box-shadow: 0 10px 24px rgba(43, 49, 117, 0.04);
}

.sferum-offer-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;
  box-shadow: inset 0 0 0 1px rgba(43, 49, 117, 0.05);
}

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

/* FEATURED */

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

.sferum-offer-featured-card {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 30px 26px 28px;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.98) 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-offer-featured-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sferum-blue) 0%, #6b8cc7 100%);
}

.sferum-offer-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-offer-featured-card:nth-child(2)::before {
  background: linear-gradient(90deg, #2B3175 0%, #8aa8dd 100%);
}

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

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

.sferum-offer-featured-card__eyebrow,
.sferum-offer-related-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);
  border-radius: 999px;
  background: rgba(203, 221, 239, 0.62);
}

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

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

/* CATALOG */

.sferum-offer-section--catalog .sferum-offer-section-head {
  margin-bottom: 44px;
}

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

.sferum-offer-group {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(43, 49, 117, 0.06);
  box-shadow: 0 14px 32px rgba(43, 49, 117, 0.04);
}

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

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

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

.sferum-offer-section--catalog .sferum-offer-group:nth-of-type(4) {
  background: linear-gradient(180deg, rgba(247, 248, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

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

.sferum-offer-group__head h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.sferum-offer-group__head p {
  max-width: 900px;
}

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

.sferum-offer-card {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(43, 49, 117, 0.10);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform var(--sferum-transition),
    border-color var(--sferum-transition),
    box-shadow var(--sferum-transition),
    background var(--sferum-transition);
}

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

.sferum-offer-card:hover::before {
  opacity: 1;
}

.sferum-offer-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-offer-section--catalog .sferum-offer-group:nth-of-type(1) .sferum-offer-card:hover {
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.30) 0%, rgba(255, 255, 255, 1) 100%);
}

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

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

.sferum-offer-section--catalog .sferum-offer-group:nth-of-type(4) .sferum-offer-card:hover {
  background: linear-gradient(180deg, rgba(247, 248, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

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

/* BENEFITS */

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

.sferum-offer-benefit {
  height: 100%;
  padding: 26px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(203, 221, 239, 0.28) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(43, 49, 117, 0.06);
  box-shadow: 0 12px 26px rgba(43, 49, 117, 0.04);
}

.sferum-offer-benefit h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* RELATED */

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

.sferum-offer-related-card {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(43, 49, 117, 0.08);
  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-offer-related-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sferum-blue) 0%, #6b8cc7 100%);
}

.sferum-offer-related-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-offer-related-card h3 {
  font-size: 27px;
  margin-bottom: 12px;
}

.sferum-offer-related-card p {
  margin-bottom: 16px;
}

/* LINK */

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

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

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

/* FAQ */

.sferum-offer-faq-list {
  display: grid;
  gap: 16px;
}

.sferum-offer-faq-item {
  padding: 24px 22px;
  border-radius: 20px;
  background: rgba(246, 249, 253, 0.92);
  border: 1px solid rgba(43, 49, 117, 0.08);
  box-shadow: 0 10px 24px rgba(43, 49, 117, 0.04);
}

.sferum-offer-faq-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* CTA */

.sferum-offer-section--cta {
  margin-top: 92px;
}

.sferum-offer-cta-box {
  padding: 46px 36px;
  border-radius: 30px;
  text-align: center;
  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.50) 0%, rgba(203, 221, 239, 0.24) 100%);
  box-shadow: 0 18px 38px rgba(43, 49, 117, 0.07);
}

.sferum-offer-cta-box h2 {
  font-size: 40px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.sferum-offer-cta-box p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

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

/* FORM */

.sferum-offer-form-wrap {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(238, 244, 251, 0.78) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(43, 49, 117, 0.06);
  box-shadow: 0 12px 26px rgba(43, 49, 117, 0.04);
}

/* PARTNERS */

.sferum-offer-section-head--center {
  text-align: center;
}

.sferum-offer-section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.sferum-offer-section--partners {
  overflow: hidden;
}

.sferum-offer-logos {
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: grab;
  padding: 6px 0;
}

.sferum-offer-logos.is-dragging {
  cursor: grabbing;
}

.sferum-offer-logos::before,
.sferum-offer-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.sferum-offer-logos::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.sferum-offer-logos::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.sferum-offer-logos__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.sferum-offer-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(43, 49, 117, 0.08);
  box-shadow: 0 12px 26px rgba(43, 49, 117, 0.05);
  transition:
    transform var(--sferum-transition),
    box-shadow var(--sferum-transition),
    border-color var(--sferum-transition);
}

.sferum-offer-logo:hover,
.sferum-offer-logo.is-active {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(43, 49, 117, 0.10);
  border-color: rgba(43, 49, 117, 0.16);
}

.sferum-offer-logo.is-active {
  transform: translateY(-4px) scale(1.02);
}

.sferum-offer-logo img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.88;
  transition:
    filter var(--sferum-transition),
    opacity var(--sferum-transition),
    transform var(--sferum-transition);
  pointer-events: none;
}

.sferum-offer-logo:hover img,
.sferum-offer-logo.is-active img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
}

/* PRODUCT PAGES */

.sferum-offer-product-page .sferum-offer-shell {
  padding-top: 34px;
}

.sferum-offer-product-page .sferum-offer-section {
  margin-top: 84px;
}

.sferum-offer-product-page .sferum-offer-section-head {
  margin-bottom: 38px;
}

.sferum-offer-product-page .sferum-offer-section-head p {
  max-width: 900px;
}

.sferum-offer-product-page .sferum-offer-hero {
  padding: 46px 42px 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(203, 221, 239, 0.48) 0%, rgba(203, 221, 239, 0) 42%),
    linear-gradient(180deg, rgba(246, 249, 253, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 18px 42px rgba(43, 49, 117, 0.07);
}

.sferum-offer-product-page .sferum-offer-kicker {
  background: rgba(203, 221, 239, 0.74);
}

.sferum-offer-product-page .sferum-offer-title {
  max-width: 860px;
  margin-bottom: 0;
}

.sferum-offer-product-page .sferum-offer-lead {
  max-width: 760px;
  margin-top: 28px;
  margin-bottom: 0;
}

.sferum-offer-product-page .sferum-offer-actions {
  margin-top: 28px;
}

.sferum-offer-product-page .sferum-offer-hero-image--inline {
  max-width: 460px;
}

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

.sferum-offer-product-page .sferum-offer-steps,
.sferum-offer-product-page .sferum-offer-featured-grid,
.sferum-offer-product-page .sferum-offer-benefits,
.sferum-offer-product-page .sferum-offer-related-grid {
  align-items: stretch;
}

.sferum-offer-product-page .sferum-offer-step,
.sferum-offer-product-page .sferum-offer-featured-card,
.sferum-offer-product-page .sferum-offer-benefit,
.sferum-offer-product-page .sferum-offer-related-card,
.sferum-offer-product-page .sferum-offer-card {
  height: 100%;
}

.sferum-offer-product-page .sferum-offer-section--catalog .sferum-offer-group {
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(43, 49, 117, 0.04);
}

.sferum-offer-product-page .sferum-offer-card {
  background: rgba(255, 255, 255, 0.95);
}

.sferum-offer-product-page .sferum-offer-card h4 {
  line-height: 1.16;
}

.sferum-offer-product-page .sferum-offer-card p {
  line-height: 1.72;
}

.sferum-offer-product-page #modele .sferum-offer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 249, 253, 0.96) 100%);
}

.sferum-offer-product-page #modele .sferum-offer-card h4 {
  margin-bottom: 14px;
  font-size: 24px;
}

.sferum-offer-product-page #modele .sferum-offer-card p {
  font-size: 14px;
  line-height: 1.82;
}

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

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

.sferum-offer-product-page .sferum-offer-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);
}

.sferum-offer-product-page .sferum-offer-related-card {
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}

.sferum-offer-product-page .sferum-offer-related-card h3 {
  line-height: 1.14;
}

.sferum-offer-product-page .sferum-offer-faq-item {
  background: rgba(246, 249, 253, 0.94);
  box-shadow: 0 10px 24px rgba(43, 49, 117, 0.04);
}

.sferum-offer-product-page .sferum-offer-section--cta {
  margin-top: 88px;
}

.sferum-offer-product-page .sferum-offer-cta-box {
  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.46) 0%, rgba(203, 221, 239, 0.22) 100%);
  box-shadow: 0 18px 38px rgba(43, 49, 117, 0.07);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .sferum-offer-title {
    font-size: clamp(44px, 5vw, 58px);
  }

  .sferum-offer-card-grid,
  .sferum-offer-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .sferum-offer-shell {
    padding: 36px 20px 82px;
  }

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

  .sferum-offer-hero {
    padding: 38px 30px 34px;
    border-radius: 28px;
  }

  .sferum-offer-title {
    font-size: clamp(40px, 5.4vw, 52px);
    max-width: 780px;
  }

  .sferum-offer-lead {
    max-width: 760px;
    font-size: 16px;
  }

  .sferum-offer-steps,
  .sferum-offer-benefits,
  .sferum-offer-featured-grid,
  .sferum-offer-card-grid,
  .sferum-offer-related-grid {
    grid-template-columns: 1fr;
  }

  .sferum-offer-group {
    padding: 24px;
  }

  .sferum-offer-product-page .sferum-offer-shell {
    padding-top: 28px;
  }

  .sferum-offer-product-page .sferum-offer-section {
    margin-top: 72px;
  }

  .sferum-offer-product-page .sferum-offer-hero {
    padding: 36px 30px 34px;
    border-radius: 28px;
  }

  .sferum-offer-product-page .sferum-offer-section--catalog .sferum-offer-group {
    padding: 24px;
  }
}


@media (max-width: 767px) {
  .sferum-offer-shell {
    padding: 28px 16px 64px;
  }

  .sferum-offer-section {
    margin-top: 56px;
    scroll-margin-top: 90px;
  }

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

  .sferum-offer-kicker {
    margin-bottom: 12px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .sferum-offer-title {
    font-size: 30px;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }

  .sferum-offer-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .sferum-offer-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }

  .sferum-offer-btn {
    width: 100%;
    min-height: 50px;
  }

  .sferum-offer-section-head {
    margin-bottom: 24px;
  }

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

  .sferum-offer-section-head p,
  .sferum-offer-cta-box p {
    font-size: 15px;
    line-height: 1.75;
  }

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

  .sferum-offer-step,
  .sferum-offer-featured-card,
  .sferum-offer-card,
  .sferum-offer-benefit,
  .sferum-offer-related-card,
  .sferum-offer-faq-item {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .sferum-offer-featured-card h3,
  .sferum-offer-related-card h3 {
    font-size: 24px;
  }

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

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

  .sferum-offer-cta-box {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .sferum-offer-form-wrap {
    padding: 20px;
    border-radius: 20px;
  }

  .sferum-offer-logos::before,
  .sferum-offer-logos::after {
    width: 36px;
  }

  .sferum-offer-logos__track {
    gap: 14px;
  }

  .sferum-offer-logo {
    width: 150px;
    height: 82px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .sferum-offer-logo img {
    max-height: 40px;
  }

  .sferum-offer-hero-image--inline {
    margin-top: 22px;
    margin-bottom: 24px;
    border-radius: 20px;
  }

  .sferum-offer-product-page .sferum-offer-shell {
    padding-top: 18px;
  }

  .sferum-offer-product-page .sferum-offer-section {
    margin-top: 56px;
  }

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

  .sferum-offer-product-page .sferum-offer-section-head {
    margin-bottom: 24px;
  }

  .sferum-offer-product-page #modele .sferum-offer-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .sferum-offer-product-page #modele .sferum-offer-card p {
    font-size: 14px;
    line-height: 1.75;
  }

  .sferum-offer-product-page .sferum-offer-section--catalog .sferum-offer-group {
    padding: 18px;
    border-radius: 22px;
  }

  .sferum-offer-product-page .sferum-offer-section--cta {
    margin-top: 64px;
  }
}

/* ===== HERO IMAGE FIX ===== */

.sferum-offer-product-page .sferum-offer-title {
  margin-bottom: 20px;
}

.sferum-offer-product-page .sferum-offer-hero-media {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  margin-bottom: 40px;
}

.sferum-offer-product-page .sferum-offer-hero-image {
  overflow: hidden;
  background: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.sferum-offer-product-page .sferum-offer-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sferum-offer-product-page .sferum-offer-lead {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .sferum-offer-product-page .sferum-offer-hero-media {
    margin-top: 16px;
    margin-bottom: 18px;
  }
}