/* New isolated style fixes and improvements. */

.not-found-page {
  background: #f4f6fa;
  min-height: calc(50vh - 176px);
  padding: 84px 0 92px;
}

.not-found-page__inner {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
}

.not-found-page__content {
  max-width: 650px;
}

.not-found-page__eyebrow {
  color: #2a4ca2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.not-found-page h1 {
  color: #111827;
  font-size: clamp(42px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.not-found-page p {
  color: #5d6a7d;
  font-size: 18px;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 560px;
}

.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found-page__visual {
  background:
    linear-gradient(135deg, rgba(42, 76, 162, .08), rgba(0, 190, 141, .08)),
    #ffffff;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 34, 74, .11);
  min-height: 390px;
  overflow: hidden;
  padding: 36px;
  position: relative;
}

.not-found-page__code {
  color: #2a4ca2;
  font-size: clamp(88px, 13vw, 178px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .86;
}

.not-found-page__panel {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  bottom: 36px;
  box-shadow: 0 18px 42px rgba(15, 34, 74, .1);
  display: flex;
  gap: 14px;
  left: 36px;
  padding: 18px;
  position: absolute;
  right: 36px;
}

.not-found-page__status {
  background: #00be8d;
  border-radius: 999px;
  display: block;
  height: 12px;
  width: 12px;
}

.not-found-page__panel strong,
.not-found-page__panel small {
  display: block;
}

.not-found-page__panel strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.25;
}

.not-found-page__panel small {
  color: #64748b;
  font-size: 13px;
  margin-top: 3px;
}

@media (max-width: 991px) {
  .not-found-page {
    padding: 54px 0 66px;
  }

  .not-found-page__inner {
    grid-template-columns: 1fr;
  }

  .not-found-page__visual {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .not-found-page__actions .btn-main,
  .not-found-page__actions .btn-ghost {
    width: 100%;
  }

  .not-found-page__visual {
    padding: 24px;
  }

  .not-found-page__visual::before,
  .not-found-page__visual::after,
  .not-found-page__panel {
    left: 24px;
    right: 24px;
  }
}

.hero-home {
  background: #ffffff;
  padding: 34px 0 58px;
}

.hero-home__slider {
  margin: 0 auto;
  max-width: 1500px;
  position: relative;
}

.hero-home__slides {
  background: #eff1f4;
  border-radius: 30px;
  min-height: 470px;
  overflow: hidden;
  position: relative;
}

.hero-home__slide {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.hero-home__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateX(0);
}

.hero-home__panel {
  align-self: center;
  background: rgba(255, 255, 255, .7);
  border-radius: 20px;
  margin: 36px 0 36px 36px;
  max-width: 760px;
  min-height: 360px;
  padding: 44px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.hero-home__panel h1,
.hero-home__panel h2 {
  color: #30313a;
  font-size: clamp(28px, 4.2vw, 34px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  max-width: 760px;
}

.hero-home__panel ul {
  color: #6b6d73;
  display: grid;
  font-size: clamp(14px, 1.5vw, 15px);
  gap: 8px;
  line-height: 1.32;
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
}

.hero-home__panel li::before {
  content: "· ";
}

.hero-home__cta {
  align-items: center;
  background: #2a4ca2;
  border-radius: 14px;
  color: #ffffff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  margin-top: 38px;
  min-height: 60px;
  min-width: 190px;
  padding: 0 28px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.hero-home__cta:hover {
  background: #1d3675;
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-home__media {
  min-height: 470px;
  overflow: hidden;
  position: absolute;
  width: 100%;
}


.hero-home__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 6.5s ease;
  width: 100%;
}

.hero-home__slide.is-active .hero-home__media img {
  transform: scale(1);
}

.hero-home__tabs {
  align-items: stretch;
  background: rgba(255, 255, 255, .92);
  border-radius: 16px;
  bottom: -54px;
  box-shadow: 0 18px 38px rgba(24, 28, 38, .09);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  left: 50%;
  max-width: 980px;
  min-height: 80px;
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
  width: min(68vw, 980px);
  z-index: 5;
}

.hero-home__tab {
  background: transparent;
  border: 0;
  color: #6a6d73;
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  padding: 22px 18px;
  position: relative;
  transition: background .25s ease, color .25s ease;
}

.hero-home__tab::before {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(24, 28, 38, .1);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease;
}

.hero-home__tab strong,
.hero-home__tab span {
  position: relative;
  z-index: 1;
}

.hero-home__tab strong {
  color: #2a4ca2;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.1;
}

.hero-home__tab span {
  color: #6f7177;
  font-size: clamp(12px, 1.25vw, 13px);
  line-height: 1.1;
}

.hero-home__tab.is-active::before {
  opacity: 1;
}

.hero-home__tab.is-active strong {
  font-weight: 700;
}

.section-products {
  background: #ffffff;
  padding: 64px 0 56px;
}

.section-products .section-head {
  margin-bottom: 28px;
}

.section-products .section-head h2 {
  color: #2f3138;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: 0;
}

.section-products .section-head p {
  color: #6d737c;
  font-size: 18px;
  margin-top: 10px;
}

.product-grid-2--catalog {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 0;
}

.product-card--catalog {
  background: #f4f4f6;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 258px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.product-card--catalog.product-card--wide {
  grid-column: span 3;
  min-height: 258px;
}

.product-card--catalog:hover {
  background: #eeeef1;
  border: 0;
  box-shadow: none;
  transform: translateY(-2px);
}

.product-card--catalog:hover .product-card__title {
  color: #2a4ca2;
}

.product-card__title {
  color: #30313a;
  display: block;
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.08;
  max-width: 340px;
  position: relative;
  transition: color .2s ease;
  z-index: 1;
}

.product-card__text {
  color: #686b72;
  display: block;
  font-size: clamp(12px, 1.45vw, 16px);
  line-height: 1.25;
  margin-top: 26px;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.product-card__art {
  align-items: center;
  background: rgba(255, 255, 255, .74);
  border-radius: 50%;
  bottom: -84px;
  color: #2a4ca2;
  display: inline-flex;
  font-size: clamp(44px, 4vw, 72px);
  height: 230px;
  justify-content: center;
  position: absolute;
  right: -48px;
  width: 230px;
}

.product-card__art i {
  filter: drop-shadow(0 12px 16px rgba(43, 66, 240, 0.22));
  transform: translate(-18px, -22px);
}

.home-news-widget {
  padding: 58px 0 64px;
}

.home-news-widget__head {
  align-items: center;
  margin-bottom: 28px;
}

.home-news-widget__actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  margin-left: auto;
}

.home-news-widget__rubrics {
  border-bottom: 1px solid #dfe7f1;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: -6px 0 28px;
}

.home-news-widget__rubric {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #6f8094;
  display: inline-flex;
  font-size: clamp(14px, 2vw, 15px);
  font-weight: 500;
  line-height: 1.1;
  min-height: 26px;
  padding: 0;
  position: relative;
  transition: color .2s ease;
  white-space: nowrap;
}

.home-news-widget__rubric::after {
  background: #1683ff;
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: opacity .2s ease;
}

.home-news-widget__rubric:hover,
.home-news-widget__rubric:focus-visible,
.home-news-widget__rubric.is-active {
  color: #1683ff;
  outline: none;
}

.home-news-widget__rubric.is-active::after {
  opacity: 1;
}

.home-news-widget__nav {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dfe6f0;
  border-radius: 50%;
  color: #26354f;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  width: 42px;
}

.home-news-widget__nav:hover,
.home-news-widget__nav:focus-visible {
  background: #2a4ca2;
  border-color: #2a4ca2;
  color: #ffffff;
  outline: none;
}

.home-news-widget__viewport {
  margin: 0 -18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 18px 18px;
  scroll-behavior: smooth;
  scroll-padding-left: 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: thin;
}

.home-news-widget__viewport::-webkit-scrollbar {
  height: 8px;
}

.home-news-widget__viewport::-webkit-scrollbar-track {
  background: #eef2f7;
  border-radius: 999px;
}

.home-news-widget__viewport::-webkit-scrollbar-thumb {
  background: #c9d3e3;
  border-radius: 999px;
}

.home-news-widget__grid {
  display: flex;
  gap: 14px;
  grid-template-columns: none;
}

.home-news-card {
  display: flex;
  flex: 0 0 calc((100% - 42px) / 3.5);
  flex-direction: column;
  min-height: 390px;
  scroll-snap-align: start;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-news-card:hover {
  border-color: #cbd6e6;
  box-shadow: 0 16px 34px rgba(20, 35, 70, .08);
  transform: translateY(-2px);
}

.home-news-card:hover h3 a {
  color: #2a4ca2;
}

.home-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.home-news-card h3 a {
  transition: color .2s ease;
}

.home-news-card p {
  -webkit-line-clamp: 3;
}

.home-osago-quick {
  background: #ffffff;
  padding: 78px 0 66px;
}

.home-osago-quick.pt-5 {
  padding-top: 78px !important;
}

.home-osago-quick__card {
  align-items: center;
  background: #f1f2f5;
  border: 0;
  border-radius: 28px;
  box-shadow: none;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, .96fr) minmax(420px, .84fr);
  margin: 0 auto;
  max-width: 1500px;
  overflow: visible;
  padding: clamp(34px, 5vw, 58px);
}

.home-osago-quick__left {
  min-width: 0;
}

.home-osago-quick__title {
  color: #30313a;
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
  max-width: 720px;
}

.home-osago-quick__text {
  color: #74767d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
  margin: 34px 0 0;
  max-width: 620px;
}

.home-osago-quick__form-panel {
  background: #ffffff;
  border-radius: 18px;
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
}

.home-osago-quick__form-row {
  align-items: stretch;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
}

.home-osago-plate__label {
  color: #30313a;
  display: block;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
}

.home-osago-plate__input-wrap {
  background: #f7f7f9;
  border: 1px solid #dfe0e5;
  border-radius: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  min-height: 76px;
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-osago-plate__input-wrap:focus-within {
  background: #ffffff;
  border-color: #2a4ca2;
  box-shadow: 0 0 0 4px rgba(42, 76, 162, .12);
}

.home-osago-plate__input-wrap.is-plate-valid {
  border-color: #24a35a;
  box-shadow: 0 0 0 4px rgba(36, 163, 90, .12);
}

.home-osago-plate__input-wrap.is-plate-valid::after {
  align-items: center;
  background: #24a35a;
  border-radius: 50%;
  color: #ffffff;
  content: "✓";
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  right: 130px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  z-index: 2;
}

.home-osago-plate__input {
  background: transparent;
  border: 0;
  color: #30313a;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  min-height: 76px;
  min-width: 0;
  padding: 0 58px 0 22px;
  text-transform: uppercase;
}

.home-osago-plate__input::placeholder {
  color: #b8bac2;
}

.home-osago-plate__country {
  align-items: center;
  background: #eeeef2;
  border-left: 1px solid #dfe0e5;
  color: #b6b8c0;
  display: inline-flex;
  font-size: 24px;
  font-weight: 500;
  gap: 0;
  justify-content: center;
  min-width: 0;
}

.home-osago-plate__flag {
  display: none;
}

.home-osago-quick__submit {
  align-items: center;
  background: #2a4ca2;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  display: inline-flex;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 800;
  justify-content: center;
  min-height: 76px;
  padding: 0 28px;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  width: 100%;
}

.home-osago-quick__submit:hover,
.home-osago-quick__submit:focus-visible {
  background: #1f3d88;
  box-shadow: 0 16px 28px rgba(42, 76, 162, .18);
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .hero-home {
    padding: 20px 0 46px;
  }

  .hero-home__slides {
    min-height: 600px;
  }

  .hero-home__slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-home__panel {
    margin: 24px;
    max-width: none;
    min-height: 0;
    padding: 34px;
  }

  .hero-home__media {
    min-height: 260px;
    order: -1;
  }

  .hero-home__tabs {
    bottom: -44px;
    min-height: 88px;
    width: min(88vw, 820px);
  }

  .hero-home__tab {
    padding: 18px 12px;
  }

  .product-grid-2--catalog {
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card--catalog,
  .product-card--catalog.product-card--wide {
    grid-column: span 1;
  }

  .home-news-card {
    flex-basis: calc((100% - 28px) / 2.4);
  }

  .home-osago-quick__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-osago-quick__title,
  .home-osago-quick__text {
    max-width: 760px;
  }
}

@media (max-width: 840px) {
  .hero-home {
    padding: 12px 0 34px;
  }

  .hero-home__slider {
    margin: 0 calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  }

  .hero-home__slides {
    border-radius: 0;
    min-height: 440px;
  }

  .hero-home__panel {
    border-radius: 18px;
    margin: 14px;
    padding: 24px 20px;
  }

  .hero-home__panel h1,
  .hero-home__panel h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-home__panel ul {
    font-size: 16px;
    gap: 7px;
    margin-top: 26px;
  }

  .hero-home__cta {
    border-radius: 12px;
    font-size: 17px;
    margin-top: 26px;
    min-height: 54px;
    min-width: 150px;
  }

  .hero-home__media {
    min-height: 230px;
  }

  .hero-home__tabs {
    background: rgba(255, 255, 255, .96);
    bottom: -28px;
    display: flex;
    left: 14px;
    max-width: none;
    min-height: 74px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    right: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    transform: none;
    width: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-home__tabs::-webkit-scrollbar {
    display: none;
  }

  .hero-home__tab {
    flex: 0 0 42%;
    padding: 15px 12px;
    scroll-snap-align: center;
  }

  .hero-home__tab strong {
    font-size: 16px;
  }

  .hero-home__tab span {
    font-size: 14px;
  }

  .section-products {
    padding: 38px 0 34px;
  }

  .section-products .section-head {
    margin-bottom: 18px;
  }

  .section-products .section-head h2 {
    font-size: 28px;
  }

  .section-products .section-head p {
    font-size: 14px;
    line-height: 1.45;
  }

  .product-grid-2--catalog {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card--catalog {
    border-radius: 16px;
    min-height: 196px;
    padding: 24px;
  }

  .product-card--catalog.product-card--wide {
    min-height: 196px;
  }

  .product-card__title {
    font-size: 30px;
  }

  .product-card__text {
    font-size: 18px;
    margin-top: 18px;
    max-width: 260px;
  }

  .product-card__art {
    bottom: -72px;
    font-size: 46px;
    height: 180px;
    right: -48px;
    width: 180px;
  }

  .product-card__art i {
    transform: translate(-12px, -18px);
  }

  .home-news-widget {
    padding: 36px 0 44px;
  }

  .home-news-widget__head {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 18px;
  }

  .home-news-widget__actions {
    margin-left: 0;
    justify-content: flex-end;
    width: auto;
  }

  .home-news-widget__rubrics {
    border-bottom: 1px solid #dfe7f1;
    flex-wrap: nowrap;
    gap: 24px;
    margin: -2px calc(var(--bs-gutter-x, 1.5rem) * -0.5) 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    scroll-padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-news-widget__rubrics::-webkit-scrollbar {
    display: none;
  }

  .home-news-widget__rubric {
    font-size: 14px;
    min-height: 32px;
    scroll-snap-align: start;
  }

  .home-news-widget__nav {
    display: none;
  }

  .home-news-widget__all {
    margin-left: auto;
  }

  .home-news-widget__viewport {
    margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 14px);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 28px);
    scroll-padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 14px);
    scrollbar-width: none;
  }

  .home-news-widget__viewport::-webkit-scrollbar {
    display: none;
  }

  .home-news-card {
    flex-basis: min(78vw, 330px);
    min-height: 360px;
  }

  .home-osago-quick,
  .home-osago-quick.pt-5 {
    padding-bottom: 42px;
    padding-top: 46px !important;
  }

  .home-osago-quick__card {
    border-radius: 20px;
    gap: 24px;
    padding: 24px;
  }

  .home-osago-quick__text {
    margin-top: 18px;
  }

  .home-osago-quick__form-panel {
    border-radius: 16px;
    padding: 20px;
  }

  .home-osago-plate__label {
    margin-bottom: 14px;
  }

  .home-osago-plate__input-wrap {
    grid-template-columns: minmax(0, 1fr) 82px;
    min-height: 64px;
  }

  .home-osago-plate__input-wrap.is-plate-valid::after {
    font-size: 14px;
    height: 24px;
    right: 92px;
    width: 24px;
  }

  .home-osago-plate__input {
    font-size: 20px;
    min-height: 64px;
    padding: 0 42px 0 14px;
  }

  .home-osago-plate__country {
    font-size: 18px;
  }

  .home-osago-quick__submit {
    font-size: 17px;
    min-height: 64px;
    padding: 0 18px;
  }

  .home-news-card:hover {
    box-shadow: none;
    transform: none;
  }

  .section-insurers[data-product="all"] .insurers-grid {
    display: flex;
    gap: 12px;
    grid-template-columns: none;
    margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 14px);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 28px);
    scroll-padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + 14px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .section-insurers[data-product="all"] .insurers-grid::-webkit-scrollbar {
    display: none;
  }

  .section-insurers[data-product="all"] .insurer-card {
    flex: 0 0 min(64vw, 310px);
    min-width: min(64vw, 310px);
    scroll-snap-align: start;
  }

  .section-insurers[data-product="all"] .insurers-empty {
    flex: 0 0 calc(100% - 28px);
    min-width: calc(100% - 28px);
  }
}

@media screen and (max-width: 800px) {
  .home-product-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
}

@media (max-width: 420px) {
  .home-news-card {
    flex-basis: 80vw;
  }

  .home-news-card__body {
    padding: 16px;
  }
}
/* Support page and cookie notice */
.support-page { background: #f5f8fc; padding: 56px 0 72px; }
.support-hero { align-items: stretch; display: grid; gap: 22px; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr); }
.support-kicker { color: #2563eb; display: block; font-size: 12px; font-weight: 800; letter-spacing: .16em; margin-bottom: 14px; text-transform: uppercase; }
.support-hero h1 { color: #0f172a; font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1; margin: 0; }
.support-hero p { color: #475569; font-size: 18px; line-height: 1.55; margin: 20px 0 0; max-width: 760px; }
.support-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.support-hero__panel { background: #fff; border: 1px solid #dfe7f1; border-radius: 20px; box-shadow: 0 20px 50px rgba(15, 23, 42, .08); display: flex; flex-direction: column; gap: 14px; justify-content: center; padding: 26px; }
.support-contact-row { align-items: center; color: #0f172a; display: flex; gap: 12px; font-weight: 700; }
.support-contact-row i { color: #2563eb; width: 20px; }
.support-contact-row a { color: inherit; text-decoration: none; }
.support-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 34px; }
.support-info, .support-section { background: #fff; border-radius: 34px; padding: 28px; }
.support-info h2, .support-section h2 { color: #0f172a; font-size: 26px; font-weight: 800; margin: 0 0 16px; }
.support-info p, .support-info li, .support-section p { color: #475569; line-height: 1.65; }
.support-info ol { margin: 0; padding-left: 20px; }
.support-section { margin-top: 18px; }
.support-faq { display: grid; gap: 10px; }
.support-faq details { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px 18px; }
.support-faq summary { color: #0f172a; cursor: pointer; font-weight: 800; }
.support-faq p { margin: 12px 0 0; }
.support-docs-list { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.support-doc-card { align-items: flex-start; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; color: inherit; display: flex; gap: 14px; padding: 16px; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.support-doc-card:hover { border-color: #93c5fd; box-shadow: 0 14px 34px rgba(37, 99, 235, .12); transform: translateY(-1px); }
.support-doc-card__icon { align-items: center; background: #dbeafe; border-radius: 12px; color: #2563eb; display: inline-flex; flex: 0 0 auto; height: 42px; justify-content: center; width: 42px; }
.support-doc-card__body { display: grid; gap: 5px; min-width: 0; }
.support-doc-card__body strong { color: #0f172a; font-size: 16px; }
.support-doc-card__body span { color: #475569; line-height: 1.5; }
.support-doc-card__body small { color: #64748b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.support-legal-list { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px;margin-bottom: 24px;}
.support-legal-list div { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px; }
.support-legal-list strong, .support-legal-list span { display: block; }
.support-legal-list strong { color: #0f172a; margin-bottom: 8px; }
.support-legal-list span { color: #475569; font-size: 14px; line-height: 1.55; }
.support-legal-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.support-legal-links a { background: #0f172a; border-radius: 999px; color: #fff; font-size: 13px; font-weight: 800; padding: 10px 14px; text-decoration: none; }
.support-legal-links a:hover { background: #2563eb; }
.support-document { color: #475569; display: grid; gap: 22px; line-height: 1.7; }
.support-document__section { border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; }
.support-document__section:last-child { border-bottom: 0; padding-bottom: 0; }
.support-document__section h2 { color: #0f172a; font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.support-document__section p { margin: 0; }
.cookie-consent { align-items: center; background: #0f172a; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; bottom: 18px; box-shadow: 0 20px 50px rgba(15,23,42,.24); color: #fff; display: flex; gap: 18px; left: 50%; max-width: min(1040px, calc(100vw - 24px)); padding: 16px; position: fixed; transform: translateX(-50%); width: 100%; z-index: 1080; }
.cookie-consent__text { display: grid; gap: 4px; line-height: 1.45; }
.cookie-consent__text span { color: #cbd5e1; font-size: 13px; }
.cookie-consent__text a { color: #93c5fd; }
.cookie-consent__actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-consent__btn { background: transparent; border: 1px solid #64748b; border-radius: 999px; color: #fff; font-weight: 800; padding: 10px 14px; }
.cookie-consent__btn--accept { background: #2563eb; border-color: #2563eb; }
@media (max-width: 860px) {
  .support-hero, .support-grid, .support-docs-list, .support-legal-list { grid-template-columns: 1fr; }
  .cookie-consent { align-items: stretch; flex-direction: column; }
  .cookie-consent__actions { justify-content: flex-end; }
}
