:root {
  --accent: #6550b4;
  --accent-dark: #4d3a9a;
  --text: #171b2a;
  --muted: #676b7b;
  --line: rgba(101, 80, 180, 0.12);
  --soft: #fbfaff;
  --soft-strong: #f3efff;
  --panel: rgba(255, 255, 255, 0.94);
  --shadow: 0 18px 46px rgba(58, 45, 110, 0.09);
  --shadow-strong: 0 24px 64px rgba(42, 40, 78, 0.12);
}

.competence-page {
  min-height: 100vh;
  padding: 38px 0 72px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(101, 80, 180, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 42%, #fbfaff 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.competence-page a {
  color: inherit;
}

.image-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(101, 80, 180, 0.62);
  font-weight: 800;
}

.competence-page__wrap {
  width: min(1500px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin: 0 auto;
}

.competence-page__aside {
  position: sticky;
  top: 104px;
  padding: 28px 22px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.competence-page__breadcrumbs {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 14px;
}

.competence-page__breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.competence-page__aside h1 {
  margin: 0 0 18px;
  color: #272b36;
  font-size: 28px;
  line-height: 1.18;
}

.competence-page__group {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 700;
}

.competence-page__related {
  display: grid;
  gap: 10px;
}

/* Shared navigation for product information sheets. */
.product-sheet-nav {
  width: 100%;
  gap: 12px;
}

.product-sheet-nav > a {
  min-height: 76px;
  padding: 16px 20px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.25;
}

.competence-page__related a,
.about-nav__button {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(101, 80, 180, 0.08), transparent 34%),
    #ffffff;
  color: var(--accent);
  font: 800 15px/1.25 "Inter", "Segoe UI", Arial, sans-serif;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(58, 45, 110, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.competence-page__related a:hover,
.competence-page__related a.is-active,
.about-nav__item:hover .about-nav__button,
.about-nav__item:focus-within .about-nav__button {
  background: linear-gradient(135deg, #7357d6 0%, #6550b4 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(101, 80, 180, 0.24);
  transform: translateY(-2px);
}

.road-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 32px rgba(58, 45, 110, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.road-brand-logo:hover {
  border-color: rgba(101, 80, 180, 0.24);
  box-shadow: 0 20px 40px rgba(58, 45, 110, 0.14);
  transform: translateY(-3px);
}

.road-brand-logo img {
  width: min(100%, 190px);
  height: auto;
  display: block;
  object-fit: contain;
}

.competence-page__nav-group {
  display: grid;
  gap: 8px;
}

.competence-page__subnav {
  display: grid;
  gap: 6px;
  padding-left: 16px;
}

.competence-page__subnav a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(101, 80, 180, 0.06);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.competence-page__subnav a::before {
  content: "↳";
  margin-right: 6px;
  color: var(--accent);
}

.competence-page__content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 52px;
  align-items: start;
  padding: 58px;
  border: 1px solid rgba(101, 80, 180, 0.08);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.competence-page__text {
  padding-top: 4px;
}

.competence-page__content h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #05060a;
  font-size: 26px;
  line-height: 1.22;
}

.competence-page__content p {
  margin: 0 0 24px;
  color: #11131b;
  font-size: 16px;
  line-height: 1.65;
}

.competence-page__content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: #11131b;
  font-size: 15px;
  line-height: 1.45;
}

.competence-page__media {
  align-self: start;
  justify-self: end;
  padding-top: 12px;
}

.competence-page__media img {
  width: 220px;
  height: 220px;
  display: block;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: 0 20px 44px rgba(83, 72, 121, 0.2);
}

/* Dropdown side navigation */
.about-nav {
  gap: 10px;
}

.about-nav__item {
  position: relative;
}

.about-nav__button {
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.about-nav__button span {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.about-nav__item:hover .about-nav__button span,
.about-nav__item:focus-within .about-nav__button span {
  transform: rotate(180deg);
}

.about-nav__dropdown {
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.26s ease, opacity 0.2s ease, padding 0.2s ease, transform 0.2s ease;
}

.about-nav__item:hover .about-nav__dropdown,
.about-nav__item:focus-within .about-nav__dropdown {
  max-height: 420px;
  padding: 8px 8px 2px;
  opacity: 1;
  transform: translateY(0);
}

.about-nav__dropdown a {
  min-height: auto;
  padding: 10px 12px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
  color: #2a2d38;
  font-size: 13px;
  box-shadow: none;
}

.about-nav__dropdown a:hover {
  background: var(--soft-strong);
  color: var(--accent-dark);
  transform: none;
}

/* Contacts and about */
.contacts-page__content,
.about-page__content,
.portfolio-page__content {
  grid-template-columns: 1fr;
  align-items: start;
}

.contacts-page__content {
  display: block;
  padding-top: 78px;
}

.contacts-page__text,
.about-page__text,
.portfolio-page__intro {
  max-width: 780px;
}

.contacts-page__text a,
.contacts-page__text strong,
.contacts-page__text b {
  color: var(--accent-dark) !important;
}

.contacts-page__text a {
  text-decoration: none;
}

.contacts-page__text a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts-page__lead {
  display: grid;
  gap: 10px;
  margin-bottom: 46px;
  color: #11131b;
  font-size: 20px;
  line-height: 1.45;
}

.contacts-page__lead p,
.contacts-page__section p {
  margin: 0;
}

.contacts-page__section {
  display: grid;
  gap: 14px;
  margin-top: 38px;
  color: #11131b;
  font-size: 16px;
  line-height: 1.55;
}

.contacts-page__section h3 {
  margin: 0 0 4px;
  color: var(--accent-dark) !important;
  font-size: 16px;
  line-height: 1.35;
}

.about-page__eyebrow {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.about-page__text h2 {
  margin-bottom: 28px;
}

.about-page__text p {
  margin-bottom: 22px;
}

.about-page__accent {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: #f7f4ff;
  color: #221b42 !important;
  font-weight: 800;
}

/* Portfolio */
.portfolio-page__content {
  display: block;
  padding: 54px 46px 56px;
}

.portfolio-page__intro {
  margin-bottom: 34px;
}

.portfolio-page__intro h2 {
  margin-bottom: 18px;
}

.portfolio-page__intro p {
  margin: 0;
  color: #3d4150;
}

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

.portfolio-card {
  min-height: 136px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 16px;
  align-content: start;
  position: relative;
  overflow: hidden;
  padding: 20px 54px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(101, 80, 180, 0.14), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #fbfaff 100%);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(58, 45, 110, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.portfolio-card::after {
  content: ">";
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 18px;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.portfolio-card:hover {
  border-color: rgba(101, 80, 180, 0.3);
  box-shadow: 0 20px 42px rgba(101, 80, 180, 0.18);
  transform: translateY(-4px);
}

.portfolio-card:hover::after {
  background: var(--accent);
  color: #ffffff;
  transform: translateX(2px);
}

.portfolio-card__number {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.portfolio-card__type {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(101, 80, 180, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.competence-showcase__icon svg {
  width: 60px;
  height: 60px;
  display: block;
  color: #6550b4;
}

.product-document-image {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(58, 45, 110, 0.1);
}

.product-document-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.product-document-image--interactive {
  cursor: zoom-in;
}

.product-document-image--interactive img {
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.product-document-image--interactive:hover img {
  transform: scale(1.035);
}

.product-document-image--interactive img:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -6px;
}

.portfolio-card strong {
  grid-column: 2;
  max-width: 430px;
  color: #252836;
  font-size: 18px;
  line-height: 1.22;
}

.portfolio-card__note {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.portfolio-card--featured {
  grid-column: 1 / -1;
  min-height: 148px;
  align-content: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #7f32f4 0%, #6550b4 58%, #47358e 100%);
  color: #ffffff;
}

.portfolio-card--featured .portfolio-card__number,
.portfolio-card--featured .portfolio-card__type {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.portfolio-card--featured strong,
.portfolio-card--featured .portfolio-card__note {
  color: #ffffff;
}

.portfolio-card--featured::after {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.portfolio-card--featured:hover::after {
  background: #ffffff;
  color: var(--accent);
}

/* Showcase pages */
.competence-showcase {
  width: 100%;
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.competence-showcase__hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  scroll-margin-top: 118px;
}

.competence-showcase__text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px 54px;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 74%, rgba(255, 255, 255, 0.12) 100%);
}

.competence-showcase__text h1 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 4.1vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.competence-showcase__lead {
  margin: 28px 0 24px;
  color: var(--accent);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.competence-showcase__text p:not(.competence-showcase__lead) {
  max-width: 560px;
  margin: 0;
  color: #2e3548;
  font-size: 20px;
  line-height: 1.62;
}

.competence-showcase__visual {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(101, 80, 180, 0.16), transparent 36%),
    linear-gradient(145deg, #fbfaff 0%, #eee9fb 100%);
}

.competence-showcase__visual::before {
  content: "";
  width: 34%;
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.competence-showcase__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.competence-showcase__visual--product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.competence-showcase__visual--product::before {
  display: none;
}

.competence-showcase__visual--product img {
  width: min(360px, 70%);
  height: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(58, 45, 110, 0.2));
}

.competence-showcase__label {
  position: absolute;
  z-index: 2;
  top: 34%;
  min-width: 210px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(8, 18, 42, 0.18);
}

.competence-showcase__label--before {
  left: 18%;
  background: rgba(52, 55, 71, 0.72);
}

.competence-showcase__label--after {
  right: 11%;
  background: rgba(101, 80, 180, 0.82);
}

.competence-showcase__arrow {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 52%;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  font-size: 46px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 34px rgba(8, 18, 42, 0.18);
}

.competence-showcase__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
  scroll-margin-top: 118px;
}

.competence-showcase__benefits--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.competence-showcase__benefit {
  min-height: 150px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.competence-showcase__icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
}

img.competence-showcase__icon {
  display: block;
  object-fit: contain;
  padding: 8px;
  background: #f8f6ff;
}

img.competence-showcase__workflow-media {
  display: block;
  object-fit: contain;
  padding: 10px;
  background: #f8f6ff;
}

img.competence-showcase__workflow-media.fibiol-workflow-photo {
  width: 104px !important;
  height: 104px !important;
  aspect-ratio: 1;
  object-fit: cover !important;
  padding: 0 !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%);
}

.fibiol-result-metrics {
  width: 116px;
  height: 116px;
  flex: 0 0 116px;
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border: 3px solid rgba(101, 80, 180, 0.24);
  border-radius: 50%;
  background: #f8f6ff;
  box-shadow: inset 0 0 0 6px #ffffff;
  text-align: center;
}

.fibiol-result-metrics__change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.fibiol-result-metrics__change strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.fibiol-result-metrics__change span {
  color: var(--accent);
  font-size: 17px;
  font-weight: 900;
}

.fibiol-result-metrics__total {
  color: var(--accent-dark);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}


.competence-showcase__benefit h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.14;
}

.competence-showcase__benefit p {
  margin: 0;
  color: #3b4051;
  font-size: 17px;
  line-height: 1.45;
}

/* Fibiol benefits use a vertical icon-first layout. */
.fibiol-page .competence-showcase__benefit {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.fibiol-page .competence-showcase__benefit > .competence-showcase__icon {
  flex: 0 0 76px;
  display: grid;
  place-items: center;
}

.fibiol-page .competence-showcase__benefit > div:not(.fibiol-noise-popover) {
  width: 100%;
}

.competence-showcase__tag {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(58, 45, 110, 0.08);
}

.competence-showcase__cta {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  padding: 0 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7357d6 0%, #6550b4 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(101, 80, 180, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.competence-showcase__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(101, 80, 180, 0.34);
}

/* Shared consultation phone reveal for digital product pages. */
.consultation-reveal {
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.16);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.consultation-reveal--legacy {
  grid-column: 2;
}

.consultation-reveal summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  background: linear-gradient(135deg, #7357d6, #6550b4);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.consultation-reveal summary::-webkit-details-marker {
  display: none;
}

.consultation-reveal summary span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 25px;
  line-height: 1;
  transition: transform 0.22s ease;
}

.consultation-reveal[open] summary span {
  transform: rotate(45deg);
}

.consultation-reveal__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px 24px;
  align-items: center;
  padding: 22px 24px;
}

.consultation-reveal__content > span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.consultation-reveal__content > a:not(.consultation-reveal__contacts) {
  color: var(--accent-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
}

.consultation-reveal__contacts {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(101, 80, 180, 0.2);
  border-radius: 10px;
  color: var(--accent-dark) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .consultation-reveal--legacy {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .consultation-reveal summary {
    min-height: 58px;
    padding: 0 18px;
    font-size: 16px;
  }

  .consultation-reveal__content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .consultation-reveal__content > a:not(.consultation-reveal__contacts) {
    font-size: 22px;
  }
}

/* Generic workflow and formula */
.competence-showcase__workflow,
.competence-showcase__formula {
  margin-top: 22px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.competence-showcase__workflow {
  display: grid;
  grid-template-columns: 200px repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
}

.competence-showcase__workflow h2 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  line-height: 1.12;
}

.competence-showcase__workflow-step {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  position: relative;
  padding: 34px 8px 0;
  text-align: center;
}

.competence-showcase__workflow-step > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.competence-showcase__workflow-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 86px;
  right: -20px;
  color: rgba(101, 80, 180, 0.42);
  font-size: 30px;
  font-weight: 900;
}

.competence-showcase__workflow-media {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  border: 2px solid rgba(101, 80, 180, 0.18);
  border-radius: 50%;
  background: #f8f6ff;
  color: var(--accent);
  font-size: 12px;
  box-shadow: inset 0 0 0 7px #ffffff;
}

.competence-showcase__workflow-number {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  transform: translateX(-50%);
}

.competence-showcase__workflow-step h3 {
  max-width: 190px;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.competence-showcase__workflow-step p {
  max-width: 190px;
  margin: 0;
  color: #3b4051;
  font-size: 13px;
  line-height: 1.42;
}

.competence-showcase__formula {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(101, 80, 180, 0.1), transparent 30%),
    #ffffff;
}

.competence-showcase__formula-title {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.competence-showcase__formula-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 12px;
}

.competence-showcase__formula h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
}

.competence-showcase__formula-line {
  display: grid;
  gap: 4px;
  padding: 0 28px;
  border-left: 1px solid rgba(101, 80, 180, 0.2);
  border-right: 1px solid rgba(101, 80, 180, 0.2);
}

.competence-showcase__formula-line strong {
  color: var(--accent);
  font-size: 46px;
  line-height: 1;
}

.competence-showcase__formula-line span,
.competence-showcase__formula p {
  margin: 0;
  color: #3b4051;
  font-size: 16px;
  line-height: 1.45;
}

/* KS1 */
.ks1-hero {
  min-height: 520px;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
}

.ks1-hero .competence-showcase__text {
  justify-content: flex-start;
  padding: 44px 42px 46px;
}

.ks1-hero .competence-showcase__text h1 {
  max-width: 600px;
  font-size: clamp(38px, 3.1vw, 54px);
  line-height: 1.08;
}

.ks1-hero .competence-showcase__lead {
  max-width: 560px;
  margin: 26px 0 22px;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.22;
}

.ks1-hero .competence-showcase__text p:not(.competence-showcase__lead) {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.58;
}

.ks1-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 0;
  background:
    radial-gradient(circle at 58% 34%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #eef5ff 0%, #dcd5f4 48%, #6550b4 100%);
}

.ks1-hero__visual::before {
  display: none;
}

.ks1-hero__visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.03);
}

.ks1-params {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.ks1-param {
  min-height: 132px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px 28px;
}

.ks1-param + .ks1-param {
  border-left: 1px solid rgba(101, 80, 180, 0.12);
}

.ks1-param__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
}

.ks1-param__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.ks1-param strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 24px;
  line-height: 1.1;
}

.ks1-param p {
  margin: 0;
  color: #3b4051;
  font-size: 15px;
  line-height: 1.35;
}

.ks1-benefits {
  margin-top: 22px;
}

.ks1-benefits .competence-showcase__benefit {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  position: relative;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ks1-benefits .competence-showcase__benefit::after {
  content: "→";
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  bottom: 22px;
  border-radius: 50%;
  background: #f3efff;
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.ks1-benefits .competence-showcase__benefit:hover {
  border-color: rgba(101, 80, 180, 0.24);
  box-shadow: 0 22px 48px rgba(58, 45, 110, 0.14);
  transform: translateY(-4px);
}

.ks1-benefits .competence-showcase__benefit:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.ks1-benefits .competence-showcase__benefit:hover .competence-showcase__icon {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(101, 80, 180, 0.22);
}

.ks1-benefits .competence-showcase__icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
}

.ks1-benefits .competence-showcase__benefit h3 {
  margin-bottom: 10px;
}

.ks1-benefits .competence-showcase__benefit p {
  max-width: 260px;
}

.ks1-final-visual {
  margin: 30px 0 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(101, 80, 180, 0.14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7f4ff 100%);
  box-shadow: var(--shadow-strong);
}

.ks1-final-visual img {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(35, 28, 70, 0.14);
}

@media (max-width: 860px) {
  .ks1-final-visual {
    margin-top: 22px;
    padding: 10px;
    border-radius: 22px;
  }

  .ks1-final-visual img {
    max-height: 320px;
    border-radius: 18px;
  }
}

/* KS1 binder detail */
.binder-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1.38fr);
  gap: 36px;
  align-items: stretch;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 58%, rgba(101, 80, 180, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 38%, #f3efff 100%);
  box-shadow: var(--shadow-strong);
  scroll-margin-top: 118px;
}

.binder-hero__text {
  align-self: center;
  padding: 10px 0 10px 10px;
}

.binder-hero__text h1 {
  max-width: 390px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(48px, 4.4vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.binder-hero__lead {
  max-width: 360px;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.42;
}

.binder-hero__text p:not(.binder-hero__lead) {
  max-width: 360px;
  margin: 0;
  color: #3b4051;
  font-size: 17px;
  line-height: 1.5;
}

.binder-hero__visual {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 390px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 70% 36%, rgba(185, 170, 237, 0.36), transparent 32%),
    linear-gradient(135deg, #f6f3ff 0%, #ded7f6 100%);
  box-shadow: 0 24px 54px rgba(35, 28, 70, 0.18);
}

.binder-hero__image {
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  border-radius: 26px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.binder-hero__visual img,
img.binder-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 26px;
}

.binder-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  scroll-margin-top: 118px;
}

.binder-benefit {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.binder-benefit__icon {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
}

.binder-benefit__icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.binder-benefit h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
}

.binder-benefit p {
  max-width: 360px;
  margin: 0;
  color: #3b4051;
  font-size: 16px;
  line-height: 1.45;
}

.binder-workflow {
  margin-top: 24px;
  padding: 34px 36px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.binder-workflow h2 {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.15;
  text-align: center;
}

.binder-workflow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.binder-workflow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.binder-workflow__step:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 58px;
  right: -25px;
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
}

.binder-workflow__number {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.binder-workflow__media {
  width: 112px;
  height: 112px;
  margin-bottom: 16px;
  border: 3px solid rgba(101, 80, 180, 0.18);
  border-radius: 50%;
  background: #f8f6ff;
  color: var(--accent);
  font-size: 12px;
}

.binder-workflow__step h3 {
  max-width: 210px;
  margin: 0 0 9px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.18;
}

.binder-workflow__step p {
  max-width: 230px;
  margin: 0;
  color: #3b4051;
  font-size: 14px;
  line-height: 1.42;
}

/* KS1 rut resistance detail */
.rut-hero,
.shma-hero {
  padding: 42px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 22%, rgba(101, 80, 180, 0.1), transparent 28%),
    #ffffff;
  box-shadow: var(--shadow-strong);
  scroll-margin-top: 118px;
}

.rut-hero__text h1,
.shma-hero__text h1 {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(44px, 4vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.rut-hero__text p,
.shma-hero__text p {
  max-width: 640px;
  margin: 0 0 30px;
  color: #2e3548;
  font-size: 18px;
  line-height: 1.55;
}

.rut-hero__image,
.shma-hero__image {
  width: 100%;
  min-height: 310px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 52% 70%, rgba(255, 190, 38, 0.38), transparent 28%),
    linear-gradient(135deg, #323642 0%, #10131c 58%, #2d2946 100%);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 48px rgba(35, 28, 70, 0.2);
}

img.rut-hero__image,
img.shma-hero__image {
  display: block;
  object-fit: cover;
  object-position: center;
}

.rut-benefits,
.shma-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
  scroll-margin-top: 118px;
}

.shma-benefit {
  min-height: 210px;
  display: flex;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.shma-benefit h3,
.shma-benefit p {
  width: 100%;
}

.rut-benefit {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.rut-benefit h3,
.rut-benefit p {
  width: 100%;
}

.rut-benefit__icon,
.shma-benefit__icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
}

.rut-benefit__icon svg,
.shma-benefit__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.rut-benefit h3,
.shma-benefit h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.14;
}

.rut-benefit p,
.shma-benefit p {
  margin: 0;
  color: #3b4051;
  font-size: 15px;
  line-height: 1.45;
}

.rut-workflow,
.shma-workflow {
  margin-top: 24px;
  padding: 34px 36px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.rut-workflow h2,
.shma-workflow h2 {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.15;
}

.rut-step,
.shma-step {
  display: grid;
  grid-template-columns: 34px 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  position: relative;
  padding: 10px 0;
}

.rut-step:not(:last-child)::after,
.shma-step:not(:last-child)::after {
  content: "";
  width: 2px;
  position: absolute;
  top: calc(50% + 28px);
  bottom: calc(-50% + 28px);
  left: 16px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0,
    var(--accent) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.5;
}

.rut-step__number,
.shma-step__number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.rut-step__media,
.shma-step__media {
  width: 92px;
  height: 92px;
  border: 3px solid rgba(101, 80, 180, 0.18);
  border-radius: 50%;
  background: #f8f6ff;
  color: var(--accent);
  font-size: 12px;
}

.rut-step h3,
.shma-step h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.16;
}

.rut-step p,
.shma-step p {
  max-width: 520px;
  margin: 0;
  color: #3b4051;
  font-size: 15px;
  line-height: 1.45;
}

.shma-hero__image {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 190, 38, 0.34), transparent 30%),
    linear-gradient(135deg, #3a3b3e 0%, #141821 55%, #2f294a 100%);
}

.shma-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 48%);
  gap: 42px;
  align-items: center;
}

.shma-hero__text p {
  margin-bottom: 0;
}

img.shma-hero__image {
  width: min(100%, 560px);
  min-height: 0;
  justify-self: end;
  aspect-ratio: 900 / 744;
  object-fit: cover;
}

.shma-step {
  grid-template-columns: 34px 108px minmax(0, 1fr);
}

img.shma-step__media {
  width: 108px;
  height: 108px;
  display: block;
  padding: 3px;
  border: 0;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(58, 45, 110, 0.16);
}

.shma-step:not(:last-child)::after {
  left: 16px;
}

/* Fibiol */
.fibiol-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 54% 44%, rgba(101, 80, 180, 0.12), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f3f0fb 100%);
}

.fibiol-hero__visual::before {
  display: none;
}

.fibiol-hero__visual img {
  width: min(620px, 78%);
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(42, 40, 78, 0.18));
}

.fibiol-label {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(58, 45, 110, 0.1);
}

.fibiol-label--wall {
  top: 20%;
  left: 26%;
}

.fibiol-label--floor {
  top: 20%;
  right: 8%;
}

.fibiol-label--screed {
  right: 11%;
  bottom: 34%;
}

.fibiol-label--material {
  right: 14%;
  bottom: 25%;
  background: var(--accent);
  color: #ffffff;
}

.fibiol-label--base {
  left: 52%;
  bottom: 18%;
}

.competence-showcase__benefit--hover {
  position: relative;
  cursor: default;
}

.competence-showcase__benefit--hover::after {
  content: "i";
  position: absolute;
  right: 18px;
  top: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.fibiol-noise-popover {
  width: min(680px, 92vw);
  position: absolute;
  left: 0;
  top: calc(100% + 16px);
  z-index: 20;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(58, 45, 110, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
}

.competence-showcase__benefit--hover:hover .fibiol-noise-popover,
.competence-showcase__benefit--hover:focus-within .fibiol-noise-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fibiol-noise-popover h4 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}

.fibiol-noise-popover__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fibiol-noise-popover__grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 14%, rgba(101, 80, 180, 0.12), transparent 34%),
    #fbfaff;
}

.fibiol-noise-popover__grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.fibiol-noise-popover__grid strong {
  color: var(--text);
  font-size: 26px;
  line-height: 1.1;
}

.competence-showcase__note-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.competence-showcase__note-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.18;
}

.competence-showcase__note-card p {
  margin: 0;
  color: #3b4051;
  font-size: 16px;
  line-height: 1.5;
}

/* Fibiol inner pages */
.inner-page-card,
.fibiol-info-card {
  padding: 42px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.inner-page-card__head,
.fibiol-info-card__head {
  max-width: 820px;
  margin-bottom: 28px;
}

.inner-page-card__head h1,
.fibiol-info-card__head h1 {
  margin: 14px 0 16px;
  color: var(--text);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.inner-page-card__head p,
.fibiol-info-card__head p {
  margin: 0;
  color: #303547;
  font-size: 18px;
  line-height: 1.55;
}

.fibiol-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(58, 45, 110, 0.08);
}

.fibiol-spec-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  background: #ffffff;
  color: var(--text);
  font-size: 15px;
}

.fibiol-spec-table th,
.fibiol-spec-table td {
  padding: 14px 16px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  vertical-align: middle;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.fibiol-spec-table th {
  background: var(--soft-strong);
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.fibiol-spec-table td:first-child {
  font-weight: 700;
}

.fibiol-spec-table td:not(:first-child) {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.fibiol-spec-table__section td {
  background: linear-gradient(90deg, #f8f6ff, #ffffff);
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 900;
  text-align: center !important;
}

.fibiol-spec-note {
  margin: 16px 0 0;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.product-spec-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.14);
  border-radius: 22px;
  background: #ffffff;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #202333;
  font-size: 16px;
}

.product-spec-table th,
.product-spec-table td {
  padding: 18px 16px;
  border-right: 1px solid rgba(101, 80, 180, 0.12);
  border-bottom: 1px solid rgba(101, 80, 180, 0.12);
  text-align: center;
  vertical-align: middle;
}

.product-spec-table th {
  background: #f2efff;
  color: #4d3a9a;
  font-weight: 800;
  line-height: 1.25;
}

.product-spec-table th:first-child,
.product-spec-table td:first-child {
  width: 24%;
  text-align: left;
}

.product-spec-table tr:last-child td {
  border-bottom: 0;
}

.product-spec-table th:last-child,
.product-spec-table td:last-child {
  border-right: 0;
}

.product-spec-table tbody tr:nth-child(even) {
  background: #fbfaff;
}

.product-spec-note {
  margin: 20px 0 0;
  color: #676b7b;
  font-size: 14px;
  line-height: 1.5;
}

.bisterol-catalog-table-wrap {
  width: 100%;
  max-width: 100%;
}

.bisterol-catalog-table {
  width: 100%;
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
}

.bisterol-catalog-table th,
.bisterol-catalog-table td {
  padding: 12px 10px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.bisterol-catalog-table th:first-child,
.bisterol-catalog-table td:first-child {
  width: auto !important;
  text-align: center;
}

.bisterol-catalog-table th:nth-child(2),
.bisterol-catalog-table td:nth-child(2) {
  text-align: left;
}

.bisterol-catalog-table__class td {
  padding: 13px 14px;
  background: #f7f4ff;
  color: #25293a;
  text-align: left !important;
}

.bisterol-catalog-table__class strong {
  display: block;
  margin-bottom: 5px;
  color: #4d3a9a;
  font-size: 15px;
}

.bisterol-catalog-table__class span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .product-spec-table.bisterol-catalog-table {
    font-size: 9px;
    line-height: 1.25;
  }

  .product-spec-table.bisterol-catalog-table th,
  .product-spec-table.bisterol-catalog-table td {
    padding: 7px 4px;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .bisterol-catalog-table__class strong {
    font-size: 13px;
  }

  .bisterol-catalog-table__class span {
    font-size: 10px;
  }
}

@media (max-width: 560px) {
  .fibiol-table-wrap .fibiol-spec-table {
    font-size: 9px;
    line-height: 1.25;
  }

  .fibiol-table-wrap .fibiol-spec-table th,
  .fibiol-table-wrap .fibiol-spec-table td {
    padding: 7px 3px;
  }

  .product-spec-table.bisterol-catalog-table {
    font-size: 7px;
    line-height: 1.2;
  }

  .product-spec-table.bisterol-catalog-table th,
  .product-spec-table.bisterol-catalog-table td {
    padding: 5px 2px;
  }

  .bisterol-catalog-table__class strong {
    font-size: 11px;
  }

  .bisterol-catalog-table__class span {
    font-size: 8px;
  }
}

.inner-doc-grid,
.fibiol-doc-grid {
  display: grid;
  gap: 18px;
}

.inner-doc-grid--single {
  max-width: 760px;
}

.inner-doc-card,
.fibiol-doc-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 46px;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.inner-doc-card:hover,
.fibiol-doc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 80, 180, 0.26);
  box-shadow: 0 22px 48px rgba(58, 45, 110, 0.14);
}

.inner-doc-card__icon,
.fibiol-doc-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
}

.inner-doc-card h2,
.fibiol-doc-card h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.18;
}

.inner-doc-card p,
.fibiol-doc-card p {
  margin: 0;
  color: #3b4051;
  font-size: 15px;
  line-height: 1.42;
}

.inner-doc-card__arrow,
.fibiol-doc-card__arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.inner-gallery-grid,
.fibiol-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.inner-gallery-card,
.fibiol-gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.inner-gallery-card--video {
  cursor: pointer;
}

.inner-gallery-card--video::after {
  content: "▶";
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(77, 58, 154, 0.9);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(31, 24, 61, 0.32);
  transition: transform 0.25s ease, background 0.25s ease;
}

.inner-gallery-card--video:hover::after {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}

.inner-gallery-item,
.fibiol-gallery-item,
.inner-gallery-card__image,
.fibiol-gallery-card__image {
  width: 100%;
  aspect-ratio: 1.24;
  display: block;
  border-radius: 22px !important;
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at 46% 36%, rgba(101, 80, 180, 0.16), transparent 34%),
    linear-gradient(145deg, #fbfaff, #ede8fb);
  color: rgba(101, 80, 180, 0.64);
  box-shadow: none;
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.fibiol-gallery-card > img.fibiol-gallery-item,
.inner-gallery-card > img.inner-gallery-item {
  overflow: hidden;
  border-radius: 22px !important;
}

.inner-gallery-card:hover .inner-gallery-item,
.inner-gallery-card:hover .inner-gallery-card__image,
.fibiol-gallery-card:hover .fibiol-gallery-item,
.fibiol-gallery-card:hover .fibiol-gallery-card__image {
  transform: scale(1.045);
}

.inner-gallery-item:focus-visible,
.fibiol-gallery-item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -5px;
}

.inner-gallery-card figcaption,
.fibiol-gallery-card figcaption {
  margin-top: 12px;
  color: #303547;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(18, 15, 32, 0.86);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.gallery-lightbox__viewer {
  width: min(1180px, calc(100vw - 56px));
  height: min(820px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.gallery-lightbox__image,
.gallery-lightbox__video {
  grid-column: 2;
  grid-row: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  display: block;
  justify-self: center;
  align-self: center;
  border-radius: 24px !important;
  object-fit: contain;
  background: transparent;
  transform: none !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox__video {
  width: 100%;
  height: 100%;
}

.gallery-lightbox__video {
  outline: 0;
}

.gallery-lightbox__image[hidden],
.gallery-lightbox__video[hidden] {
  display: none !important;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: #ffffff;
  transform: scale(1.08);
}

.gallery-lightbox__close {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 32px;
  line-height: 1;
}

.gallery-lightbox__nav {
  width: 54px;
  height: 54px;
  font-size: 38px;
  line-height: 1;
}

.gallery-lightbox__nav--prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox__nav--next {
  grid-column: 3;
  grid-row: 1;
}

.gallery-lightbox__counter {
  grid-column: 1 / -1;
  grid-row: 2;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.gallery-lightbox--single .gallery-lightbox__viewer {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
}

.gallery-lightbox--single .gallery-lightbox__image {
  grid-column: 1;
  grid-row: 1;
}

/* Bisterol */
.bisterol-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    radial-gradient(circle at 52% 48%, rgba(101, 80, 180, 0.26), transparent 34%),
    linear-gradient(145deg, #151928 0%, #342965 58%, #6550b4 100%);
}

.bisterol-hero__visual::before {
  display: none;
}

.bisterol-hero__visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.03);
}

.bisterol-hero__badge {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  max-width: 260px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(20, 17, 35, 0.78);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.bisterol-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(20, 17, 35, 0.78);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.bisterol-hero__stats span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.bisterol-hero__stats span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.bisterol-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bisterol-classes,
.bisterol-workflow {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.bisterol-classes h2,
.bisterol-workflow h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.15;
}

.bisterol-class-list,
.bisterol-workflow__list {
  display: grid;
  gap: 10px;
}

.bisterol-class {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) repeat(3, minmax(120px, 1fr));
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.08);
  border-radius: 14px;
  background: #fbfaff;
  color: #2f3342;
  box-shadow: 0 10px 24px rgba(58, 45, 110, 0.06);
}

.bisterol-class strong {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.bisterol-class span {
  padding: 10px 12px;
  color: #3b4051;
  font-size: 15px;
  font-weight: 800;
}

.bisterol-class--premium strong {
  background: linear-gradient(135deg, #6550b4, #4d3a9a);
}

.bisterol-class--business strong {
  background: linear-gradient(135deg, #7863c8, #6550b4);
}

.bisterol-class--standard strong {
  background: linear-gradient(135deg, #8d7bd6, #7060bd);
}

.bisterol-class--econom strong {
  background: linear-gradient(135deg, #a292df, #7f70c7);
}

.bisterol-class--subeconom strong {
  background: linear-gradient(135deg, #c1b7ee, #9888d8);
}

.bisterol-workflow__step {
  min-height: 76px;
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(101, 80, 180, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(58, 45, 110, 0.06);
}

.bisterol-workflow__step > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.bisterol-workflow__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 11px;
}

.bisterol-workflow__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.bisterol-workflow__step h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.bisterol-workflow__step p {
  margin: 0;
  color: #3b4051;
  font-size: 14px;
  line-height: 1.35;
}

/* Reserve D4 */
.reserve-hero {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(101, 80, 180, 0.12), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-strong);
  scroll-margin-top: 118px;
}

.reserve-hero__text {
  width: 100%;
  padding: 44px 52px 30px;
}

.reserve-hero__text h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.reserve-hero__lead {
  max-width: 900px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1.16;
}

.reserve-hero__text p:not(.reserve-hero__lead) {
  max-width: 900px;
  margin: 0;
  color: #303547;
  font-size: 16px;
  line-height: 1.55;
}

.reserve-hero__visual {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background: transparent;
  box-shadow: none;
}

.reserve-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.reserve-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.reserve-chain__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reserve-chain__item > img,
.reserve-chain__media {
  width: 100%;
  aspect-ratio: 1.7;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(58, 45, 110, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.reserve-chain__item:hover > img,
.reserve-chain__item:hover .reserve-chain__media {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(58, 45, 110, 0.16);
}

.reserve-chain__item:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 58px;
  right: -12px;
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.reserve-chain__media {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(135deg, #f7f4ff 0%, #ddd4f4 100%);
  font-size: 13px;
}

.reserve-chain__icon {
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 10px;
  box-shadow: 0 12px 24px rgba(101, 80, 180, 0.24);
}

.reserve-chain__item h3 {
  margin: 12px 0 0;
  color: #2f3447;
  font-size: 16px;
  line-height: 1.18;
}

.reserve-params {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.reserve-param {
  min-height: 104px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.reserve-param__icon {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 10px;
}

.reserve-param strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
}

.reserve-param p {
  margin: 5px 0 0;
  color: #3b4051;
  font-size: 15px;
  line-height: 1.25;
}

.reserve-benefits {
  margin-top: 28px;
  scroll-margin-top: 118px;
}

.reserve-benefits h2,
.reserve-workflow h2,
.reserve-dosing h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.14;
}

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

.reserve-benefit {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.reserve-benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 80, 180, 0.28);
  box-shadow: 0 24px 54px rgba(58, 45, 110, 0.16);
}

.reserve-benefit__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 11px;
}

.reserve-benefit h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

.reserve-benefit p {
  margin: 0;
  color: #3b4051;
  font-size: 15px;
  line-height: 1.45;
}

.reserve-workflow,
.reserve-dosing {
  margin-top: 28px;
  padding: 32px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.reserve-workflow__list {
  display: grid;
  gap: 0;
}

.reserve-workflow__step {
  display: grid;
  grid-template-columns: 42px 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(101, 80, 180, 0.12);
}

.reserve-workflow__step:first-child {
  border-top: 0;
}

.reserve-workflow__step > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.reserve-workflow__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 10px;
}

.reserve-chain__icon,
.reserve-param__icon,
.reserve-benefit__icon,
.reserve-workflow__icon {
  display: grid;
  place-items: center;
}

.reserve-chain__icon svg {
  width: 27px;
  height: 27px;
}

.reserve-param__icon svg,
.reserve-workflow__icon svg {
  width: 34px;
  height: 34px;
}

.reserve-benefit__icon svg {
  width: 46px;
  height: 46px;
}

.reserve-workflow__step p {
  max-width: 760px;
  margin: 0;
  color: #303547;
  font-size: 16px;
  line-height: 1.42;
}

.reserve-dosing {
  text-align: center;
}

.reserve-dosing__formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  flex-wrap: wrap;
  margin-top: 8px;
}

.reserve-dosing__part {
  min-width: 130px;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.reserve-dosing__part strong {
  display: block;
  color: var(--accent);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

.reserve-dosing__part span {
  display: block;
  color: #303547;
  font-size: 15px;
  line-height: 1.18;
}

.reserve-dosing__formula b {
  color: var(--text);
  font-size: 28px;
}

.reserve-dosing p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* Reserve D4 predictable result */
.reserve-result-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.reserve-result-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.reserve-result-hero__text h1 {
  max-width: 640px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.reserve-result-hero__text > p:not(.reserve-result-hero__eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #293044;
  font-size: 19px;
  line-height: 1.55;
}

.reserve-result-effect {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  padding: 22px;
  border-left: 5px solid var(--accent);
  border-radius: 18px;
  background: var(--soft);
}

.reserve-result-effect__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--accent);
  font-size: 10px;
}

.reserve-result-effect p {
  margin: 0;
  color: #293044;
  font-size: 17px;
  line-height: 1.48;
}

.reserve-result-hero__visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(17, 27, 54, 0.2)),
    linear-gradient(135deg, #dfeaff 0%, #f0ecff 52%, #d9d1f4 100%);
  box-shadow: 0 24px 56px rgba(58, 45, 110, 0.14);
}

.reserve-result-hero__image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  color: rgba(101, 80, 180, 0.64);
}

.reserve-result-chart,
.reserve-result-checklist {
  position: absolute;
  padding: 18px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(42, 40, 78, 0.12);
  backdrop-filter: blur(10px);
}

.reserve-result-chart {
  left: 28px;
  bottom: 28px;
  width: 270px;
}

.reserve-result-chart strong,
.reserve-result-checklist strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 15px;
  text-transform: uppercase;
}

.reserve-result-chart__line {
  height: 76px;
  border: 1px solid rgba(101, 80, 180, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(101, 80, 180, 0.1) 1px, transparent 1px) 0 0 / 34px 100%,
    linear-gradient(180deg, transparent 47%, rgba(32, 145, 64, 0.8) 48%, rgba(32, 145, 64, 0.8) 52%, transparent 53%),
    radial-gradient(circle at 10% 42%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 25% 48%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 42% 58%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 44%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 50%, var(--accent) 0 4px, transparent 5px),
    radial-gradient(circle at 88% 39%, var(--accent) 0 4px, transparent 5px),
    #ffffff;
}

.reserve-result-chart span {
  display: block;
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.reserve-result-checklist {
  right: 28px;
  bottom: 42px;
  width: 220px;
  transform: rotate(4deg);
}

.reserve-result-checklist span {
  display: block;
  position: relative;
  margin-top: 8px;
  padding-left: 20px;
  color: #293044;
  font-size: 14px;
}

.reserve-result-checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.reserve-result-benefits {
  margin-top: 34px;
}

.reserve-result-benefits h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.15;
  text-align: center;
}

.reserve-result-benefits h2::before,
.reserve-result-benefits h2::after {
  content: "";
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(101, 80, 180, 0.35));
}

.reserve-result-benefits h2::after {
  background: linear-gradient(90deg, rgba(101, 80, 180, 0.35), transparent);
}

.reserve-result-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reserve-result-benefit {
  min-height: 160px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.reserve-result-benefit__icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 11px;
}

.reserve-result-benefit h3 {
  grid-column: 2;
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 24px;
  line-height: 1.15;
}

.reserve-result-benefit p {
  grid-column: 2;
  margin: 0;
  color: #303547;
  font-size: 16px;
  line-height: 1.42;
}

.reserve-result-accent,
.reserve-result-summary {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: 22px;
}

.reserve-result-accent {
  border: 2px solid rgba(101, 80, 180, 0.34);
  background: linear-gradient(135deg, var(--accent-dark), #17214a);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(42, 40, 78, 0.18);
}

.reserve-result-accent__icon,
.reserve-result-summary__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 11px;
}

.reserve-result-accent h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
}

.reserve-result-accent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.45;
}

.reserve-result-summary {
  border: 1px solid rgba(101, 80, 180, 0.16);
  background: linear-gradient(135deg, #ffffff, #f5f2ff);
}

.reserve-result-summary__icon {
  background: var(--soft-strong);
  color: var(--accent);
}

.reserve-result-summary p {
  margin: 0;
  color: var(--accent-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.reserve-result-page .reserve-result-hero {
  grid-template-columns: 1fr;
  padding: 42px 42px 0;
}

.reserve-result-page .reserve-result-bottom-visual {
  min-height: 0;
  overflow: hidden;
  margin: 6px -42px 0;
  border-radius: 0 0 30px 30px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #ddeaff 0%, #f0ecff 48%, #d9d1f4 100%);
  box-shadow: none;
}

.reserve-result-page .reserve-result-bottom-visual img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 0 30px 30px;
}

.reserve-result-effect__icon,
.reserve-result-benefit__icon,
.reserve-result-accent__icon,
.reserve-result-summary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reserve-result-effect__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.reserve-result-benefit__icon svg,
.reserve-result-accent__icon svg,
.reserve-result-summary__icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.reserve-result-benefit p {
  font-size: 17px;
  line-height: 1.48;
}

/* Reserve D4 advantage pages */
.reserve-advantage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.reserve-advantage-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.reserve-advantage-hero__text h1 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.reserve-advantage-hero__text > p:not(.reserve-advantage-hero__eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #293044;
  font-size: 19px;
  line-height: 1.5;
}

.reserve-advantage-note {
  max-width: 640px;
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 5px solid var(--accent);
  border-radius: 18px;
  background: var(--soft);
}

.reserve-advantage-note p {
  margin: 0;
  color: var(--accent-dark);
  font-size: 17px;
  line-height: 1.45;
}

.reserve-advantage-hero__visual {
  min-height: 520px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #ddeaff 0%, #f0ecff 48%, #d9d1f4 100%);
  color: rgba(101, 80, 180, 0.64);
  box-shadow: 0 24px 56px rgba(58, 45, 110, 0.14);
}

.reserve-advantage-section {
  margin-top: 28px;
}

.reserve-advantage-section h2,
.reserve-practice-list h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.15;
  text-align: center;
}

.reserve-advantage-grid {
  display: grid;
  gap: 18px;
}

.reserve-advantage-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reserve-advantage-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.reserve-advantage-card__icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 11px;
}

.reserve-advantage-card__icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.reserve-advantage-card h3 {
  margin: 0;
  color: var(--accent-dark);
  font-size: 19px;
  line-height: 1.18;
}

.reserve-advantage-card p {
  margin: 0;
  color: #303547;
  font-size: 17px;
  line-height: 1.48;
}

.reserve-practice-list {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.reserve-practice-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(101, 80, 180, 0.12);
}

.reserve-practice-item:first-of-type {
  border-top: 0;
}

.reserve-practice-item__icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent);
  font-size: 10px;
}

.reserve-practice-item__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.reserve-practice-item h3 {
  margin: 0 0 5px;
  color: var(--accent-dark);
  font-size: 20px;
  line-height: 1.18;
}

.reserve-practice-item p {
  margin: 0;
  color: #303547;
  font-size: 17px;
  line-height: 1.48;
}

.reserve-uplotnenie-page .reserve-advantage-hero {
  grid-template-columns: 1fr;
  padding: 42px 42px 0;
}

.reserve-uplotnenie-hero__visual {
  min-height: 0;
  overflow: hidden;
  margin: 6px -42px 0;
  border-radius: 0 0 30px 30px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #ddeaff 0%, #f0ecff 48%, #d9d1f4 100%);
  box-shadow: none;
}

.reserve-uplotnenie-hero__visual img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 0 30px 30px;
}

/* Reserve D4 moisture control */
.reserve-moisture-hero .reserve-advantage-hero__eyebrow {
  color: var(--accent-dark);
  font-size: 20px;
  text-transform: none;
}

.reserve-moisture-page .reserve-advantage-hero {
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 42px 42px 0;
}

.reserve-moisture-hero__visual {
  min-height: 0;
  overflow: hidden;
  margin: 6px -42px 0;
  border-radius: 0 0 30px 30px;
  background:
    radial-gradient(circle at 50% 68%, rgba(101, 80, 180, 0.18), transparent 30%),
    linear-gradient(135deg, #dfeaff 0%, #f0ecff 48%, #d9d1f4 100%);
  box-shadow: none;
}

.reserve-moisture-hero__visual img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 0 30px 30px;
}

.reserve-moisture-core {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.reserve-moisture-core__card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.reserve-moisture-core__icon {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 6px solid rgba(101, 80, 180, 0.85);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
}

.reserve-moisture-core__icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.reserve-moisture-core__card h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.18;
}

.reserve-moisture-core__card p {
  margin: 0;
  color: #303547;
  font-size: 17px;
  line-height: 1.48;
}

.reserve-moisture-benefits {
  padding: 28px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f6f3ff);
  box-shadow: var(--shadow);
}

.reserve-moisture-benefits .reserve-advantage-card {
  min-height: 180px;
  box-shadow: none;
}

.reserve-moisture-accent {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 30px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 50%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, var(--accent-dark), #17214a);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(42, 40, 78, 0.18);
}

.reserve-moisture-accent__icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  color: #ffffff;
  font-size: 10px;
}

.reserve-moisture-accent__icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.reserve-moisture-accent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 1100px) {
  .competence-page__wrap {
    grid-template-columns: 1fr;
  }

  .competence-page__aside {
    position: static;
  }
}

@media (max-width: 860px) {
  .competence-page {
    padding: 24px 16px 42px;
    background: #ffffff;
  }

  .competence-page__wrap {
    width: 100%;
    gap: 22px;
  }

  .competence-page__aside {
    padding: 22px;
  }

  .competence-page__content,
  .contacts-page__content,
  .about-page__content,
  .portfolio-page__content {
    grid-template-columns: 1fr;
    padding: 32px 24px 40px;
  }

  .competence-page__media {
    order: -1;
    justify-self: center;
    padding-top: 0;
  }

  .competence-page__media img {
    width: 190px;
    height: 190px;
  }

  .contacts-page__lead {
    font-size: 17px;
  }

  .portfolio-page__grid,
  .competence-showcase__benefits,
  .competence-showcase__benefits--four,
  .bisterol-benefits {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-card--featured {
    grid-column: auto;
    min-height: 0;
    padding: 18px 50px 18px 18px;
  }

  .portfolio-card strong {
    font-size: 16px;
  }

  .competence-showcase__hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .competence-showcase__text {
    padding: 32px 24px 28px;
  }

  .competence-showcase__text h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .competence-showcase__text p:not(.competence-showcase__lead) {
    font-size: 17px;
  }

  .competence-showcase__visual,
  .competence-showcase__visual--product {
    min-height: 280px;
  }

  .competence-showcase__benefit {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
  }

  .competence-showcase__icon {
    width: 68px;
    height: 68px;
    border-width: 5px;
  }

  .competence-showcase__benefit h3 {
    font-size: 19px;
  }

  .fibiol-label {
    display: none;
  }

  .fibiol-noise-popover {
    left: 50%;
    transform: translate(-50%, 10px);
  }

  .competence-showcase__benefit--hover:hover .fibiol-noise-popover,
  .competence-showcase__benefit--hover:focus-within .fibiol-noise-popover {
    transform: translate(-50%, 0);
  }

  .fibiol-noise-popover__grid,
  .competence-showcase__formula {
    grid-template-columns: 1fr;
  }

  .inner-page-card,
  .fibiol-info-card {
    padding: 28px 22px;
  }

  .fibiol-table-wrap {
    justify-content: flex-start;
  }

  .fibiol-spec-table {
    width: 100%;
    min-width: 0;
    font-size: 11px;
  }

  .fibiol-spec-table th,
  .fibiol-spec-table td {
    padding: 9px 6px;
    overflow-wrap: anywhere;
  }

  .inner-doc-card,
  .fibiol-doc-card {
    grid-template-columns: 68px minmax(0, 1fr);
    padding: 18px;
  }

  .inner-doc-card__arrow,
  .fibiol-doc-card__arrow {
    display: none;
  }

  .inner-gallery-grid,
  .fibiol-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .competence-showcase__workflow {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .competence-showcase__workflow-step {
    min-height: 0;
    padding: 32px 0 8px;
  }

  .competence-showcase__workflow-step:not(:last-child)::after {
    left: 50%;
    top: auto;
    right: auto;
    bottom: -22px;
    transform: translateX(-50%) rotate(90deg);
  }

  .competence-showcase__workflow-media {
    width: 70px;
    height: 70px;
  }

  .competence-showcase__formula-line {
    padding: 18px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(101, 80, 180, 0.16);
    border-bottom: 1px solid rgba(101, 80, 180, 0.16);
  }

  .ks1-hero__visual {
    min-height: 300px;
    padding: 0;
  }

  .ks1-hero .competence-showcase__text {
    padding: 32px 24px 28px;
  }

  .ks1-hero .competence-showcase__text h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .ks1-hero .competence-showcase__lead {
    font-size: clamp(20px, 5vw, 26px);
  }

  .ks1-params {
    grid-template-columns: 1fr;
  }

  .ks1-param + .ks1-param {
    border-left: 0;
    border-top: 1px solid rgba(101, 80, 180, 0.12);
  }

  .ks1-param {
    min-height: 0;
    padding: 22px;
  }

  .ks1-benefits .competence-showcase__benefit {
    min-height: 0;
    padding: 22px;
  }

  .binder-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }

  .binder-hero__text h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .binder-hero__visual {
    min-height: 240px;
    border-radius: 22px;
  }

  .binder-hero__image {
    height: 260px;
    min-height: 230px;
    border-radius: 22px;
  }

  .binder-hero__visual img,
  img.binder-hero__image {
    border-radius: 22px;
  }

  .binder-benefits,
  .binder-workflow__steps {
    grid-template-columns: 1fr;
  }

  .binder-benefit {
    min-height: 0;
    padding: 22px;
  }

  .binder-workflow {
    padding: 26px 22px;
  }

  .binder-workflow__step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -30px;
    transform: rotate(90deg);
  }

  .rut-hero,
  .shma-hero {
    padding: 28px 22px;
  }

  .shma-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  img.shma-hero__image {
    width: min(100%, 520px);
    justify-self: center;
  }

  .rut-hero__text h1,
  .shma-hero__text h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .rut-hero__image,
  .shma-hero__image {
    min-height: 220px;
  }

  .rut-benefits,
  .shma-benefits {
    grid-template-columns: 1fr;
  }

  .shma-benefit {
    min-height: 0;
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 22px;
  }

  .rut-benefit {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 22px;
  }

  .rut-workflow,
  .shma-workflow {
    padding: 26px 22px;
  }

  .rut-step,
  .shma-step {
    grid-template-columns: 32px 72px minmax(0, 1fr);
    gap: 14px;
  }

  .shma-step {
    grid-template-columns: 72px 32px minmax(0, 1fr);
  }

  .shma-step:not(:last-child)::after {
    left: 88px;
  }

  .rut-step__media,
  .shma-step__media {
    width: 72px;
    height: 72px;
  }

  .competence-showcase__note-card {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 20px;
  }

  .bisterol-hero__visual {
    padding: 0 0 116px;
  }

  .bisterol-hero__badge {
    left: 20px;
    top: 20px;
  }

  .bisterol-hero__stats {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .bisterol-classes,
  .bisterol-workflow {
    padding: 22px;
  }

  .bisterol-class {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bisterol-class strong,
  .bisterol-class span {
    padding: 12px 16px;
  }

  .bisterol-workflow__step {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .bisterol-workflow__icon {
    display: none;
  }

  .reserve-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }

  .reserve-hero__text {
    padding: 32px 24px 24px;
  }

  .reserve-hero__text h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .reserve-hero__visual {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    aspect-ratio: auto;
    border-radius: 0 0 30px 30px;
  }

  .reserve-chain,
  .reserve-params,
  .reserve-benefits__grid {
    grid-template-columns: 1fr;
  }

  .reserve-chain__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -28px;
    transform: rotate(90deg);
  }

  .reserve-param {
    min-height: 0;
  }

  .reserve-workflow,
  .reserve-dosing {
    padding: 26px 22px;
  }

  .reserve-workflow__step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .reserve-workflow__icon {
    display: none;
  }

  .reserve-dosing__formula {
    flex-direction: column;
    gap: 12px;
  }

  .reserve-result-hero {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .reserve-result-page .reserve-result-hero {
    padding: 30px 22px 0;
  }

  .reserve-result-hero__text h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .reserve-result-page .reserve-result-bottom-visual {
    min-height: 0;
    margin: 4px -22px 0;
    border-radius: 0 0 24px 24px;
  }

  .reserve-result-page .reserve-result-bottom-visual img {
    height: 260px;
    border-radius: 0 0 24px 24px;
  }

  .reserve-result-hero__visual,
  .reserve-result-hero__image {
    min-height: 360px;
  }

  .reserve-result-chart,
  .reserve-result-checklist {
    position: static;
    width: auto;
    margin: 16px;
    transform: none;
  }

  .reserve-result-benefits h2::before,
  .reserve-result-benefits h2::after {
    display: none;
  }

  .reserve-result-benefits__grid {
    grid-template-columns: 1fr;
  }

  .reserve-result-benefit,
  .reserve-result-accent,
  .reserve-result-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .reserve-advantage-hero {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .reserve-advantage-hero__text h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .reserve-advantage-hero__visual {
    min-height: 340px;
  }

  .reserve-moisture-page .reserve-advantage-hero {
    padding: 30px 22px 0;
  }

  .reserve-moisture-hero__visual {
    min-height: 0;
    margin: 4px -22px 0;
    border-radius: 0 0 24px 24px;
  }

  .reserve-moisture-hero__visual img {
    height: 260px;
    border-radius: 0 0 24px 24px;
  }

  .reserve-uplotnenie-page .reserve-advantage-hero {
    padding: 30px 22px 0;
  }

  .reserve-uplotnenie-hero__visual {
    min-height: 0;
    margin: 4px -22px 0;
    border-radius: 0 0 24px 24px;
  }

  .reserve-uplotnenie-hero__visual img {
    height: 260px;
    border-radius: 0 0 24px 24px;
  }

  .reserve-advantage-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve-advantage-card {
    min-height: 0;
  }

  .reserve-moisture-core {
    grid-template-columns: 1fr;
  }

  .reserve-moisture-accent {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .reserve-advantage-grid--four {
    grid-template-columns: 1fr;
  }

  .reserve-practice-item {
    grid-template-columns: 1fr;
  }

  .inner-gallery-grid,
  .fibiol-gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-sheet-nav > a {
    min-height: 62px;
    padding: 13px 16px;
    font-size: 15px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox__viewer {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
  }

  .gallery-lightbox__image,
  .gallery-lightbox__video {
    border-radius: 16px !important;
  }

  .gallery-lightbox__close {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .gallery-lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .product-spec-table {
    font-size: 12px;
  }

  .product-spec-table th,
  .product-spec-table td {
    padding: 10px 6px;
    overflow-wrap: anywhere;
  }

  .product-spec-table th:first-child,
  .product-spec-table td:first-child {
    width: 22%;
  }
}

/* One-page PDF presentation */
.pdf-presentation {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(58, 45, 110, 0.12);
}

.pdf-presentation__bar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(101, 80, 180, 0.12);
  background: linear-gradient(135deg, #fbfaff, #f2edff);
}

.pdf-presentation__bar > div:first-child {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.pdf-presentation__bar strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.pdf-presentation__bar span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.pdf-presentation__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.pdf-presentation__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 11px;
  background: var(--accent);
  color: #ffffff !important;
  font: 800 13px/1 "Inter", "Segoe UI", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pdf-presentation__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(101, 80, 180, 0.24);
}

.pdf-presentation__button--secondary {
  border: 1px solid rgba(101, 80, 180, 0.2);
  background: #ffffff;
  color: var(--accent-dark) !important;
}

.pdf-presentation__viewer {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #eeeaf8;
}

.pdf-presentation__stage {
  width: 100%;
  height: clamp(480px, 68vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}

.pdf-presentation__canvas {
  max-width: 100%;
  max-height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  opacity: 1;
  transform: translateX(0);
  box-shadow: 0 12px 28px rgba(58, 45, 110, 0.12);
  transition: opacity 0.22s ease, transform 0.28s ease;
}

.pdf-presentation__stage[data-direction="next"].is-changing .pdf-presentation__canvas {
  opacity: 0.18;
  transform: translateX(-28px);
}

.pdf-presentation__stage[data-direction="prev"].is-changing .pdf-presentation__canvas {
  opacity: 0.18;
  transform: translateX(28px);
}

.pdf-presentation__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.pdf-presentation__loading[hidden] {
  display: none;
}

.pdf-presentation__loading.is-error {
  color: #5b2333;
}

.pdf-presentation__nav {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font: 400 38px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(101, 80, 180, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.pdf-presentation__nav:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: scale(1.08);
}

.pdf-presentation__nav:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.pdf-presentation__pager {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 82px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 20px rgba(58, 45, 110, 0.1);
}

.pdf-presentation__viewer iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #ffffff;
}

.pdf-presentation__fallback {
  margin: 0;
  padding: 12px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.pdf-presentation__fallback a {
  color: var(--accent-dark);
  font-weight: 800;
}

.pdf-presentation:fullscreen {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 0;
  border-radius: 0;
}

.pdf-presentation:fullscreen .pdf-presentation__viewer {
  height: auto;
  min-height: 0;
}

.pdf-presentation:fullscreen .pdf-presentation__stage {
  height: calc(100vh - 190px);
}

@media (max-width: 760px) {
  .pdf-presentation__bar {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .pdf-presentation__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pdf-presentation__viewer {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 12px 8px;
  }

  .pdf-presentation__stage {
    height: clamp(360px, 62vh, 620px);
  }

  .pdf-presentation__nav {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}

@media (max-width: 460px) {
  .pdf-presentation__actions {
    grid-template-columns: 1fr;
  }
}

/* Full gallery view: show media completely without zoom or cropping. */
.gallery-lightbox.is-open .gallery-lightbox__viewer {
  align-items: center !important;
  justify-items: center !important;
}

.gallery-lightbox.is-open .gallery-lightbox__image,
.gallery-lightbox.is-open .gallery-lightbox__video {
  width: auto !important;
  height: auto !important;
  max-width: min(100%, calc(100vw - 180px)) !important;
  max-height: calc(100vh - 100px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.gallery-lightbox.is-open .gallery-lightbox__video {
  width: min(100%, calc(100vw - 180px)) !important;
}

@media (max-width: 620px) {
  .gallery-lightbox.is-open .gallery-lightbox__image,
  .gallery-lightbox.is-open .gallery-lightbox__video {
    max-width: calc(100vw - 112px) !important;
    max-height: calc(100vh - 72px) !important;
  }

  .gallery-lightbox.is-open .gallery-lightbox__video {
    width: calc(100vw - 112px) !important;
  }
}

/* IRIS-SM calculator page. */
.iris-page {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.iris-hero,
.iris-actions,
.iris-outcomes,
.iris-workflow {
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.iris-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
}

.iris-hero__text {
  padding: 34px 36px 36px;
}

.iris-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.iris-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 3.15vw, 52px);
  line-height: 1.02;
}

.iris-hero .competence-showcase__lead {
  margin: 20px 0 14px;
  color: var(--accent);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 800;
  line-height: 1.25;
}

.iris-hero__text > p:not(.competence-showcase__lead) {
  margin: 0;
  color: #32384a;
  font-size: 16px;
  line-height: 1.5;
}

.iris-hero__fact {
  display: block;
  margin-top: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
}

.iris-hero__visual {
  min-height: 560px;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #f3efff;
}

.iris-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 28px 28px 0;
}

@media (max-width: 1380px) and (min-width: 1101px) {
  .competence-page__wrap {
    width: min(1320px, calc(100% - 32px));
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 24px;
  }

  .competence-page__aside {
    padding: 24px 18px;
  }

  .iris-hero {
    grid-template-columns: minmax(390px, 0.9fr) minmax(400px, 1.1fr);
  }

  .iris-hero h1 {
    font-size: clamp(38px, 3.3vw, 48px);
  }
}

.iris-actions,
.iris-outcomes,
.iris-workflow {
  padding: 34px;
}

.iris-actions h2,
.iris-outcomes h2,
.iris-workflow h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.15;
}

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

.iris-action-card {
  min-width: 0;
  min-height: 250px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(101, 80, 180, 0.14);
  border-radius: 22px;
  background: #fbfaff;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(58, 45, 110, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.iris-action-card:hover,
.iris-action-card:focus-visible {
  border-color: rgba(101, 80, 180, 0.42);
  background: #f4efff;
  box-shadow: 0 20px 40px rgba(101, 80, 180, 0.2);
  transform: translateY(-6px);
  outline: none;
}

.iris-action-card__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
}

.iris-action-card__icon svg {
  width: 38px;
  height: 38px;
}

.iris-action-card__body {
  display: grid;
  gap: 12px;
}

.iris-action-card__body strong {
  font-size: 22px;
  line-height: 1.15;
}

.iris-action-card__body > span {
  color: #3f4557;
  font-size: 17px;
  line-height: 1.48;
}

.iris-action-card__arrow {
  justify-self: end;
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
  transition: transform 0.22s ease;
}

.iris-action-card:hover .iris-action-card__arrow,
.iris-action-card:focus-visible .iris-action-card__arrow {
  transform: translate(4px, -4px);
}

.iris-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.iris-outcomes__grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: #f8f6ff;
}

.iris-outcome__icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border: 4px solid var(--accent);
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
}

.iris-outcome__icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.iris-outcomes__grid strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.iris-outcomes__grid p,
.iris-workflow__list p {
  margin: 10px 0 0;
  color: #44495a;
  font-size: 17px;
  line-height: 1.45;
}

.iris-workflow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.iris-workflow__list article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 18px;
  background: #fbfaff;
}

.iris-workflow__list article > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.iris-workflow__list strong {
  color: var(--text);
  font-size: 19px;
}

.iris-workflow__result {
  background: var(--accent) !important;
}

.iris-workflow__result > span {
  background: #ffffff !important;
  color: var(--accent) !important;
}

.iris-workflow__result strong,
.iris-workflow__result p {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .iris-hero {
    grid-template-columns: 1fr;
  }

  .iris-hero__visual {
    min-height: 340px;
  }

  .iris-hero__visual img {
    min-height: 340px;
    border-radius: 0 0 28px 28px;
  }

  .iris-actions__grid,
  .iris-outcomes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iris-workflow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .iris-hero__text,
  .iris-actions,
  .iris-outcomes,
  .iris-workflow {
    padding: 26px 20px;
  }

  .iris-hero h1 {
    font-size: 38px;
  }

  .iris-hero__visual {
    min-height: 260px;
    padding: 0;
  }

  .iris-hero__visual img {
    height: 260px;
    min-height: 260px;
    object-position: center center;
  }

  .iris-actions__grid,
  .iris-outcomes__grid,
  .iris-workflow__list {
    grid-template-columns: 1fr;
  }

  .iris-action-card {
    min-height: 0;
  }
}

/* Network and system administration */
.ssa-page {
  --ssa-blue: var(--accent);
  --ssa-dark: var(--accent-dark);
  display: grid;
  gap: 24px;
  min-width: 0;
}

.ssa-page__aside h1 {
  font-size: 24px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.ssa-hero,
.ssa-benefits,
.ssa-services {
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ssa-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: stretch;
}

.ssa-hero__text {
  min-width: 0;
  align-self: center;
  padding: 40px 38px;
}

.ssa-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--ssa-blue);
  font-size: 16px;
  font-weight: 800;
}

.ssa-hero h1 {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(36px, 2.7vw, 48px);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.ssa-hero__text p {
  max-width: 610px;
  margin: 0;
  color: #30384c;
  font-size: 18px;
  line-height: 1.58;
}

.ssa-hero__points {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ssa-hero__points li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 4px 12px;
  color: #30384c;
}

.ssa-hero__points li::before {
  content: "";
  grid-row: 1 / 3;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(101, 80, 180, 0.2);
}

.ssa-hero__points strong,
.ssa-hero__points span {
  grid-column: 2;
}

.ssa-hero__points strong {
  color: var(--accent-dark);
  font-size: 16px;
  line-height: 1.25;
}

.ssa-hero__points span {
  font-size: 14px;
  line-height: 1.4;
}

.ssa-hero__visual {
  width: 100%;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  background: #f3efff;
}

.ssa-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0 28px 28px 0;
  filter: saturate(1.04) contrast(1.02);
}

.ssa-benefits,
.ssa-services {
  padding: 34px;
}

.ssa-benefits h2,
.ssa-services h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(29px, 2.5vw, 40px);
  line-height: 1.15;
  text-align: center;
}

.ssa-benefits__grid,
.ssa-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ssa-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px 20px;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(101, 80, 180, 0.1), transparent 34%),
    #fbfaff;
}

.ssa-icon {
  grid-row: 1 / 3;
}

.ssa-icon,
.ssa-service__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ssa-dark);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(101, 80, 180, 0.2);
}

.ssa-icon svg,
.ssa-service__icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.ssa-card h3 {
  margin: 0;
  color: var(--ssa-dark);
  font-size: 21px;
  line-height: 1.18;
}

.ssa-card p,
.ssa-services__grid p {
  margin: 0;
  color: #3b4356;
  font-size: 17px;
  line-height: 1.46;
}

.ssa-services__grid a {
  min-height: 180px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 20px;
  background: #fbfaff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ssa-services__grid a:hover,
.ssa-services__grid a:focus-visible {
  border-color: rgba(101, 80, 180, 0.4);
  background: #f7f4ff;
  box-shadow: 0 20px 42px rgba(101, 80, 180, 0.16);
  transform: translateY(-4px);
  outline: none;
}

.ssa-service__icon {
  border-radius: 18px;
  background: #ffffff;
  color: var(--ssa-blue);
  box-shadow: inset 0 0 0 2px rgba(101, 80, 180, 0.18);
}

.ssa-services__grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ssa-dark);
  font-size: 20px;
  line-height: 1.18;
}

@media (max-width: 1100px) {
  .ssa-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ssa-hero__visual,
  .ssa-hero__visual img {
    min-height: 340px;
    height: 340px;
    border-radius: 0 0 28px 28px;
  }
}

@media (max-width: 760px) {
  .ssa-benefits__grid,
  .ssa-services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ssa-hero__text,
  .ssa-benefits,
  .ssa-services {
    padding: 26px 20px;
  }

  .ssa-hero h1 {
    font-size: 38px;
  }

  .ssa-hero__visual,
  .ssa-hero__visual img {
    min-height: 0;
    height: auto;
    border-radius: 0 0 22px 22px;
  }

  .ssa-card,
  .ssa-services__grid a {
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .ssa-icon,
  .ssa-service__icon {
    width: 56px;
    height: 56px;
  }

  .ssa-icon svg,
  .ssa-service__icon svg {
    width: 32px;
    height: 32px;
  }

  .ssa-card h3,
  .ssa-services__grid strong {
    font-size: 18px;
  }

  .ssa-card p,
  .ssa-services__grid p {
    font-size: 16px;
  }
}

/* IT security and system administration */
.security-page {
  --security-cyan: #24c7d9;
  --security-blue: #315ee8;
  --security-ink: #11182d;
  display: grid;
  gap: 24px;
  min-width: 0;
}

.security-hero,
.security-services,
.security-admin,
.security-reasons {
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.security-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  border-color: rgba(72, 112, 221, 0.24);
  background: var(--security-ink);
  box-shadow: 0 26px 64px rgba(23, 30, 67, 0.2);
}

.security-hero__text {
  min-width: 0;
  align-self: center;
  position: relative;
  z-index: 1;
  padding: 48px 44px;
  background-image:
    linear-gradient(rgba(93, 114, 190, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 114, 190, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.security-hero__eyebrow,
.security-admin__head > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.security-hero__eyebrow {
  color: var(--security-cyan);
}

.security-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.security-hero__lead {
  margin: 24px 0 16px;
  color: var(--security-cyan);
  font-size: clamp(21px, 1.9vw, 29px);
  font-weight: 800;
  line-height: 1.25;
}

.security-hero__text > p:not(.security-hero__lead),
.security-admin__head p {
  max-width: 680px;
  margin: 0;
  color: #32384a;
  font-size: 18px;
  line-height: 1.56;
}

.security-hero__text > p:not(.security-hero__lead) {
  color: rgba(255, 255, 255, 0.78);
}

.security-hero__visual {
  min-height: 480px;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: #11182d;
}

.security-hero__visual::after {
  display: none;
}

.security-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.03);
}

.security-services,
.security-admin,
.security-reasons {
  padding: 34px;
}

.security-services h2,
.security-admin h2,
.security-reasons h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(29px, 2.5vw, 40px);
  line-height: 1.15;
}

.security-services__list {
  display: grid;
  gap: 14px;
}

.security-service {
  min-height: 128px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 42px;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(49, 94, 232, 0.055), transparent 42%),
    #ffffff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.security-service:hover,
.security-service:focus-visible,
.security-admin__grid a:hover,
.security-admin__grid a:focus-visible {
  border-color: rgba(36, 199, 217, 0.5);
  box-shadow: 0 20px 42px rgba(58, 45, 110, 0.14);
  transform: translateY(-4px);
  outline: none;
}

.security-service__icon,
.security-admin__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(49, 94, 232, 0.7);
  border-radius: 50%;
  background: #ffffff;
  color: var(--security-blue);
  box-shadow: inset 0 0 20px rgba(36, 199, 217, 0.08), 0 0 0 7px rgba(49, 94, 232, 0.04);
}

.security-service__icon svg,
.security-admin__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.security-service strong,
.security-admin__grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.18;
}

.security-service small {
  display: block;
  max-width: 760px;
  color: #3b4051;
  font-size: 17px;
  line-height: 1.45;
}

.security-service > b {
  color: var(--security-cyan);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.22s ease;
}

.security-service:hover > b {
  transform: translateX(5px);
}

.security-admin__head {
  max-width: 900px;
  margin-bottom: 28px;
}

.security-admin__head h2 {
  margin-bottom: 16px;
}

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

.security-admin__grid a {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(36, 199, 217, 0.09), transparent 34%),
    #f8f9ff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.security-admin__grid p {
  margin: 0;
  color: #3b4051;
  font-size: 17px;
  line-height: 1.48;
}

.security-reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.security-reasons__grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(49, 94, 232, 0.1);
  border-radius: 18px;
  background: linear-gradient(145deg, #f8f6ff, #ffffff);
  text-align: center;
}

.security-reason__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #315ee8, #6550b4);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(49, 94, 232, 0.2);
}

.security-reason__icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.security-reasons__grid strong {
  color: var(--security-ink);
  font-size: 18px;
  line-height: 1.2;
}

.security-reasons__grid p {
  margin: 10px 0 0;
  color: #44495a;
  font-size: 15px;
  line-height: 1.42;
}

@media (max-width: 1100px) {
  .security-hero {
    grid-template-columns: 1fr;
  }

  .security-hero__visual {
    min-height: 320px;
  }

  .security-hero__visual img {
    height: 360px;
    min-height: 360px;
  }

  .security-reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .security-hero__text,
  .security-services,
  .security-admin,
  .security-reasons {
    padding: 26px 20px;
  }

  .security-hero h1 {
    font-size: 38px;
  }

  .security-hero__visual {
    min-height: 250px;
    padding: 0;
  }

  .security-hero__visual img {
    height: 280px;
    min-height: 280px;
  }

  .security-service {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .security-service__icon,
  .security-admin__icon {
    width: 60px;
    height: 60px;
  }

  .security-service__icon svg,
  .security-admin__icon svg {
    width: 32px;
    height: 32px;
  }

  .security-service > b {
    display: none;
  }

  .security-service strong,
  .security-admin__grid strong {
    font-size: 19px;
  }

  .security-service small,
  .security-admin__grid p {
    font-size: 16px;
  }

  .security-admin__grid,
  .security-reasons__grid {
    grid-template-columns: 1fr;
  }

  .security-admin__grid a {
    min-height: 0;
  }
}

/* Automation page */
.automation-page {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.automation-hero,
.automation-outcomes,
.automation-workflow {
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.automation-hero {
  display: flex;
  flex-direction: column;
}

.automation-hero__text {
  padding: 44px 42px;
}

.automation-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.automation-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 3.8vw, 62px);
  line-height: 1.03;
}

.automation-hero__lead {
  margin: 24px 0 16px;
  color: var(--accent);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.25;
}

.automation-hero__text > p:not(.automation-hero__lead) {
  margin: 0;
  color: #32384a;
  font-size: 18px;
  line-height: 1.56;
}

.automation-hero__visual {
  min-height: 0;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: #f3efff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.automation-hero__visual img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 28px 28px;
  filter: none;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.automation-hero__visual:hover img,
.automation-hero__visual:focus-visible img {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.automation-hero__visual:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -5px;
}

.automation-hero__visual-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(77, 58, 154, 0.94);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(42, 40, 78, 0.24);
}

.automation-outcomes,
.automation-workflow {
  padding: 34px;
}

.automation-outcomes h2,
.automation-workflow h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.15;
}

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

.automation-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: #f8f6ff;
}

.automation-card__icon,
.automation-workflow__icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
}

.automation-card__icon svg,
.automation-workflow__icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.automation-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.18;
}

.automation-card p {
  margin: 0;
  color: #3b4051;
  font-size: 17px;
  line-height: 1.48;
}

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

.automation-workflow__list article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  position: relative;
  padding: 22px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: #fbfaff;
}

.automation-workflow__list article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -15px;
  z-index: 2;
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
}

.automation-workflow__list strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.automation-workflow__list p {
  margin: 8px 0 0;
  color: #44495a;
  font-size: 16px;
  line-height: 1.42;
}

.automation-workflow__result {
  background: linear-gradient(135deg, #7357d6, #4d3a9a) !important;
}

.automation-workflow__result .automation-workflow__icon {
  background: #ffffff;
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
}

.automation-workflow__result strong,
.automation-workflow__result p {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .automation-hero__visual {
    min-height: 0;
  }

  .automation-outcomes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .automation-workflow__list {
    grid-template-columns: 1fr;
  }

  .automation-workflow__list article:not(:last-child)::after {
    right: auto;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 620px) {
  .automation-hero__text,
  .automation-outcomes,
  .automation-workflow {
    padding: 26px 20px;
  }

  .automation-hero h1 {
    font-size: 38px;
  }

  .automation-hero__visual {
    min-height: 0;
    padding: 0;
    border-radius: 0 0 22px 22px;
  }

  .automation-hero__visual img {
    border-radius: 0 0 22px 22px;
  }

  .automation-hero__visual-link {
    width: auto;
    position: absolute;
    right: 14px;
    bottom: 14px;
    margin: 0;
  }

  .automation-outcomes__grid {
    grid-template-columns: 1fr;
  }

  .automation-card {
    min-height: 0;
  }

  .automation-workflow__list article {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .automation-workflow__icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}

/* Professional education */
.education-page {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.education-page__aside h1 {
  font-size: 25px;
  overflow-wrap: anywhere;
}

.education-hero,
.education-journey,
.education-programs,
.education-process {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.education-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
}

.education-hero__text {
  align-self: center;
  min-width: 0;
  padding: 40px 42px;
}

.education-hero__eyebrow {
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
}

.education-hero h1 {
  max-width: 580px;
  margin: 14px 0 22px;
  color: var(--text);
  font-size: clamp(36px, 2.7vw, 48px);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.education-hero__lead {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.education-hero__text > p:not(.education-hero__lead) {
  margin: 0;
  color: #3b4051;
  font-size: 17px;
  line-height: 1.55;
}

.education-hero__visual {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 38%, rgba(101, 80, 180, 0.18), transparent 34%),
    linear-gradient(145deg, #f8f6ff, #eee9fb);
}

.education-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.education-hero__visual:hover img,
.education-hero__visual:focus-visible img {
  transform: scale(1.018);
  filter: saturate(1.04);
}

.education-hero__visual:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -5px;
}

.education-hero__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(77, 58, 154, 0.94);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(42, 40, 78, 0.28);
}

.education-hero__link b {
  font-size: 20px;
}

.education-journey,
.education-programs,
.education-process {
  padding: 34px;
}

.education-journey h2,
.education-programs h2,
.education-process h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.15;
}

.education-journey__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.education-journey__grid article {
  min-width: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaff;
  text-align: center;
}

.education-journey__grid article > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.education-journey__grid i,
.education-programs__grid i,
.education-formats i {
  display: grid;
  place-items: center;
  color: var(--accent);
}

.education-journey__grid i {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(101, 80, 180, 0.14);
}

.education-journey__grid svg,
.education-programs__grid svg,
.education-formats svg {
  width: 38px;
  height: 38px;
}

.education-journey__grid strong,
.education-programs__grid strong,
.education-process strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}

.education-journey__grid p,
.education-programs__grid p,
.education-process p {
  margin: 0;
  color: #44495a;
  font-size: 15px;
  line-height: 1.42;
}

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

.education-programs__grid article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaff;
}

.education-programs__grid i,
.education-formats i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--soft-strong);
}

.education-programs__grid strong {
  display: block;
  margin-bottom: 8px;
}

.education-process ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.education-process ol li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.education-process ol li:first-child {
  border-top: 0;
}

.education-process ol li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.education-process ol strong {
  display: block;
  margin-bottom: 4px;
}

.education-formats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(101, 80, 180, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f7f4ff);
}

.education-formats article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.education-formats strong {
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 1100px) {
  .education-hero {
    grid-template-columns: 1fr;
  }

  .education-journey__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .education-hero__text,
  .education-hero__visual,
  .education-journey,
  .education-programs,
  .education-process {
    padding: 26px 20px;
  }

  .education-hero h1 {
    font-size: 38px;
  }

  .education-journey__grid,
  .education-programs__grid,
  .education-formats {
    grid-template-columns: 1fr;
  }

  .education-journey__grid article {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .education-programs__grid article,
  .education-formats article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .education-programs__grid i,
  .education-formats i {
    width: 54px;
    height: 54px;
  }
}

/* DK7 page */
.dk7-page {
  display: grid;
  gap: 24px;
}

.dk7-hero {
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  scroll-margin-top: 118px;
}

.dk7-hero__text {
  padding: 48px 48px 32px;
}

.dk7-hero__eyebrow {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(101, 80, 180, 0.14);
  border-radius: 999px;
  background: #fbfaff;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.dk7-hero__text h1 {
  max-width: 920px;
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 4.4vw, 76px);
  line-height: 1.04;
}

.dk7-hero__text .competence-showcase__lead {
  max-width: 920px;
  margin: 26px 0 18px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.22;
}

.dk7-hero__text p:not(.competence-showcase__lead) {
  max-width: 880px;
  margin: 0;
  color: #2e3548;
  font-size: 20px;
  line-height: 1.6;
}

.dk7-hero__visual {
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #fbfaff 0%, #eee9fb 100%);
}

.dk7-hero__visual img {
  width: 100%;
  height: clamp(320px, 38vw, 560px);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 28px 28px;
}

.dk7-params {
  margin-top: 0;
}

.dk7-section,
.dk7-workflow,
.dk7-dosing {
  padding: 34px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.dk7-section h2,
.dk7-workflow h2,
.dk7-dosing h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.15;
}

.competence-showcase__benefits--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dk7-benefits {
  gap: 18px;
}

.dk7-benefits .competence-showcase__benefit {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  cursor: default;
}

.dk7-benefits .competence-showcase__benefit::after {
  display: none;
}

.dk7-benefits .competence-showcase__icon {
  width: 74px;
  height: 74px;
}

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

.dk7-workflow__step {
  padding: 24px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 20px;
  background: #fbfaff;
}

.dk7-workflow__step span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.dk7-workflow__step h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

.dk7-workflow__step p {
  margin: 0;
  color: #3b4051;
  font-size: 17px;
  line-height: 1.48;
}

.dk7-dosing {
  border-color: rgba(101, 80, 180, 0.22);
}

.dk7-dosing__formula {
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr auto auto 1fr;
  align-items: center;
  gap: 14px;
}

.dk7-dosing__formula strong {
  color: var(--accent);
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1;
}

.dk7-dosing__formula span {
  color: #202638;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.dk7-dosing__formula b {
  color: var(--text);
  font-size: 34px;
}

.dk7-dosing p {
  margin: 18px 0 0;
  color: #4d5264;
  font-size: 17px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .dk7-hero__text {
    padding: 34px 24px 26px;
  }

  .dk7-hero__visual img {
    height: 260px;
  }

  .competence-showcase__benefits--three,
  .dk7-workflow__list,
  .dk7-dosing__formula {
    grid-template-columns: 1fr;
  }

  .dk7-dosing__formula b {
    text-align: center;
  }
}

/* Biplast */
.biplast-content {
  display: grid;
  gap: 24px;
}

.biplast-hero,
.biplast-process,
.biplast-cta {
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
  scroll-margin-top: 118px;
}

.biplast-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
}

.biplast-hero__text {
  align-self: center;
  padding: 42px;
}

.biplast-hero__text h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

.biplast-hero__lead {
  margin: 24px 0 16px;
  color: var(--accent-dark);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
}

.biplast-hero__text > p:not(.biplast-hero__lead) {
  margin: 0;
  color: #303547;
  font-size: 18px;
  line-height: 1.55;
}

.biplast-hero__visual {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #eef4fb;
}

.biplast-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.biplast-params {
  margin-top: 0;
}

.biplast-process {
  padding: 32px;
}

.biplast-process h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.15;
}

.biplast-process__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.biplast-process__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.biplast-process__grid--three .biplast-process__step {
  min-height: 230px;
}

.biplast-process__step {
  min-width: 0;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 22px 16px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 18px;
  background: #fbfaff;
  text-align: center;
}

.biplast-process__step:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 91px;
  right: -13px;
  z-index: 2;
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.biplast-process__number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.biplast-process__icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent-dark);
}

.biplast-process__icon svg {
  width: 46px;
  height: 46px;
  display: block;
}

.biplast-process__step h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.biplast-process__step p {
  margin: 0;
  color: #3b4051;
  font-size: 14px;
  line-height: 1.4;
}

.biplast-benefits,
.biplast-application,
.biplast-dosing {
  margin-top: 0;
}

.biplast-benefits .reserve-benefits__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.biplast-benefits .reserve-benefit {
  min-height: 205px;
}

.biplast-application .reserve-workflow__step {
  grid-template-columns: 42px 62px minmax(0, 1fr);
}

.biplast-application h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.biplast-binder {
  background: linear-gradient(135deg, #ffffff, #f5f2ff);
}

.biplast-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  background: linear-gradient(135deg, #17214a, var(--accent-dark));
  color: #ffffff;
}

.biplast-cta h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.16;
}

.biplast-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.45;
}

.biplast-cta .competence-showcase__cta {
  margin-top: 0;
  background: #ffffff;
  color: var(--accent-dark);
  box-shadow: none;
}

@media (max-width: 1100px) {
  .biplast-hero {
    grid-template-columns: 1fr;
  }

  .biplast-hero__visual,
  .biplast-hero__visual img {
    min-height: 360px;
    height: 360px;
  }

  .biplast-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biplast-process__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .biplast-hero__text,
  .biplast-process {
    padding: 26px 20px;
  }

  .biplast-hero__text h1 {
    font-size: 38px;
  }

  .biplast-hero__lead {
    font-size: 20px;
  }

  .biplast-hero__visual,
  .biplast-hero__visual img {
    min-height: 280px;
    height: 280px;
  }

  .biplast-process__grid,
  .biplast-benefits .reserve-benefits__grid,
  .biplast-cta {
    grid-template-columns: 1fr;
  }

  .biplast-process__step,
  .biplast-benefits .reserve-benefit {
    min-height: 0;
  }

  .biplast-cta {
    padding: 26px 22px;
  }

  .biplast-cta .competence-showcase__cta {
    width: 100%;
  }
}

/* GranBitum */
.kpbv-content {
  gap: 24px;
}

.kpbv-hero {
  grid-template-columns: minmax(390px, 0.92fr) minmax(420px, 1.08fr);
}

.kpbv-hero .biplast-hero__text {
  min-width: 0;
  padding: 40px 38px;
}

.kpbv-hero .biplast-hero__text h1 {
  font-size: clamp(40px, 3.5vw, 58px);
}

.kpbv-hero .biplast-hero__lead {
  font-size: 22px;
}

.kpbv-section {
  padding: 32px;
  border: 1px solid rgba(101, 80, 180, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.kpbv-section h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.15;
}

.kpbv-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.kpbv-methods article {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 20px;
  background: #fbfaff;
}

.kpbv-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-strong);
  color: var(--accent-dark);
}

.kpbv-icon svg {
  width: 42px;
  height: 42px;
}

.kpbv-methods h3,
.kpbv-workflow h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.18;
}

.kpbv-methods p {
  margin: 0;
  color: #3b4051;
  font-size: 16px;
  line-height: 1.48;
}

.kpbv-benefits {
  margin-top: 0;
}

.kpbv-benefits .reserve-benefits__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kpbv-benefits .reserve-benefit {
  min-height: 235px;
}

.kpbv-workflow {
  margin-top: 0;
}

.kpbv-workflow .reserve-workflow__step {
  grid-template-columns: 42px 62px minmax(0, 1fr);
}

.kpbv-parameters {
  background: linear-gradient(135deg, #ffffff, #f3faf7);
}

.kpbv-documents .inner-doc-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
}

@media (max-width: 1100px) {
  .kpbv-hero {
    grid-template-columns: 1fr;
  }

  .kpbv-methods,
  .kpbv-benefits .reserve-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .kpbv-hero .biplast-hero__text,
  .kpbv-section {
    padding: 26px 20px;
  }

  .kpbv-hero .biplast-hero__text h1 {
    font-size: 38px;
  }

  .kpbv-methods,
  .kpbv-benefits .reserve-benefits__grid {
    grid-template-columns: 1fr;
  }

  .kpbv-methods article,
  .kpbv-benefits .reserve-benefit {
    min-height: 0;
  }
}

.granbitum-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.granbitum-hero .biplast-hero__text {
  min-width: 0;
  padding: 40px 38px;
}

.granbitum-hero .biplast-hero__text h1 {
  max-width: 720px;
  font-size: clamp(38px, 3.25vw, 54px);
  line-height: 1.06;
  overflow-wrap: normal;
  word-break: normal;
}

.granbitum-hero .biplast-hero__lead {
  max-width: 680px;
  font-size: 21px;
}

.granbitum-hero .biplast-hero__text > p:not(.biplast-hero__lead) {
  max-width: 680px;
  font-size: 17px;
}

.granbitum-benefits,
.granbitum-workflow {
  margin-top: 0;
}

.granbitum-benefits .reserve-benefits__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.granbitum-benefits .reserve-benefit {
  min-height: 205px;
}

.granbitum-technical {
  padding: 32px;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f4faf7);
  box-shadow: var(--shadow);
  scroll-margin-top: 118px;
}

.granbitum-technical h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.15;
  text-align: center;
}

.granbitum-technical__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(101, 80, 180, 0.12);
  border-radius: 18px;
  background: #ffffff;
}

.granbitum-technical__grid article {
  min-width: 0;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.granbitum-technical__grid article + article {
  border-left: 1px solid rgba(101, 80, 180, 0.12);
}

.granbitum-technical__grid strong {
  color: #167052;
  font-size: 30px;
  line-height: 1;
}

.granbitum-technical__grid span {
  color: #303547;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.granbitum-technical > p {
  margin: 18px 0 0;
  color: #315f51;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1100px) {
  .granbitum-hero {
    grid-template-columns: 1fr;
  }

  .granbitum-technical__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .granbitum-technical__grid article:nth-child(3) {
    border-left: 0;
  }

  .granbitum-technical__grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(101, 80, 180, 0.12);
  }
}

@media (max-width: 620px) {
  .granbitum-hero .biplast-hero__text {
    padding: 26px 20px;
  }

  .granbitum-hero .biplast-hero__text h1 {
    font-size: 36px;
  }

  .granbitum-benefits .reserve-benefits__grid,
  .granbitum-technical__grid {
    grid-template-columns: 1fr;
  }

  .granbitum-benefits .reserve-benefit,
  .granbitum-technical__grid article {
    min-height: 0;
  }

  .granbitum-technical {
    padding: 26px 20px;
  }

  .granbitum-technical__grid article + article {
    border-top: 1px solid rgba(101, 80, 180, 0.12);
    border-left: 0;
  }
}

/* Unified readable description size for product/benefit cards. */
.competence-showcase__benefit p,
.ks1-benefits .competence-showcase__benefit p,
.dk7-benefits .competence-showcase__benefit p,
.dk7-workflow__step p,
.binder-benefit p,
.rut-benefit p,
.shma-benefit p,
.reserve-benefit p,
.reserve-result-benefit p,
.reserve-advantage-card p,
.reserve-moisture-core__card p {
  font-size: 17px;
  line-height: 1.48;
}

@media (max-width: 620px) {
  .competence-showcase__benefit p,
  .ks1-benefits .competence-showcase__benefit p,
  .dk7-benefits .competence-showcase__benefit p,
  .dk7-workflow__step p,
  .binder-benefit p,
  .rut-benefit p,
  .shma-benefit p,
  .reserve-benefit p,
  .reserve-result-benefit p,
  .reserve-advantage-card p,
  .reserve-moisture-core__card p {
    font-size: 16px;
    line-height: 1.45;
  }
}