:root {
  --bg-soft: #eef3f9;
  --bg-soft-2: #f8fbff;
  --bg-dark: #06111f;
  --bg-dark-2: #0b2140;
  --text: #101b2d;
  --muted: #647389;
  --line: rgba(18, 30, 54, 0.10);
  --accent: #256eff;
  --accent-dark: #123a8b;
  --accent-gradient: linear-gradient(135deg, #123a8b 0%, #256eff 54%, #8ddcff 100%);
  --hero-gradient: linear-gradient(135deg, #061120 0%, #0b2140 34%, #17458d 72%, #2a77db 100%);
  --hero-spot-x: 50%;
  --hero-spot-y: 35%;
  --shadow-soft: 0 18px 60px rgba(10, 22, 44, 0.06);
  --shadow-strong: 0 28px 90px rgba(10, 22, 44, 0.14);
  --radius-lg: 32px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 110, 255, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(141, 220, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #f5f8fc 0%, #fbfdff 36%, #ffffff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 110, 255, 0.05), transparent 24%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0.9;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.section-header {
  max-width: 920px;
  margin-bottom: 40px;
}

.section h2,
.hero h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(50px, 8vw, 86px);
  font-weight: 600;
  color: #ffffff;
}

.section h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 255, 0.62);
  border-bottom: 1px solid rgba(16, 31, 59, 0.04);
  backdrop-filter: blur(22px);
  transition: box-shadow 0.26s ease, background 0.26s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 42px rgba(10, 22, 44, 0.1);
  background: rgba(255, 255, 255, 0.86);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
  transition: min-height 0.24s ease;
}

.site-header.is-scrolled .header-row {
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(18, 58, 139, 0.1));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(16, 31, 59, 0.07);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 247, 255, 0.8));
  box-shadow:
    0 14px 32px rgba(10, 22, 44, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #2a3850;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: 0.24s ease;
}

.site-nav a:hover {
  color: #102f67;
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 12px 26px rgba(10, 22, 44, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #18181f;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 112px 0 42px;
  color: white;
  overflow: clip;
  background: var(--hero-gradient);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(6, 17, 31, 0), rgba(6, 17, 31, 0.26));
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-spot-x) var(--hero-spot-y), rgba(149, 207, 255, 0.2), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(127, 196, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(61, 130, 255, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  transition: background-position 0.18s ease-out;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 86%);
  opacity: 0.28;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.34;
}

.hero-glow--one {
  width: 280px;
  height: 280px;
  right: 12%;
  top: 12%;
  background: rgba(145, 211, 255, 0.3);
}

.hero-glow--two {
  width: 220px;
  height: 220px;
  left: 4%;
  bottom: 8%;
  background: rgba(62, 135, 255, 0.24);
}

.hero-layout {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 360px;
  gap: 46px;
  align-items: end;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.04s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.20s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

#services {
  padding: 74px 0;
}

.service-rows {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 92px minmax(220px, 1fr) minmax(280px, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: transform 0.28s ease;
}

a.service-row {
  color: inherit;
  text-decoration: none;
}

.service-row:hover {
  transform: translateX(6px);
}

.service-row__index {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-row__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.service-row__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.section--darkband {
  overflow: clip;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 110, 255, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(141, 220, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #061120 0%, #0a1b34 36%, #103466 100%);
  color: white;
}

.section--darkband::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 110px 110px, 110px 110px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 95%);
  opacity: 0.18;
  pointer-events: none;
}

.section--darkband p {
  color: rgba(255,255,255,0.72);
}

.section--darkband h2 {
  color: white;
}

.darkband-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.darkband-items {
  display: grid;
  gap: 18px;
}

.darkband-items article {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.darkband-items article:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.darkband-items strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section#news {
  position: relative;
  padding: 76px 0;

  background:
    radial-gradient(circle at 12% 14%, rgba(136, 102, 166, 0.05), transparent 24%),
    linear-gradient(180deg, #faf8fd 0%, #f7f3fb 100%);
}

.section#news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 69, 150, 0), rgba(24, 69, 150, 0.22), rgba(24, 69, 150, 0));
  box-shadow: 0 10px 24px rgba(37, 110, 255, 0.08);
}

.news-slider {
  display: grid;
  gap: 18px;
}

.news-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news-slider__controls {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.news-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(18, 30, 54, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  color: var(--bg-dark);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.news-slider__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(31, 99, 255, 0.2);
}

.news-slider__button:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: var(--shadow-soft);
}

.news-slider__button span {
  font-size: 18px;
  line-height: 1;
}

.news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 16px;
  overflow-x: hidden;
  padding: 4px 4px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-color: transparent transparent;
}

.news-track::-webkit-scrollbar {
  display: none;
  height: 0;
}

.news-track::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.news-track::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(18, 30, 54, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  scroll-snap-align: start;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.news-card__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.news-card__media {
  position: relative;
  height: 148px;
  margin: -4px -4px 16px;
  border-radius: 20px;
  overflow: hidden;

  background-size: cover;
  background-position: center;
}

.news-card__media::after {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.news_24042026 {
  background-image:
    linear-gradient(180deg, rgba(8, 22, 43, 0.08), rgba(8, 22, 43, 0.34)),
    url("images/news/news_24042026.png");
  background-position: center 18%;
}

.news_19022026 {
  background-image:
    linear-gradient(180deg, rgba(14, 36, 80, 0.1), rgba(14, 36, 80, 0.38)),
    url("images/news/news_19022026.jpg");
  background-position: center 24%;
}

.news_14022025 {
  background-image:
    linear-gradient(180deg, rgba(16, 44, 80, 0.08), rgba(16, 44, 80, 0.34)),
    url("images/news/news_14022025.jpg");
  background-position: center 30%;
}

.news_28102024 {
  background-image:
    linear-gradient(180deg, rgba(12, 30, 72, 0.08), rgba(12, 30, 72, 0.4)),
    url("images/news/news_28102024.jpg");
  background-position: center 14%;
}

.\32 2102024 {
  background-image:
    linear-gradient(180deg, rgba(12, 28, 68, 0.08), rgba(12, 28, 68, 0.36)),
    url("images/news/news_22102024.jpg");
  background-position: center 12%;
}

.news-card__date {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.news-card p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
}

.news-card a:not(.news-card__link) {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.news-card__link h3 {
  color: var(--text);
}

.news-card__link p {
  font-weight: 400;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.leader-card {
  max-width: none;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.leader-card__body {
  display: grid;
  gap: 3px;
  padding: 12px 12px 14px;
}

.leader-card__body h3 {
  margin: 0 0 1px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.leader-card__body p {
  font-size: 12px;
  line-height: 1.3;
}

#managers {
  padding: 74px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.map-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-panel {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-list a {
  color: var(--accent);
  font-weight: 600;
}

.map-card {
  display: flex;
  overflow: hidden;
}

.map-card iframe {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(18, 30, 54, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(18, 30, 54, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.94));
  color: #163d8f;
  box-shadow: 0 18px 34px rgba(10, 22, 44, 0.14);
  backdrop-filter: blur(16px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: linear-gradient(180deg, #ffffff 0%, #eaf3ff 100%);
  box-shadow: 0 22px 40px rgba(10, 22, 44, 0.18);
}

.scroll-top span {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  text-align: right;
}

.footer-links a {
  color: #4f5d72;
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-links span {
  color: rgba(79, 93, 114, 0.55);
}

.footer-links a:hover {
  color: #2b3650;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .darkband-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .service-row {
    grid-template-columns: 72px 1fr;
  }

  .service-row__text {
    grid-column: 2 / -1;
  }

  .leader-card {
    max-width: none;
  }

  .leader-card__photo {
    height: 170px;
    max-height: 170px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(18,30,54,0.08);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(10, 22, 44, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .site-nav a::after {
    left: 14px;
    right: 14px;
    bottom: 6px;
  }

  .hero {
    padding-top: 72px;
  }

  .leaders-grid {
    grid-template-columns: 1fr;
  }

  .news-slider__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-track {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .leader-card__photo {
    height: 190px;
    max-height: 190px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 72px 0;
  }

  .header-row {
    min-height: 74px;
    gap: 16px;
  }

  .brand-logo {
    height: 33px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row__text {
    grid-column: auto;
  }

  .service-row__index {
    font-size: 20px;
  }

  .service-row__title,
  .news-card h3,
  .leader-card__body h3 {
    font-size: 24px;
  }

  .news-slider__button {
    width: 48px;
    height: 48px;
  }

  .contact-panel {
    padding: 22px;
  }

  .scroll-top {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-reveal],
  .hero-copy > *,
  .service-row,
  .news-card,
  .leader-card {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .news-track {
    scroll-behavior: auto;
  }
}


.hero-background {
  transform: translateZ(0);
}

.hero-gradient,
.hero-glow {
  will-change: transform;
  transition: transform 0.22s ease-out;
}


.hero-layout--single {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.hero-agro-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.hero-agro-flow path {
  fill: none;
  stroke: rgba(255,255,255,0.26);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 5 9;
}

.hero-agro-flow circle {
  fill: rgba(255,255,255,0.95);
  opacity: 0.9;
}

.section--contour {
  overflow: clip;
}

.contour-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
  align-items: center;
  gap: 0;
}

.contour-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: var(--shadow-soft);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bg-dark-2);
}

.contour-link {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(31,99,255,0.18), rgba(31,99,255,0.58), rgba(31,99,255,0.18));
  overflow: hidden;
}

.contour-link::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -20px;
  width: 20px;
  height: 6px;
  border-radius: 999px;
  background: rgba(31,99,255,0.9);
  box-shadow: 0 0 18px rgba(31,99,255,0.45);
  animation: contourPulse 2.8s linear infinite;
}

.contour-note {
  margin-top: 24px;
  max-width: 760px;
  font-size: 18px;
}

@keyframes contourPulse {
  from { transform: translateX(0); }
  to { transform: translateX(80px); }
}

@media (max-width: 1120px) {
  .contour-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contour-link {
    height: 32px;
    width: 2px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(31,99,255,0.18), rgba(31,99,255,0.58), rgba(31,99,255,0.18));
  }

  .contour-link::after {
    top: -10px;
    left: -2px;
    width: 6px;
    height: 20px;
    animation: contourPulseVertical 2.8s linear infinite;
  }

  @keyframes contourPulseVertical {
    from { transform: translateY(0); }
    to { transform: translateY(42px); }
  }
}

/* Hero Variant: Futuristic */
.hero {
  padding: 126px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 12%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(141, 220, 255, 0.24), rgba(37, 110, 255, 0.08) 44%, transparent 70%);
  box-shadow:
    0 0 0 30px rgba(141, 220, 255, 0.03),
    0 0 120px rgba(37, 110, 255, 0.16);
  pointer-events: none;
}

.hero-gridlines {
  opacity: 0.07;
}

.hero-agro-flow {
  opacity: 0.22;
}

.hero-agro-flow path {
  stroke: rgba(141, 220, 255, 0.34);
  stroke-dasharray: none;
  stroke-linecap: round;
}

.hero-copy {
  position: relative;
  max-width: 720px;
}

.hero-copy h2 {
  max-width: 700px;
  font-size: clamp(50px, 7vw, 80px);
  line-height: 0.95;
}

.hero-actions {
  margin-top: 32px;
}

@media (max-width: 860px) {
  .hero::before {
    right: -90px;
    width: 240px;
    height: 240px;
  }
}

/* Section separation: News -> Services */
#services {
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 110, 255, 0.08), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(141, 220, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(37, 110, 255, 0), rgba(37, 110, 255, 0.16), rgba(141, 220, 255, 0.18), rgba(37, 110, 255, 0));
  pointer-events: none;
}

#services .container {
  position: relative;
}

#services .service-rows {
  padding: 18px 22px;
  border-top: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(244,248,255,0.78));
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: 0 20px 56px rgba(10, 22, 44, 0.06);
}

#services .service-row:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,247,255,0.94));
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(10, 22, 44, 0.06);
}

@media (max-width: 860px) {
  #services .service-rows {
    padding: 14px;
    border-radius: 26px;
  }
}

/* Hero metrics bars */
.hero-actions--metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 14px;
  align-items: stretch;
}

.hero-metric-bar {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.hero-metric-bar strong {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-metric-bar span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .hero-actions--metrics {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* Team -> Contacts separation */
#contacts {
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 110, 255, 0.09), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(141, 220, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

#contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(37, 110, 255, 0), rgba(37, 110, 255, 0.22), rgba(141, 220, 255, 0.24), rgba(37, 110, 255, 0));
  pointer-events: none;
}

#contacts .contact-grid {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(243,248,255,0.78));
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: 0 22px 56px rgba(10, 22, 44, 0.06);
}

@media (max-width: 860px) {
  #contacts .contact-grid {
    padding: 14px;
    border-radius: 24px;
  }
}

/* Solutions page */
.solutions-page-hero {
  overflow: clip;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 110, 255, 0.22), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(141, 220, 255, 0.16), transparent 20%),
    linear-gradient(135deg, #061120 0%, #0b2140 40%, #17458d 100%);
  color: #ffffff;
}

.solutions-page-hero__inner {
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.solutions-page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.solutions-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 110, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

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

.solution-detail-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.solution-detail-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 58, 139, 0.12), rgba(37, 110, 255, 0.10));
  color: var(--accent-dark);
  font-weight: 700;
}

.solution-detail-card h2 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.04;
}

.solution-registry-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18,58,139,0.08), rgba(37,110,255,0.06));
  border: 1px solid rgba(18, 58, 139, 0.10);
  color: #184596;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

a.solution-registry-badge,
a.solution-registry-badge:visited,
a.solution-registry-badge:hover,
a.solution-registry-badge:focus {
  color: #184596;
  text-decoration: none;
}

a.solution-registry-badge.solution-registry-badge--light,
a.solution-registry-badge.solution-registry-badge--light:visited,
a.solution-registry-badge.solution-registry-badge--light:hover,
a.solution-registry-badge.solution-registry-badge--light:focus {
  color: rgba(255, 255, 255, 0.92);
}

.solution-detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.solution-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.solution-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #173c86 0%, #0f2f6e 100%);
  border: 1px solid rgba(11, 34, 81, 0.18);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(11, 34, 81, 0.16);
}

.solution-detail-link:hover {
  background: linear-gradient(180deg, #1b469a 0%, #123879 100%);
  box-shadow: 0 16px 28px rgba(11, 34, 81, 0.22);
}

@media (max-width: 1120px) {
  .solutions-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Solution article page */
.solution-article-hero {
  overflow: clip;
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 110, 255, 0.22), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(141, 220, 255, 0.16), transparent 20%),
    linear-gradient(135deg, #061120 0%, #0b2140 40%, #17458d 100%);
  color: #ffffff;
}

.solution-article-hero__inner {
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.solution-article-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.solution-registry-badge--light {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
}

.solution-article {
  background:
    radial-gradient(circle at 12% 14%, rgba(37, 110, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.solution-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.solution-article-card,
.solution-price-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.solution-article-card h2,
.solution-price-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.06;
}

.solution-article-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.solution-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.solution-article-media {
  margin: 26px 0 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.solution-article-media img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-detail-link--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,244,255,0.92));
  border: 1px solid rgba(11, 34, 81, 0.12);
  color: #184596;
  box-shadow: 0 10px 20px rgba(11, 34, 81, 0.08);
}

.solution-detail-link--ghost:hover {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(232,240,255,0.96));
  box-shadow: 0 14px 24px rgba(11, 34, 81, 0.12);
}

.solution-price-card {
  margin-top: 26px;
  max-width: 780px;
}

#labs-contacts {
  position: relative;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0) 0%, rgba(237, 244, 255, 0.88) 18%, #f8fbff 100%);
}

#labs-contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 69, 150, 0), rgba(24, 69, 150, 0.2), rgba(24, 69, 150, 0));
}

#labs-contacts .contact-grid {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(242,247,255,0.92));
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: 0 18px 44px rgba(10, 22, 44, 0.06);
}

@media (max-width: 860px) {
  #labs-contacts .contact-grid {
    padding: 14px;
    border-radius: 24px;
  }
}

#integration-contacts {
  position: relative;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0) 0%, rgba(237, 244, 255, 0.88) 18%, #f8fbff 100%);
}

#integration-contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 69, 150, 0), rgba(24, 69, 150, 0.2), rgba(24, 69, 150, 0));
}

#integration-contacts .contact-grid {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(242,247,255,0.92));
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: 0 18px 44px rgba(10, 22, 44, 0.06);
}

@media (max-width: 860px) {
  #integration-contacts .contact-grid {
    padding: 14px;
    border-radius: 24px;
  }
}

#techcenter-contacts {
  position: relative;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0) 0%, rgba(237, 244, 255, 0.88) 18%, #f8fbff 100%);
}

#techcenter-contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 69, 150, 0), rgba(24, 69, 150, 0.2), rgba(24, 69, 150, 0));
}

#techcenter-contacts .contact-grid {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(242,247,255,0.92));
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: 0 18px 44px rgba(10, 22, 44, 0.06);
}

@media (max-width: 860px) {
  #techcenter-contacts .contact-grid {
    padding: 14px;
    border-radius: 24px;
  }
}

#kub-contacts {
  position: relative;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0) 0%, rgba(237, 244, 255, 0.88) 18%, #f8fbff 100%);
}

#kub-contacts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 69, 150, 0), rgba(24, 69, 150, 0.2), rgba(24, 69, 150, 0));
}

#kub-contacts .contact-grid {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(242,247,255,0.92));
  border: 1px solid rgba(18, 30, 54, 0.08);
  box-shadow: 0 18px 44px rgba(10, 22, 44, 0.06);
}

@media (max-width: 860px) {
  #kub-contacts .contact-grid {
    padding: 14px;
    border-radius: 24px;
  }
}

@media (max-width: 1120px) {
  .solution-article-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Variant Override: Prism Sunset */
.hero {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 126, 103, 0.2), transparent 18%),
    radial-gradient(circle at 74% 16%, rgba(162, 114, 255, 0.22), transparent 22%),
    radial-gradient(circle at 90% 54%, rgba(255, 204, 98, 0.16), transparent 20%),
    linear-gradient(124deg, #0a0d19 0%, #291848 24%, #4a267d 46%, #d54d7b 74%, #ff9c42 100%);
}

.hero::before {
  background:
    radial-gradient(circle at center, rgba(255, 177, 119, 0.2), rgba(184, 103, 255, 0.1) 42%, transparent 70%);
  box-shadow:
    0 0 0 32px rgba(255, 152, 96, 0.04),
    0 0 150px rgba(255, 113, 140, 0.2);
}

.hero-gradient {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 171, 121, 0.16), transparent 22%),
    radial-gradient(circle at 62% 34%, rgba(255,255,255,0.06), transparent 14%),
    radial-gradient(circle at 80% 18%, rgba(191, 120, 255, 0.2), transparent 20%),
    radial-gradient(circle at 88% 62%, rgba(255, 211, 92, 0.12), transparent 18%);
}

.hero-gridlines {
  opacity: 0.1;
}

.hero-agro-flow path {
  stroke: rgba(255, 214, 176, 0.24);
}

.hero-glow--one {
  background: rgba(255, 154, 104, 0.22);
}

.hero-glow--two {
  background: rgba(177, 110, 255, 0.22);
}

.hero-metric-bar {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255, 158, 92, 0.12));
}

/* Hero harmony accents */
.eyebrow {
  color: #bf4f7d;
}

.eyebrow::before {
  opacity: 1;
}

#contour {
  background:
    radial-gradient(circle at 12% 12%, rgba(170, 92, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 84%, rgba(255, 164, 86, 0.08), transparent 20%),
    linear-gradient(180deg, #fbf7ff 0%, #fffaf7 100%);
}

#news {
  background:
    radial-gradient(circle at 14% 18%, rgba(213, 77, 123, 0.08), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(255, 167, 92, 0.08), transparent 18%),
    linear-gradient(180deg, #fff7fb 0%, #fffdfb 100%);
}

#news::before {
  background: linear-gradient(90deg, rgba(74, 38, 125, 0), rgba(126, 61, 132, 0.18), rgba(255, 161, 86, 0.18), rgba(74, 38, 125, 0));
  box-shadow: 0 8px 20px rgba(106, 51, 105, 0.08);
}

#services {
  background:
    radial-gradient(circle at 10% 12%, rgba(188, 84, 142, 0.07), transparent 24%),
    radial-gradient(circle at 90% 82%, rgba(255, 167, 92, 0.08), transparent 18%),
    linear-gradient(180deg, #fff8f6 0%, #fff4f7 100%);
}

#services::before {
  background: linear-gradient(90deg, rgba(149, 63, 125, 0), rgba(149, 63, 125, 0.16), rgba(255, 161, 86, 0.2), rgba(149, 63, 125, 0));
}

#services .service-rows {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,247,245,0.86));
  border: 1px solid rgba(122, 63, 124, 0.08);
  box-shadow: 0 20px 56px rgba(48, 24, 52, 0.07);
}

#services .service-row:hover {
  background: linear-gradient(180deg, rgba(255,252,251,0.98), rgba(255,242,237,0.94));
}

#managers.section--soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(164, 104, 255, 0.07), transparent 24%),
    radial-gradient(circle at 84% 88%, rgba(255, 179, 96, 0.07), transparent 18%),
    linear-gradient(180deg, #faf7ff 0%, #fff8fb 100%);
}

#contacts {
  background:
    radial-gradient(circle at 8% 14%, rgba(214, 84, 129, 0.07), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(255, 173, 96, 0.08), transparent 18%),
    linear-gradient(180deg, #fff8fb 0%, #fff5f2 100%);
}

#contacts::before {
  background: linear-gradient(90deg, rgba(122, 63, 124, 0), rgba(179, 77, 119, 0.18), rgba(255, 167, 92, 0.16), rgba(122, 63, 124, 0));
}

#contacts .contact-grid {
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,246,243,0.8));
  border-color: rgba(122, 63, 124, 0.08);
  box-shadow: 0 22px 56px rgba(48, 24, 52, 0.07);
}

.news-card,
.leader-card,
.contact-panel,
.map-card {
  border-color: rgba(122, 63, 124, 0.08);
  box-shadow: 0 18px 50px rgba(48, 24, 52, 0.08);
}

.news-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,247,244,0.9));
}

.news-card:hover,
.leader-card:hover,
.leader-card:focus-within {
  box-shadow: 0 24px 64px rgba(48, 24, 52, 0.12);
  border-color: rgba(191, 79, 125, 0.18);
}

.leader-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf5fb 100%);
}

.contact-panel,
.map-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,245,242,0.84));
}

.service-row__index,
.contact-list a {
  color: #b5477a;
}

.news-slider__button {
  background: linear-gradient(180deg, #fffaf8 0%, #fff2ee 100%);
  border-color: rgba(122, 63, 124, 0.1);
  color: #4f2a5f;
}

.news-slider__button:hover {
  border-color: rgba(191, 79, 125, 0.16);
}

.section--darkband {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 158, 92, 0.16), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(195, 92, 167, 0.18), transparent 22%),
    linear-gradient(135deg, #140d1d 0%, #35184a 40%, #7a2f6c 78%, #b24b55 100%);
}

.section--darkband::before {
  opacity: 0.14;
}

.darkband-items article {
  border-top-color: rgba(255,255,255,0.16);
}

.darkband-items article:last-child {
  border-bottom-color: rgba(255,255,255,0.16);
}

/* Palette balance refinements */
#contour {
  background:
    radial-gradient(circle at 12% 12%, rgba(138, 90, 187, 0.07), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(240, 160, 92, 0.07), transparent 18%),
    linear-gradient(180deg, #faf7fd 0%, #fffaf7 100%);
}

.contour-chip {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,244,249,0.92));
  border: 1px solid rgba(123, 72, 127, 0.08);
  box-shadow: 0 16px 40px rgba(52, 26, 55, 0.06);
  color: #33263c;
}

.contour-link {
  background: linear-gradient(90deg, rgba(164, 83, 134, 0.18), rgba(164, 83, 134, 0.55), rgba(247, 164, 92, 0.2));
}

.contour-link::after {
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255, 213, 152, 0.9), rgba(255,255,255,0));
}

.contour-note,
.service-row__text,
.news-card__date,
.leader-card__body p {
  color: #756775;
}

#news {
  background:
    radial-gradient(circle at 14% 18%, rgba(176, 78, 129, 0.07), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(243, 167, 97, 0.07), transparent 18%),
    linear-gradient(180deg, #fff8fb 0%, #fffdfa 100%);
}

.news-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(252,245,243,0.92));
}

.news-card__media {
  background-color: #ead7de;
}

.news-card__media::after {
  background: linear-gradient(135deg, rgba(86, 42, 95, 0.92), rgba(180, 73, 122, 0.88));
  color: rgba(255,255,255,0.96);
  box-shadow: 0 10px 26px rgba(74, 34, 79, 0.2);
}

.news-slider__button {
  background: linear-gradient(180deg, #fffaf9 0%, #fff3f0 100%);
  box-shadow: 0 12px 28px rgba(52, 26, 55, 0.08);
}

.news-slider__button:hover {
  border-color: rgba(191, 79, 125, 0.18);
  box-shadow: 0 16px 36px rgba(52, 26, 55, 0.12);
}

#services {
  background:
    radial-gradient(circle at 10% 12%, rgba(170, 82, 125, 0.06), transparent 24%),
    radial-gradient(circle at 90% 82%, rgba(241, 165, 96, 0.08), transparent 18%),
    linear-gradient(180deg, #fff8f6 0%, #fff5f8 100%);
}

#services .service-rows {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(252,245,243,0.88));
}

.service-row__title {
  color: #2e2336;
}

#managers.section--soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(146, 92, 184, 0.06), transparent 24%),
    radial-gradient(circle at 84% 88%, rgba(239, 177, 103, 0.06), transparent 18%),
    linear-gradient(180deg, #faf7fd 0%, #fff8fb 100%);
}

.leader-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf4f8 100%);
}

.leader-card__photo {
  height: 164px;
  max-height: 164px;
  background-color: #fbf6f8;
  background-repeat: no-repeat;
  background-size: 100% 100%, var(--leader-photo-size, auto 92%);
}

.leader-card__photo {
  background-image:
    linear-gradient(180deg, rgba(121, 58, 115, 0.08), rgba(24,24,31,0.02)),
    var(--leader-photo-image, none);
  background-position: center, var(--leader-photo-position, center bottom);
}

.leader-card__photo--np {
  --leader-photo-image: url("images/index/NP.jpg");
  --leader-photo-size: auto 92%;
  --leader-photo-position: center bottom;
}

.leader-card__photo--rg {
  --leader-photo-image: url("images/index/RG.jpg");
  --leader-photo-size: auto 92%;
  --leader-photo-position: center bottom;
}

.leader-card__photo--shelestova {
  --leader-photo-image: url("images/index/shelestova.png");
  --leader-photo-size: auto 110%;
  --leader-photo-position: center bottom;
}

.leader-card__photo--karpenko {
  --leader-photo-image: url("images/index/karpenko_irina.png");
  --leader-photo-size: auto 91%;
}

.leader-card__photo--mantsurov {
  --leader-photo-image: url("images/index/mantsurov.jpg");
  --leader-photo-size: auto 132%;
}

.leader-card__photo--kulkov {
  --leader-photo-image: url("images/index/kulkov.png");
  --leader-photo-size: auto 120%;
}

.leader-card__photo--belyaev {
  --leader-photo-image: url("images/index/belyaev2.png");
  --leader-photo-size: auto 119%;
}

.leader-card__photo--civilev {
  --leader-photo-image: url("images/index/civilev_eugenii.png");
  --leader-photo-size: auto 92%;
}

.leader-card__photo--gorodetskyi {
  --leader-photo-image: url("images/index/gorodetskyi.png");
  --leader-photo-size: auto 155%;
}

.leader-card__photo--hitrov {
  --leader-photo-image: url("images/index/hitrov_ruslan.png");
  --leader-photo-size: auto 93%;
}

.leader-card__photo--goncharenko {
  --leader-photo-image: url("images/index/goncharenko_evgenii.png");
  --leader-photo-size: auto 91%;
}

.leader-card__photo--anosov {
  --leader-photo-image: url("images/index/anosov_aleksandr.png");
  --leader-photo-size: auto 91%;
}

.leader-card__photo--konev {
  --leader-photo-image: url("images/index/konev_pavel.png");
  --leader-photo-size: auto 91%;
}


.leader-card__photo--glushenkova {
  --leader-photo-image: url("images/index/glushenkova_ekaterina.png");
  --leader-photo-size: auto 92%;
}

.leader-card__photo--fomicheva {
  --leader-photo-image: url("images/index/fomicheva.png");
  --leader-photo-size: auto 10%;
}

.leader-card__photo--nikitin {
  --leader-photo-image: url("images/index/nikitin.png");
  --leader-photo-size: auto 100%;
}

.leader-card__photo--nophoto {
  --leader-photo-image: url("images/index/nophoto.png");
  --leader-photo-size: auto 82%;
  --leader-photo-position: center center;
}

@media (max-width: 1120px) {
  .leader-card__photo {
    height: 188px;
    max-height: 188px;
  }
}

@media (max-width: 760px) {
  .leader-card__photo {
    height: 208px;
    max-height: 208px;
  }
}

#contacts {
  background:
    radial-gradient(circle at 8% 14%, rgba(184, 82, 130, 0.06), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(240, 171, 104, 0.07), transparent 18%),
    linear-gradient(180deg, #fff8fb 0%, #fff5f2 100%);
}

.contact-panel,
.map-card,
#contacts .contact-grid {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(251,244,242,0.84));
}

.contact-list a {
  color: #ad4778;
}

.site-footer {
  border-top: 1px solid rgba(123, 72, 127, 0.08);
  background: linear-gradient(180deg, #fff8fb 0%, #fff5f3 100%);
}

.site-footer p {
  color: #7a6b79;
}

/* Section gradient tuning */
#news {
  background:
    radial-gradient(circle at 12% 14%, rgba(146, 98, 168, 0.06), transparent 24%),
    radial-gradient(circle at 88% 80%, rgba(241, 170, 104, 0.07), transparent 18%),
    linear-gradient(180deg, #fbf8fd 0%, #fffaf7 100%);
}

#news::before {
  background: linear-gradient(90deg, rgba(125, 86, 142, 0), rgba(125, 86, 142, 0.16), rgba(241, 170, 104, 0.16), rgba(125, 86, 142, 0));
  box-shadow: 0 8px 20px rgba(92, 64, 100, 0.06);
}

.news-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(250,245,247,0.92));
}

.news-card__media {
  background-color: #e7dbe4;
}

#services {
  background:
    radial-gradient(circle at 12% 12%, rgba(150, 102, 148, 0.035), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(239, 176, 108, 0.055), transparent 18%),
    linear-gradient(180deg, #fffaf8 0%, #fff7f6 100%);
}

#services::before {
  background: linear-gradient(90deg, rgba(141, 101, 134, 0), rgba(141, 101, 134, 0.12), rgba(238, 173, 104, 0.16), rgba(141, 101, 134, 0));
}

#services .service-rows {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(252,247,245,0.9));
}

#services .service-row:hover {
  background: linear-gradient(180deg, rgba(255,253,252,0.98), rgba(250,244,241,0.95));
}

.section--darkband {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 177, 104, 0.12), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(193, 102, 146, 0.16), transparent 22%),
    radial-gradient(circle at 92% 82%, rgba(255, 143, 86, 0.12), transparent 20%),
    linear-gradient(135deg, #0d0d14 0%, #1b1521 24%, #35203a 52%, #6a3154 80%, #a64f58 100%);
}

.section--darkband::before {
  opacity: 0.12;
}

.darkband-items article,
.darkband-items article:last-child {
  border-color: rgba(255,255,255,0.14);
}

#managers.section--soft {
  background:
    radial-gradient(circle at 12% 14%, rgba(136, 102, 166, 0.05), transparent 24%),
    linear-gradient(180deg, #faf8fd 0%, #f7f3fb 100%);
}

.leader-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f2f8 100%);
}

#contacts {
  background:
    radial-gradient(circle at 10% 12%, rgba(226, 154, 100, 0.08), transparent 24%),
    radial-gradient(circle at 90% 16%, rgba(196, 108, 131, 0.045), transparent 18%),
    linear-gradient(180deg, #fff9f6 0%, #fff3ee 100%);
}

#contacts::before {
  background: linear-gradient(90deg, rgba(163, 111, 110, 0), rgba(196, 128, 110, 0.18), rgba(241, 174, 109, 0.18), rgba(163, 111, 110, 0));
}

#contacts .contact-grid,
.contact-panel,
.map-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(253,245,240,0.86));
}

/* Section color harmony pass */
:root {
  --harmony-ink: #231b2c;
  --harmony-berry: #b64f78;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(180, 84, 120, 0.08), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(237, 146, 86, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf8fb 0%, #fff8f3 100%);
  color: var(--harmony-ink);
}

.section {
  isolation: isolate;
}

.section > .container {
  position: relative;
  z-index: 1;
}

#contour,
#news,
#services,
.section--darkband,
#managers,
#contacts {
  overflow: hidden;
}

#contour::after,
#news::after,
#services::after,
.section--darkband::after,
#managers::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100% - 1240px) / 2));
  right: max(24px, calc((100% - 1240px) / 2));
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(118, 75, 104, 0.2), rgba(236, 140, 95, 0.18), transparent);
}

#contour {
  background:
    radial-gradient(circle at 10% 12%, rgba(126, 82, 148, 0.055), transparent 25%),
    radial-gradient(circle at 88% 78%, rgba(236, 150, 91, 0.07), transparent 22%),
    linear-gradient(180deg, #fbf8fd 0%, #fffaf5 100%);
}

.contour-chip {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,245,248,0.92));
  border-color: rgba(113, 68, 105, 0.1);
  box-shadow: 0 16px 42px rgba(52, 29, 54, 0.055);
}

.contour-link {
  background: linear-gradient(90deg, rgba(123, 63, 114, 0.18), rgba(182, 79, 120, 0.46), rgba(236, 140, 95, 0.24));
}

#news {
  background:
    radial-gradient(circle at 14% 16%, rgba(141, 80, 128, 0.07), transparent 25%),
    radial-gradient(circle at 86% 80%, rgba(235, 150, 93, 0.08), transparent 22%),
    linear-gradient(180deg, #fff8f7 0%, #fbf5fa 100%);
}

#news::before {
  background: linear-gradient(90deg, rgba(123, 63, 114, 0), rgba(181, 79, 118, 0.17), rgba(236, 140, 95, 0.16), rgba(123, 63, 114, 0));
  box-shadow: 0 10px 24px rgba(80, 45, 73, 0.06);
}

.news-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(250,243,244,0.92));
  border-color: rgba(113, 68, 105, 0.1);
  box-shadow: 0 18px 48px rgba(52, 29, 54, 0.07);
}

.news-card:hover {
  border-color: rgba(182, 79, 120, 0.2);
  box-shadow: 0 24px 62px rgba(52, 29, 54, 0.12);
}

.news-card__media {
  background-color: #ead9dc;
}

.news-card__media::after {
  background: linear-gradient(135deg, rgba(64, 36, 69, 0.92), rgba(169, 72, 112, 0.88), rgba(227, 133, 88, 0.82));
}

.news-slider__button {
  background: linear-gradient(180deg, #fffaf8 0%, #fff1ec 100%);
  border-color: rgba(113, 68, 105, 0.12);
  color: #493052;
  box-shadow: 0 12px 28px rgba(52, 29, 54, 0.075);
}

.news-slider__button:hover {
  border-color: rgba(182, 79, 120, 0.22);
  box-shadow: 0 16px 38px rgba(52, 29, 54, 0.12);
}

#services {
  background:
    radial-gradient(circle at 12% 12%, rgba(232, 139, 92, 0.06), transparent 25%),
    radial-gradient(circle at 90% 78%, rgba(139, 78, 127, 0.045), transparent 22%),
    linear-gradient(180deg, #fff7f1 0%, #fffaf7 100%);
}

#services::before {
  background: linear-gradient(90deg, transparent, rgba(236, 140, 95, 0.18), rgba(123, 63, 114, 0.12), transparent);
}

#services .service-rows {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(253,247,242,0.9));
  border-color: rgba(144, 85, 82, 0.11);
  box-shadow: 0 20px 52px rgba(80, 44, 39, 0.07);
}

#services .service-row:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,242,235,0.95));
}

.service-row__index,
.contact-list a {
  color: var(--harmony-berry);
}

.section--darkband {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 166, 93, 0.16), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(185, 82, 126, 0.2), transparent 24%),
    radial-gradient(circle at 88% 86%, rgba(236, 140, 95, 0.12), transparent 22%),
    linear-gradient(135deg, #111019 0%, #21172a 26%, #3b213f 54%, #753555 78%, #b6555a 100%);
}

.section--darkband::before {
  opacity: 0.13;
}

.darkband-items article,
.darkband-items article:last-child {
  border-color: rgba(255,255,255,0.16);
}

#managers.section--soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(114, 81, 145, 0.06), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(217, 128, 105, 0.045), transparent 22%),
    linear-gradient(180deg, #f8f5fb 0%, #fbf8fd 100%);
}

.leader-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f2f7 100%);
  border-color: rgba(113, 68, 105, 0.1);
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.07);
}

.leader-card:hover,
.leader-card:focus-within {
  border-color: rgba(182, 79, 120, 0.18);
  box-shadow: 0 24px 60px rgba(52, 29, 54, 0.11);
}

#contacts {
  background:
    radial-gradient(circle at 10% 14%, rgba(237, 146, 86, 0.08), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(176, 83, 117, 0.045), transparent 20%),
    linear-gradient(180deg, #fff8f1 0%, #fff2ec 100%);
}

#contacts::before {
  background: linear-gradient(90deg, transparent, rgba(236, 140, 95, 0.2), rgba(182, 79, 120, 0.13), transparent);
}

#contacts .contact-grid,
.contact-panel,
.map-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.93), rgba(253,245,238,0.86));
  border-color: rgba(144, 85, 82, 0.11);
  box-shadow: 0 20px 52px rgba(80, 44, 39, 0.075);
}

.site-footer {
  background: linear-gradient(180deg, #fff2ec 0%, #f8ece8 100%);
  border-top-color: rgba(144, 85, 82, 0.12);
}

/* News transparent backdrop */
#news .news-card {
  background: transparent;
  box-shadow: none;
}

#news .news-card:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 3px 8px rgba(52, 29, 54, 0.08);
}

#news .news-card__link,
#news .news-card__media {
  background-color: transparent;
}

/* Inner pages: align solutions with index sunset style */
.solutions-page-hero,
.solution-article-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 126, 103, 0.2), transparent 18%),
    radial-gradient(circle at 74% 16%, rgba(162, 114, 255, 0.22), transparent 22%),
    radial-gradient(circle at 90% 54%, rgba(255, 204, 98, 0.16), transparent 20%),
    linear-gradient(124deg, #0a0d19 0%, #291848 24%, #4a267d 46%, #d54d7b 74%, #ff9c42 100%);
  color: #ffffff;
}

.solutions-page-hero::before,
.solution-article-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 12%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 177, 119, 0.2), rgba(184, 103, 255, 0.1) 42%, transparent 70%);
  box-shadow:
    0 0 0 32px rgba(255, 152, 96, 0.04),
    0 0 150px rgba(255, 113, 140, 0.2);
  pointer-events: none;
}

.solutions-page-hero::after,
.solution-article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 90%);
  opacity: 0.12;
  pointer-events: none;
}

.solutions-page-hero__inner,
.solution-article-hero__inner {
  position: relative;
  z-index: 1;
}

.solutions-page-hero h1,
.solution-article-hero h1 {
  color: #ffffff;
  text-shadow: 0 16px 50px rgba(16, 8, 24, 0.22);
}

.solutions-page,
.solution-article {
  background:
    radial-gradient(circle at 12% 12%, rgba(138, 90, 187, 0.07), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(240, 160, 92, 0.07), transparent 18%),
    linear-gradient(180deg, #faf7fd 0%, #fffaf7 100%);
}

.solutions-page-grid {
  gap: 24px;
}

.solution-detail-card,
.solution-article-card,
.solution-price-card,
.solution-article-media {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,244,249,0.9));
  border-color: rgba(113, 68, 105, 0.1);
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.07);
}

.solution-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 79, 120, 0.18);
  box-shadow: 0 24px 60px rgba(52, 29, 54, 0.11);
}

.solution-detail-card__tag {
  background: linear-gradient(135deg, rgba(182, 79, 120, 0.14), rgba(236, 140, 95, 0.12));
  color: #8f3e63;
}

.solution-registry-badge {
  background: linear-gradient(180deg, rgba(182, 79, 120, 0.1), rgba(236, 140, 95, 0.08));
  border-color: rgba(182, 79, 120, 0.14);
  color: #8f3e63;
}

.solution-registry-badge--light {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.94);
}

.solution-detail-link {
  background: linear-gradient(135deg, #5f2a67 0%, #b64f78 52%, #ec8c5f 100%);
  border-color: rgba(95, 42, 103, 0.18);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(95, 42, 103, 0.18);
}

.solution-detail-link:hover {
  background: linear-gradient(135deg, #6d3173 0%, #c85b83 52%, #f09a6d 100%);
  box-shadow: 0 18px 34px rgba(95, 42, 103, 0.24);
}

.solution-detail-link--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,244,249,0.88));
  border-color: rgba(113, 68, 105, 0.12);
  color: #4f2a5f;
  box-shadow: 0 10px 22px rgba(52, 29, 54, 0.06);
}

.solution-detail-link--ghost:hover {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,242,235,0.94));
  box-shadow: 0 14px 28px rgba(52, 29, 54, 0.1);
}

.solution-detail-list,
.solution-article-list {
  color: #756775;
}

#labs-contacts,
#integration-contacts,
#techcenter-contacts,
#kub-contacts {
  background:
    radial-gradient(circle at 10% 14%, rgba(237, 146, 86, 0.08), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(176, 83, 117, 0.045), transparent 20%),
    linear-gradient(180deg, #fff8f1 0%, #fff2ec 100%);
}

#labs-contacts::before,
#integration-contacts::before,
#techcenter-contacts::before,
#kub-contacts::before {
  background: linear-gradient(90deg, transparent, rgba(236, 140, 95, 0.2), rgba(182, 79, 120, 0.13), transparent);
  box-shadow: none;
}

#labs-contacts .contact-grid,
#integration-contacts .contact-grid,
#techcenter-contacts .contact-grid,
#kub-contacts .contact-grid {
  background: linear-gradient(180deg, rgba(255,255,255,0.93), rgba(253,245,238,0.86));
  border-color: rgba(144, 85, 82, 0.11);
  box-shadow: 0 20px 52px rgba(80, 44, 39, 0.075);
}

@media (max-width: 860px) {
  .solutions-page-hero::before,
  .solution-article-hero::before {
    right: -90px;
    width: 240px;
    height: 240px;
  }
}

/* Solutions hover refinement */
.solutions-page .solution-detail-card:hover {
  transform: none;
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.07);
}

.solutions-page .solution-detail-link,
.solution-article .solution-detail-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s ease,
    border-color 0.32s ease;
}

.solutions-page .solution-detail-link::before,
.solution-article .solution-detail-link::before {
  content: none;
}

.solutions-page .solution-detail-link:hover,
.solution-article .solution-detail-link:hover {
  background: linear-gradient(135deg, #24123d 0%, #8e365f 58%, #d97848 100%);
  border-color: rgba(255, 211, 176, 0.46);
  box-shadow: 0 8px 22px rgba(70, 32, 61, 0.18);
  transform: translateY(-1px);
  color: #ffffff;
}

.solutions-page .solution-detail-link:active,
.solution-article .solution-detail-link:active {
  transform: translateY(0);
}

/* Footer grey harmony */
.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 242, 246, 0.92)),
    linear-gradient(135deg, #f7f5f2 0%, #eef1f5 100%);
  border-top-color: rgba(88, 99, 116, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-footer p {
  color: #657184;
}

/* Comfortable 90% desktop scale */
@media (min-width: 861px) {
  :root {
    --container: 1180px;
    --radius-lg: 28px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(var(--container), calc(100% - 56px));
  }

  .section {
    padding: 78px 0;
  }

  .section-header {
    max-width: 840px;
    margin-bottom: 32px;
  }

  .section h2 {
    font-size: clamp(30px, 4.4vw, 50px);
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .site-header {
    backdrop-filter: blur(16px);
  }

  .header-row {
    min-height: 78px;
  }

  .site-header.is-scrolled .header-row {
    min-height: 70px;
  }

  .brand-logo {
    height: 36px;
  }

  .site-nav {
    gap: 6px;
    padding: 6px;
  }

  .site-nav a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero,
  .solutions-page-hero,
  .solution-article-hero {
    padding: 96px 0 52px;
  }

  .hero-layout {
    gap: 36px;
  }

  .hero-copy h2,
  .hero h1,
  .solutions-page-hero h1,
  .solution-article-hero h1 {
    font-size: clamp(44px, 6.2vw, 72px);
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions--metrics {
    grid-template-columns: repeat(3, minmax(0, 198px));
    gap: 12px;
  }

  .hero-metric-bar {
    min-height: 74px;
    padding: 13px 16px;
    border-radius: 18px;
  }

  .hero-metric-bar strong {
    font-size: 25px;
  }

  .hero-metric-bar span {
    font-size: 12.5px;
    line-height: 1.28;
  }

  #contour .section-header,
  #services .section-header,
  #managers .section-header,
  #contacts .section-header {
    margin-bottom: 30px;
  }

  .contour-grid {
    grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr 48px 1fr;
  }

  .contour-chip {
    min-height: 74px;
    padding: 0 14px;
    border-radius: 20px;
    font-size: 14px;
  }

  .contour-note {
    margin-top: 18px;
    max-width: 700px;
    font-size: 16px;
  }

  #news {
    padding: 62px 0;
  }

  .news-slider {
    gap: 14px;
  }

  .news-track {
    grid-auto-columns: minmax(252px, 324px);
    gap: 14px;
  }

  .news-card {
    padding: 16px;
    border-radius: 24px;
  }

  .news-card__media {
    height: 132px;
    margin: -2px -2px 13px;
    border-radius: 17px;
  }

  .news-card__date {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .news-card h3 {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .news-card p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.48;
  }

  .news-slider__button {
    width: 42px;
    height: 42px;
  }

  #services {
    padding: 62px 0;
  }

  #services .service-rows {
    border-radius: 26px;
  }

  .service-row {
    grid-template-columns: 78px minmax(190px, 0.9fr) minmax(260px, 1.1fr);
    gap: 16px;
    padding: 17px 0;
  }

  .service-row__index,
  .service-row__title {
    font-size: 21px;
  }

  .service-row__text {
    font-size: 14px;
    line-height: 1.5;
  }

  .darkband-grid {
    gap: 34px;
  }

  .darkband-items {
    gap: 12px;
  }

  .darkband-items article {
    padding: 18px 0;
  }

  .darkband-items strong {
    margin-bottom: 6px;
    font-size: 21px;
  }

  .leaders-grid {
    gap: 10px;
  }

  .leader-card {
    border-radius: 18px;
  }

  .leader-card__photo {
    height: 148px;
    max-height: 148px;
  }

  .leader-card__body {
    padding: 10px 10px 12px;
  }

  .leader-card__body h3 {
    font-size: 14.5px;
  }

  .leader-card__body p {
    font-size: 11.2px;
    line-height: 1.26;
  }

  .contact-grid {
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 20px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-list {
    gap: 16px;
  }

  .contact-list strong {
    font-size: 13px;
  }

  .contact-list a,
  .contact-list span {
    font-size: 15px;
  }

  .solutions-page-grid,
  .solution-article-grid {
    gap: 18px;
  }

  .solution-detail-card,
  .solution-article-card,
  .solution-price-card {
    gap: 14px;
    padding: 24px;
    border-radius: 24px;
  }

  .solution-detail-card h2,
  .solution-article-card h2,
  .solution-price-card h2 {
    font-size: clamp(25px, 3.5vw, 32px);
  }

  .solution-detail-card__tag {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .solution-registry-badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .solution-detail-list,
  .solution-article-list {
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
  }

  .solution-detail-link {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .solution-article-media {
    margin-top: 20px;
    border-radius: 24px;
  }

  .site-footer {
    padding: 22px 0 34px;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .leader-card__photo {
    height: 168px;
    max-height: 168px;
  }
}

/* Hero to contour bridge */
@media (min-width: 861px) {
  .hero {
    overflow: visible;
    padding-bottom: 0;
    z-index: 2;
  }

  .hero::after {
    bottom: -1px;
    height: 86px;
    background: transparent;
  }

  .hero-layout {
    position: relative;
    z-index: 3;
    padding-bottom: 34px;
  }

  .hero-actions--metrics {
    position: relative;
    z-index: 4;
    margin-top: 34px;
    margin-bottom: -58px;
  }

  .hero-metric-bar {
    min-height: 72px;
    border-radius: 16px;
    background:
      linear-gradient(180deg, #6c4779 0%, #553461 100%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
      0 6px 14px rgba(36, 16, 44, 0.08),
      inset 0 1px 0 rgba(255,255,255,0.1);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-metric-bar strong {
    color: rgba(255,255,255,0.92);
    font-weight: 600;
  }

  .hero-metric-bar span {
    color: rgba(255,255,255,0.68);
  }

  .hero-metric-bar:nth-child(2) {
    background:
      linear-gradient(180deg, #765082 0%, #5b3a66 100%);
  }

  .hero-metric-bar:nth-child(3) {
    background:
      linear-gradient(180deg, #87577d 0%, #663b68 100%);
  }

  #contour {
    padding-top: 118px;
    z-index: 1;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .hero-actions--metrics {
    margin-bottom: -44px;
  }

  #contour {
    padding-top: 104px;
  }
}

@media (max-width: 860px) {
  .hero {
    overflow: clip;
  }

  .hero-actions--metrics {
    position: static;
    margin-bottom: 0;
  }
}

/* Hero title vertical balance */
@media (min-width: 861px) {
  .hero-copy > .eyebrow--light {
    position: relative;
    top: -12px;
    margin-bottom: 28px;
  }

  .hero-copy h2 {
    position: relative;
    top: -18px;
  }

  .hero-layout {
    padding-bottom: 46px;
  }

  .hero-actions--metrics {
    margin-top: 52px;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .hero-copy > .eyebrow--light {
    top: -8px;
    margin-bottom: 22px;
  }

  .hero-copy h2 {
    top: -10px;
  }

  .hero-actions--metrics {
    margin-top: 42px;
  }
}

@media (max-width: 860px) {
  .hero-copy > .eyebrow--light {
    top: auto;
    margin-bottom: 14px;
  }

  .hero-copy h2 {
    top: auto;
  }
}

/* Solutions page hero vertical balance */
@media (min-width: 861px) {
  .solutions-page-hero__inner {
    top: -26px;
  }
}

@media (max-width: 860px) {
  .solutions-page-hero__inner {
    top: -10px;
  }
}

/* Solutions page overlap transition */
@media (min-width: 861px) {
  .solutions-page-hero {
    overflow: visible;
    z-index: 2;
  }

  .solutions-page-hero::after {
    inset: auto 0 -1px;
    height: 72px;
    background: linear-gradient(180deg, rgba(250, 247, 253, 0), rgba(250, 247, 253, 0.92));
    background-size: auto;
    pointer-events: none;
  }

  #solutions-list.solutions-page {
    padding-top: 0;
    background:
      radial-gradient(circle at 14% 8%, rgba(182, 79, 120, 0.055), transparent 22%),
      radial-gradient(circle at 88% 18%, rgba(236, 140, 95, 0.055), transparent 18%),
      linear-gradient(180deg, #faf7fd 0%, #fffaf7 100%);
    z-index: 3;
  }

  #solutions-list .solutions-page-grid {
    position: relative;
    z-index: 4;
    transform: translateY(-64px);
    margin-bottom: -64px;
  }

  #solutions-list .solution-detail-card {
    box-shadow: 0 18px 46px rgba(52, 29, 54, 0.09);
  }

  .solutions-page .solution-detail-card:hover {
    box-shadow: 0 18px 46px rgba(52, 29, 54, 0.09);
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  #solutions-list .solutions-page-grid {
    transform: translateY(-48px);
    margin-bottom: -48px;
  }
}

@media (max-width: 860px) {
  #solutions-list.solutions-page {
    padding-top: 44px;
  }
}


/* =========================================================
   Header/Hero smooth transition only
   - does not change logo size/position
   - does not change menu size/position
   - does not change menu animation
   ========================================================= */

.site-header {
  overflow: visible;
}

.site-header:not(.is-scrolled) {
  background:
    radial-gradient(circle at 78% 26%, rgba(191, 120, 255, 0.20), transparent 18%),
    radial-gradient(circle at 92% 48%, rgba(255, 154, 104, 0.18), transparent 22%),
    linear-gradient(124deg, #0a0d19 0%, #291848 34%, #4a267d 58%, #d54d7b 82%, #ff9c42 100%);
  border-bottom-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: none;
}

.site-header:not(.is-scrolled)::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(52vw, 720px);
  height: 96px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,253,0.96));
  border-bottom-right-radius: 220px 96px;
  box-shadow:
    18px 0 46px rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(16,31,59,0.04);
  pointer-events: none;
  z-index: 0;
}

.site-header:not(.is-scrolled)::after {
  content: "";
  position: absolute;
  top: 0;
  left: min(38vw, 560px);
  width: min(22vw, 300px);
  height: 96px;
  background: linear-gradient(90deg, rgba(246,248,253,0.80), rgba(246,248,253,0.00));
  clip-path: ellipse(78% 88% at 0% 0%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.site-header:not(.is-scrolled) .header-row {
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .site-header:not(.is-scrolled)::before,
  .site-header:not(.is-scrolled)::after {
    display: none;
  }

  .site-header:not(.is-scrolled) {
    background: rgba(246, 250, 255, 0.92);
    backdrop-filter: blur(22px);
  }
}


/* =========================================================
   LAST VISUAL PATCH
   Full-site archive. Keeps all site files.
   Does not change logo/menu sizes, layout or menu animation.
   Main hero gradient is preserved; it is only visually extended upward.
   ========================================================= */

@media (min-width: 861px) {
  body:has(#hero) .site-header:not(.is-scrolled) {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body:has(#hero) #hero.hero {
    margin-top: -88px !important;
    padding-top: 214px !important;
  }

  body:has(#hero) .site-header:not(.is-scrolled)::after {
    background: linear-gradient(90deg, rgba(246,248,253,0.50), rgba(246,248,253,0.00)) !important;
    filter: blur(24px) !important;
    opacity: 0.72 !important;
  }

  body:has(#hero) .site-header:not(.is-scrolled) .header-row {
    position: relative;
    z-index: 2;
  }

  /* move only decorative light/circle layers slightly lower */
  body:has(#hero) .hero::before {
    transform: translateY(60px);
  }

  body:has(#hero) .hero-gradient {
    transform: translateY(42px);
  }
}


/* Hero light spot placement */
.hero::before {
    transform: translateY(40px) !important;
}



.hero::before {
    transform: translateY(80px) !important;
}

/* Header logo variant 1.1: balanced soft shape */
@media (min-width: 861px) {
  body:has(#hero) .site-header:not(.is-scrolled)::before {
    width: min(44vw, 610px) !important;
    height: 77px !important;
    border-radius: 0 !important;
    border-bottom-right-radius: 180px 77px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,253,0.96)) !important;
    box-shadow:
      18px 0 46px rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(16,31,59,0.04) !important;
  }

  body:has(#hero) .site-header:not(.is-scrolled)::after {
    left: min(33vw, 490px) !important;
    width: min(19vw, 260px) !important;
    height: 77px !important;
    opacity: 0.58 !important;
  }
}

/* Solutions page: index-aligned hero and solid cards */
@media (min-width: 861px) {
  .solutions-page-hero {
    overflow: visible;
    padding-bottom: 154px !important;
    background:
      radial-gradient(circle at 20% 24%, rgba(255, 171, 121, 0.16), transparent 22%),
      radial-gradient(circle at 62% 34%, rgba(255,255,255,0.06), transparent 14%),
      radial-gradient(circle at 80% 18%, rgba(191, 120, 255, 0.2), transparent 20%),
      radial-gradient(circle at 88% 62%, rgba(255, 211, 92, 0.12), transparent 18%),
      radial-gradient(circle at 16% 18%, rgba(255, 126, 103, 0.2), transparent 18%),
      radial-gradient(circle at 74% 16%, rgba(162, 114, 255, 0.22), transparent 22%),
      radial-gradient(circle at 90% 54%, rgba(255, 204, 98, 0.16), transparent 20%),
      linear-gradient(124deg, #0a0d19 0%, #291848 24%, #4a267d 46%, #d54d7b 74%, #ff9c42 100%) !important;
  }

  .solutions-page-hero::before {
    background:
      radial-gradient(circle at center, rgba(255, 177, 119, 0.2), rgba(184, 103, 255, 0.1) 42%, transparent 70%) !important;
    box-shadow:
      0 0 0 32px rgba(255, 152, 96, 0.04),
      0 0 150px rgba(255, 113, 140, 0.2) !important;
  }

  .solutions-page-hero::after {
    inset: auto 0 -1px !important;
    height: 130px !important;
    background: linear-gradient(180deg, rgba(250, 247, 253, 0), #fbf7fb 82%, #fbf7fb 100%) !important;
    background-size: auto !important;
  }

  #solutions-list.solutions-page {
    padding-top: 34px !important;
    background:
      radial-gradient(circle at 14% 8%, rgba(182, 79, 120, 0.04), transparent 22%),
      radial-gradient(circle at 88% 18%, rgba(236, 140, 95, 0.04), transparent 18%),
      linear-gradient(180deg, #fbf7fb 0%, #fffaf7 100%) !important;
  }

  #solutions-list .solutions-page-grid {
    transform: translateY(-72px) !important;
    margin-bottom: -72px !important;
  }

  #solutions-list .solution-detail-card {
    background: #fffaf8 !important;
    border-color: rgba(113, 68, 105, 0.12) !important;
    box-shadow: 0 18px 46px rgba(52, 29, 54, 0.09) !important;
  }

  #solutions-list .solution-detail-card:hover {
    background: #fffaf8 !important;
    box-shadow: 0 18px 46px rgba(52, 29, 54, 0.09) !important;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .solutions-page-hero {
    padding-bottom: 126px !important;
  }

  #solutions-list .solutions-page-grid {
    transform: translateY(-54px) !important;
    margin-bottom: -54px !important;
  }
}

@media (max-width: 860px) {
  #solutions-list .solution-detail-card {
    background: #fffaf8 !important;
  }
}

/* Solutions page wave lines */
.solutions-page-hero .solutions-agro-flow {
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}

.solutions-page-hero .solutions-agro-flow path {
  stroke: rgba(255, 214, 176, 0.24);
  stroke-dasharray: none;
}

.solutions-page-hero .solutions-page-hero__inner {
  z-index: 2;
}

/* Solutions page: seamless header continuation like index */
@media (min-width: 861px) {
  body:has(#solutions-page-hero) .site-header:not(.is-scrolled) {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body:has(#solutions-page-hero) .site-header:not(.is-scrolled) .header-row {
    position: relative;
    z-index: 2;
  }

  body:has(#solutions-page-hero) .site-header:not(.is-scrolled)::before {
    width: min(44vw, 610px) !important;
    height: 77px !important;
    border-radius: 0 !important;
    border-bottom-right-radius: 180px 77px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,253,0.96)) !important;
    box-shadow:
      18px 0 46px rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(16,31,59,0.04) !important;
  }

  body:has(#solutions-page-hero) .site-header:not(.is-scrolled)::after {
    left: min(33vw, 490px) !important;
    width: min(19vw, 260px) !important;
    height: 77px !important;
    background: linear-gradient(90deg, rgba(246,248,253,0.50), rgba(246,248,253,0.00)) !important;
    filter: blur(24px) !important;
    opacity: 0.58 !important;
  }

body:has(#solutions-page-hero) #solutions-page-hero.solutions-page-hero {
    margin-top: -88px !important;
    padding-top: 214px !important;
  }
}

/* Solution article pages: match solutions hero/header treatment */
@media (min-width: 861px) {
  body:has(.solution-article-hero) .site-header:not(.is-scrolled) {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body:has(.solution-article-hero) .site-header:not(.is-scrolled) .header-row {
    position: relative;
    z-index: 2;
  }

  body:has(.solution-article-hero) .site-header:not(.is-scrolled)::before {
    width: min(44vw, 610px) !important;
    height: 77px !important;
    border-radius: 0 !important;
    border-bottom-right-radius: 180px 77px !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,253,0.96)) !important;
    box-shadow:
      18px 0 46px rgba(255,255,255,0.20),
      inset 0 -1px 0 rgba(16,31,59,0.04) !important;
  }

  body:has(.solution-article-hero) .site-header:not(.is-scrolled)::after {
    left: min(33vw, 490px) !important;
    width: min(19vw, 260px) !important;
    height: 77px !important;
    background: linear-gradient(90deg, rgba(246,248,253,0.50), rgba(246,248,253,0.00)) !important;
    filter: blur(24px) !important;
    opacity: 0.58 !important;
  }

  .solution-article-hero {
    margin-top: -88px !important;
    padding-top: 214px !important;
    overflow: visible !important;
  }

  .solution-article-hero::after {
    inset: auto 0 -1px !important;
    height: 130px !important;
    background: linear-gradient(180deg, rgba(250, 247, 253, 0), #fbf7fb 82%, #fbf7fb 100%) !important;
    background-size: auto !important;
    mask-image: none !important;
    pointer-events: none;
    z-index: 1;
  }

  .solution-article-hero .solutions-agro-flow {
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
  }

  .solution-article-hero .solutions-agro-flow path {
    stroke: rgba(255, 214, 176, 0.24);
    stroke-dasharray: none;
  }

  .solution-article-hero .solution-article-hero__inner {
    z-index: 2;
  }
}

/* News detail page */
.news-detail-hero__inner {
  max-width: 1040px;
}

.news-detail-card {
  max-width: 960px;
  margin: 0 auto;
}

.news-detail-card h2 {
  max-width: 860px;
}

.news-detail-lead {
  max-width: 820px;
  color: #30263a;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.news-detail-media {
  min-height: clamp(240px, 34vw, 420px);
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.10);
}

.news-detail-content {
  display: grid;
  gap: 16px;
  max-width: 820px;
  color: #625768;
  font-size: 18px;
  line-height: 1.7;
}

.news-detail-content p {
  margin: 0;
}

@media (max-width: 860px) {
  .news-detail-content {
    font-size: 16px;
    line-height: 1.62;
  }

  .news-detail-media {
    min-height: 220px;
    border-radius: 22px;
  }
}

/* Additional news imagery */
.news_06032024 {
  background-image:
    linear-gradient(180deg, rgba(16, 44, 80, 0.08), rgba(16, 44, 80, 0.34)),
    url("images/news/news_06032024.jpg");
  background-position: center 24%;
}

.news_29062023 {
  background-image:
    linear-gradient(180deg, rgba(48, 24, 52, 0.08), rgba(48, 24, 52, 0.38)),
    url("images/news/news_29062023.jpg");
  background-position: center 18%;
}

.news_20062023 {
  background-image:
    linear-gradient(180deg, rgba(95, 42, 103, 0.08), rgba(95, 42, 103, 0.36)),
    url("images/news/news_20062023.png");
  background-position: center 28%;
}

.news_08022023 {
  background-image:
    linear-gradient(180deg, rgba(12, 30, 72, 0.08), rgba(12, 30, 72, 0.4)),
    url("images/news/news_08022023.jpg");
  background-position: center 22%;
}

.news_12012023 {
  background-image:
    linear-gradient(180deg, rgba(14, 36, 80, 0.08), rgba(14, 36, 80, 0.38)),
    url("images/news/news_12012023.jpg");
  background-position: center 18%;
}

.news_14122022 {
  background-image:
    linear-gradient(180deg, rgba(86, 42, 95, 0.08), rgba(86, 42, 95, 0.38)),
    url("images/news/news_14122022.jpg");
  background-position: center 30%;
}

.news_17112022 {
  background-image:
    linear-gradient(180deg, rgba(64, 36, 69, 0.08), rgba(64, 36, 69, 0.38)),
    url("images/news/news_17112022.png");
  background-position: center 20%;
}

.news_14102022 {
  background-image:
    linear-gradient(180deg, rgba(16, 44, 80, 0.08), rgba(16, 44, 80, 0.36)),
    url("images/news/news_14102022.jpg");
  background-position: center 24%;
}

/* Legal pages */
.legal-card {
  max-width: 1040px;
}

.legal-content h3,
.legal-panel h3 {
  margin: 8px 0 0;
  color: #241c2d;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.legal-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(113, 68, 105, 0.10);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(250,244,249,0.72));
}

.legal-panel p {
  margin: 0;
  color: #625768;
  line-height: 1.62;
}

/* Service detail pages */
.service-detail-card {
  max-width: 1080px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.service-detail-card h3 {
  margin: 10px 0 0;
  color: #241c2d;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.service-aside-card,
.its-banner {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(113, 68, 105, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,244,249,0.82));
  box-shadow: 0 16px 42px rgba(52, 29, 54, 0.07);
}

.service-aside-card strong,
.its-banner strong {
  color: #241c2d;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-aside-card p,
.its-banner em {
  margin: 0;
  color: #625768;
  font-style: normal;
  line-height: 1.62;
}

.its-banner {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at 84% 20%, rgba(236, 140, 95, 0.24), transparent 28%),
    linear-gradient(135deg, #fffaf8 0%, #f5e9f2 48%, #fff1e9 100%);
}

.its-banner span {
  display: inline-flex;
  width: fit-content;
  min-width: 58px;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #24123d 0%, #8e365f 58%, #d97848 100%);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.04em;
}

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

.product-grid a {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(113, 68, 105, 0.10);
  background:
    radial-gradient(circle at 86% 18%, rgba(236, 140, 95, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,244,249,0.82));
  color: #241c2d;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(52, 29, 54, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(52, 29, 54, 0.10);
}

.product-grid span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #24123d 0%, #8e365f 58%, #d97848 100%);
  color: #fff;
  font-weight: 800;
}

.product-grid strong {
  align-self: end;
  font-size: 17px;
  line-height: 1.18;
}

/* Service pages refinement */
.service-detail .container {
  max-width: 1120px;
}

.service-detail-card {
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
}

.service-detail-card > .eyebrow {
  margin-bottom: -10px;
}

.service-detail-card h2 {
  max-width: 900px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.service-detail-card .news-detail-lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.service-detail-grid {
  gap: clamp(20px, 3vw, 34px);
}

.service-detail-grid--intro {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.service-list,
.service-detail .solution-article-list {
  gap: 10px;
  color: #625768;
  line-height: 1.62;
}

.service-detail .solution-article-list li::marker {
  color: #b64f78;
}

.service-section-title {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.service-section-title h3 {
  margin: 0;
  max-width: 760px;
}

.service-aside-card,
.its-banner {
  align-content: start;
  min-height: 100%;
}

.its-banner {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
}

.its-banner::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.72), transparent 68%);
  pointer-events: none;
}

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

.product-grid a {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 20px;
}

.product-grid a::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -32px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(236, 140, 95, 0.09);
}

.product-grid span {
  position: relative;
  z-index: 1;
}

.product-grid strong {
  position: relative;
  z-index: 1;
  max-width: 240px;
  font-size: 18px;
}

.service-detail .solution-article-actions {
  margin-top: 0;
}

@media (max-width: 860px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .product-grid a {
    min-height: 128px;
  }
}

/* 1C service page refinement */
.product-grid--1c {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-grid--1c a {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 14px 16px;
  border: 1.5px solid rgb(255, 221, 0);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(52, 29, 54, 0.035);
}

.product-grid--1c a::before,
.product-grid--1c a::after {
  content: none;
}

.product-grid--1c strong {
  align-self: center;
  max-width: none;
  color: #241c2d;
  font-size: 14px;
  line-height: 1.24;
  letter-spacing: -0.018em;
}

.product-grid--1c a:hover {
  transform: translateY(-1px);
  border-color: rgb(255, 221, 0);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px rgba(128, 96, 0, 0.075);
}

.one-c-partner {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  width: 100%;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(216, 0, 0, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 221, 0, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fffaf0 52%, #fff3c7 100%);
  color: #1f1830;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(128, 96, 0, 0.09);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.one-c-partner:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 0, 0, 0.22);
  box-shadow: 0 20px 46px rgba(128, 96, 0, 0.13);
}

.one-c-partner__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(216, 0, 0, 0.08);
  overflow: hidden;
}

.one-c-partner__logo img {
  display: block;
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.one-c-partner__content {
  display: grid;
  gap: 7px;
}

.one-c-partner__content .eyebrow {
  margin: 0;
  color: #b23964;
}

.one-c-partner__content strong {
  max-width: 820px;
  color: #161122;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.one-c-partner__content em {
  color: rgba(31, 24, 48, 0.62);
  font-size: 14px;
  font-style: normal;
}

.its-banner {
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
  width: 100%;
  min-height: 128px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 98% 0%, rgba(255,255,255,0.5), transparent 24%),
    linear-gradient(180deg, #fffdf0 0%, #fff1a8 46%, rgb(255, 221, 0) 100%);
  box-shadow: 0 18px 44px rgba(128, 96, 0, 0.16);
}

.its-banner::after {
  display: none;
}

.its-banner img {
  display: block;
  width: min(108px, 100%);
  height: auto;
}

.its-banner span {
  display: grid;
  gap: 9px;
  padding: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.its-banner strong {
  color: #101722;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.its-banner em {
  max-width: 920px;
  color: rgba(16, 23, 34, 0.68);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.52;
}

.service-detail-card--standard {
  gap: clamp(20px, 2.6vw, 30px);
  padding: clamp(30px, 4vw, 46px);
}

.service-detail-card--standard h2 {
  max-width: 840px;
  color: #21172f;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.service-lead-panel {
  max-width: 900px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(178, 75, 118, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 70, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(250,244,249,0.78));
  color: #5d5265;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
}

.service-detail-card--standard .news-detail-content.service-lead-panel {
  gap: 12px;
}

.service-detail-grid--balanced {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: stretch;
  gap: clamp(18px, 2.6vw, 28px);
}

.service-content-panel,
.service-aside-card--calm {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(45, 31, 61, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,246,250,0.86));
  box-shadow: 0 16px 36px rgba(40, 27, 56, 0.06);
}

.service-content-panel--accent,
.service-aside-card--calm {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 221, 0, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(249,242,247,0.86));
}

.service-detail-card--standard h3,
.service-aside-card--calm strong {
  margin: 0;
  color: #21172f;
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.service-detail-card--standard .solution-article-list {
  margin: 0;
  gap: 9px;
  color: #615668;
  font-size: 15.5px;
  line-height: 1.58;
}

.service-detail-card--standard .solution-article-list li {
  padding-left: 2px;
}

.service-detail-card--standard .solution-article-list li::marker {
  color: #b64f78;
  font-weight: 700;
}

.service-aside-card--calm p {
  color: #625768;
  font-size: 15.5px;
  line-height: 1.62;
}

.service-detail-card--standard .solution-article-actions {
  padding-top: 2px;
}

.solution-summary-panel {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(182, 79, 120, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 70, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(250,244,249,0.86));
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.07);
}

.solution-summary-panel .eyebrow {
  margin: 0;
  color: #b64f78;
}

.solution-summary-panel p {
  max-width: 860px;
  margin: 0;
  color: #55495e;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
}

#managers .leaders-grid {
  grid-template-columns: repeat(5, minmax(0, 210px));
  justify-content: center;
  gap: 14px;
}

#managers .leader-card__photo {
  height: 178px;
  max-height: 178px;
  background-size: 100% 100%, var(--leader-photo-size, 100% auto);
  background-position: center, var(--leader-photo-position, center 18%);
}

#managers .leader-card__photo--np,
#managers .leader-card__photo--rg {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center top;
}

#managers .leader-card__photo--shelestova {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center center;
}

#managers .leader-card__photo--karpenko {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 18%;
}

#managers .leader-card__photo--civilev {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 16%;
}

#managers .leader-card__photo--hitrov {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 14%;
}

#managers .leader-card__photo--goncharenko {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 14%;
}

#managers .leader-card__photo--anosov {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 16%;
}

#managers .leader-card__photo--konev {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 15%;
}

#managers .leader-card__photo--glushenkova {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 16%;
}

#managers .leader-card__photo--fomicheva {
  --leader-photo-size: 100% auto;
  --leader-photo-position: center 14%;
}

#managers .leader-card__photo--nophoto {
  --leader-photo-size: 88% auto;
  --leader-photo-position: center center;
}

@media (max-width: 1120px) {
  #managers .leaders-grid {
    grid-template-columns: repeat(3, minmax(0, 210px));
  }
}

@media (max-width: 760px) {
  #managers .leaders-grid {
    grid-template-columns: minmax(0, 260px);
  }

  #managers .leader-card__photo {
    height: 212px;
    max-height: 212px;
  }
}

/* Refined solutions typography and spacing */
.solutions-page-hero,
.solution-article-hero {
  min-height: clamp(360px, 40vw, 520px);
}

.solutions-page-hero__inner,
.solution-article-hero__inner {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: clamp(260px, 31vw, 390px);
}

.solutions-page-hero h1,
.solution-article-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.062em;
}

.solutions-page {
  padding-top: clamp(54px, 6vw, 82px);
}

.solutions-page-grid {
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.solutions-page .solution-detail-card {
  gap: 14px;
  min-height: 100%;
  padding: clamp(24px, 2.7vw, 32px);
  border-radius: 26px;
}

.solution-detail-card__tag {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 15px;
}

.solution-detail-card h2 {
  margin: 0;
  color: #22172e;
  font-size: clamp(23px, 2.3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.052em;
}

.solution-detail-card p {
  margin: 0;
  max-width: 620px;
  color: #5e5365;
  font-size: 15.5px;
  line-height: 1.58;
}

.solution-registry-badge {
  min-height: 30px;
  padding: 0 11px;
  font-size: 11px;
  letter-spacing: 0.015em;
}

.solution-detail-list {
  gap: 8px;
  padding-left: 18px;
  color: #6d6171;
  font-size: 14.5px;
  line-height: 1.5;
}

.solution-detail-list li::marker {
  color: #b64f78;
}

.solution-detail-links {
  padding-top: 4px;
}

.solution-article {
  padding-top: clamp(54px, 6vw, 84px);
}

.solution-article .container {
  max-width: 1160px;
}

.solution-summary-panel {
  max-width: 1040px;
  margin-bottom: clamp(18px, 2vw, 26px);
  padding: clamp(20px, 2.5vw, 30px);
  border-radius: 24px;
}

.solution-summary-panel p {
  max-width: 920px;
  font-size: clamp(15.5px, 1.12vw, 17px);
  line-height: 1.62;
}

.solution-article-grid {
  gap: clamp(18px, 2.2vw, 26px);
}

.solution-article-card,
.solution-price-card {
  gap: 14px;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: 26px;
}

.solution-article-card h2,
.solution-price-card h2 {
  color: #22172e;
  font-size: clamp(23px, 2.3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.052em;
}

.solution-article-list {
  gap: 9px;
  padding-left: 18px;
  color: #6a5e6f;
  font-size: 15.5px;
  line-height: 1.56;
}

.solution-article-list li {
  padding-left: 2px;
}

.solution-article-list li::marker {
  color: #b64f78;
  font-weight: 700;
}

.solution-article-actions {
  gap: 10px;
  margin-top: clamp(20px, 2.4vw, 30px);
}

.solution-detail-link {
  min-height: 44px;
  padding: 0 17px;
  font-size: 14px;
}

.solution-price-card {
  margin-top: clamp(22px, 2.8vw, 34px);
}

.solution-price-card .eyebrow {
  margin: 0;
}

.solution-price-card p {
  margin: 0;
  max-width: 760px;
  color: #5e5365;
  font-size: 16px;
  line-height: 1.6;
}

.solution-article-media {
  margin-top: clamp(22px, 2.8vw, 34px);
  border-radius: 24px;
}

#labs-contacts,
#integration-contacts,
#techcenter-contacts,
#kub-contacts {
  padding-top: clamp(58px, 6vw, 84px);
}

#labs-contacts .contact-grid,
#integration-contacts .contact-grid,
#techcenter-contacts .contact-grid,
#kub-contacts .contact-grid {
  align-items: stretch;
}

@media (max-width: 860px) {
  .solutions-page-hero,
  .solution-article-hero {
    min-height: 340px;
  }

  .solutions-page-hero__inner,
  .solution-article-hero__inner {
    min-height: 240px;
  }

  .solutions-page-hero h1,
  .solution-article-hero h1 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .solution-article-grid,
  .solutions-page-grid {
    grid-template-columns: 1fr;
  }

  .solution-detail-card h2,
  .solution-article-card h2,
  .solution-price-card h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
}

@media (max-width: 1120px) {
  .product-grid--1c {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .service-detail-grid--balanced {
    grid-template-columns: 1fr;
  }

  .service-detail-card--standard h2 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .product-grid--1c {
    grid-template-columns: 1fr;
  }

  .one-c-partner {
    grid-template-columns: 1fr;
  }

  .one-c-partner__logo {
    justify-content: flex-start;
    max-width: 180px;
  }

  .its-banner {
    grid-template-columns: 1fr;
  }

  .its-banner img {
    width: 104px;
  }
}

/* Return solution and service hero height to the previous compact scale. */
.solutions-page-hero,
.solution-article-hero {
  min-height: initial;
}

.solutions-page-hero__inner,
.solution-article-hero__inner {
  min-height: initial;
  align-content: initial;
}

@media (max-width: 860px) {
  .solutions-page-hero,
  .solution-article-hero,
  .solutions-page-hero__inner,
  .solution-article-hero__inner {
    min-height: initial;
  }
}

/* Keep team cards visually even regardless of title length. */
#managers .leaders-grid {
  align-items: stretch;
}

#managers .leader-card {
  display: grid;
  grid-template-rows: 178px minmax(96px, 1fr);
  height: 274px;
}

#managers .leader-card__photo {
  height: 178px;
  max-height: 178px;
}

#managers .leader-card__body {
  align-content: start;
  min-height: 96px;
  padding: 12px 12px 14px;
}

#managers .leader-card__body h3 {
  min-height: 38px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#managers .leader-card__body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 760px) {
  #managers .leader-card {
    grid-template-rows: 212px minmax(98px, 1fr);
    height: 310px;
  }

  #managers .leader-card__photo {
    height: 212px;
    max-height: 212px;
  }
}

/* Team hierarchy rows */
#managers .leaders-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: 34px;
}

#managers .leaders-tier {
  display: grid;
  justify-content: start;
  gap: 14px;
}

#managers .leaders-tier--executive {
  grid-template-columns: repeat(3, minmax(0, 210px));
}

#managers .leaders-tier--departments {
  grid-template-columns: repeat(4, minmax(0, 210px));
}

#managers .leaders-tier--centers {
  grid-template-columns: repeat(4, minmax(0, 210px));
}

#managers .leaders-tier--partners {
  grid-template-columns: repeat(5, minmax(0, 210px));
}

@media (max-width: 1120px) {
  #managers .leaders-tier {
    grid-template-columns: repeat(auto-fit, minmax(190px, 210px));
  }
}

@media (max-width: 760px) {
  #managers .leaders-grid {
    gap: 22px;
  }

  #managers .leaders-tier {
    grid-template-columns: minmax(0, 260px);
  }
}

/* Service detail pages: compact hero and clearer title rhythm. */
body[data-page="service-detail"] .solution-article-hero {
  padding-bottom: 44px !important;
}

body[data-page="service-detail"] .solution-article-hero__inner {
  gap: 12px;
}

body[data-page="service-detail"] .solution-article {
  padding-top: clamp(28px, 3.2vw, 42px);
}

body[data-page="service-detail"] .service-detail-card--standard {
  gap: clamp(18px, 2.2vw, 26px);
}

body[data-page="service-detail"] .service-detail-card {
  gap: clamp(18px, 2.2vw, 26px);
}

body[data-page="service-detail"] .service-detail-card > .eyebrow {
  margin-bottom: 0;
}

body[data-page="service-detail"] .service-detail-card h2 {
  margin-top: 6px;
  max-width: 840px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

body[data-page="service-detail"] .service-detail-card--standard > .eyebrow {
  margin-bottom: 0;
}

body[data-page="service-detail"] .service-detail-card--standard h2 {
  margin-top: 6px;
}

body[data-page="service-detail"] .service-lead-panel {
  margin-top: 2px;
}

body[data-page="service-detail"] .service-detail .solution-article-list {
  font-size: 15.5px;
  line-height: 1.58;
}

body[data-page="service-detail"] .service-section-title h3 {
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

/* News detail pages should read calmer than hero/product pages. */
body[data-page="news-detail"] .solution-article-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.058em;
}

body[data-page="news-detail"] .news-detail-card {
  max-width: 900px;
  gap: clamp(18px, 2.2vw, 26px);
}

body[data-page="news-detail"] .news-detail-card h2 {
  max-width: 780px;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.048em;
}

body[data-page="news-detail"] .news-detail-lead {
  max-width: 760px;
  color: #4f4358;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.58;
  letter-spacing: -0.018em;
}

body[data-page="news-detail"] .news-detail-content {
  max-width: 760px;
  gap: 13px;
  color: #625768;
  font-size: 15.5px;
  line-height: 1.62;
}

body[data-page="news-detail"] .news-detail-media {
  min-height: clamp(220px, 30vw, 360px);
  border-radius: 24px;
}

@media (max-width: 860px) {
  body[data-page="news-detail"] .solution-article-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

body[data-page="news-detail"] .news-detail-content {
    font-size: 15px;
  }
}

/* Solutions preview: Split */
.solutions-preview--split {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 138, 70, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf7fb 0%, #fff8f1 100%);
}

.solutions-preview__head {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-bottom: 34px;
}

.solutions-preview__head .eyebrow {
  margin: 0;
  color: #b64f78;
}

.solutions-preview__head h2 {
  color: #21172f;
}

.solutions-preview__cards {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.solution-product {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(113, 68, 105, 0.12);
  box-shadow: 0 24px 68px rgba(52, 29, 54, 0.10);
}

.solution-product--lab {
  background: linear-gradient(135deg, #ffffff 0%, #fff3ea 100%);
}

.solution-product--mobile {
  background: linear-gradient(135deg, #261734 0%, #8c3e68 60%, #e38355 100%);
  color: #ffffff;
}

.product-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 430px;
}

.product-copy span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(182, 79, 120, 0.12);
  color: #9a3f64;
  font-weight: 800;
}

.solution-product--mobile .product-copy span {
  background: rgba(255,255,255,0.16);
  color: #fff4ec;
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.product-copy p {
  max-width: 360px;
  color: inherit;
  opacity: 0.72;
  font-size: 16px;
}

/* Split with real product images: editorial framed */
.solutions-preview__cards {
  align-items: stretch;
}

.solution-product {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-height: 390px;
  padding: clamp(22px, 2.4vw, 30px);
}

.product-copy {
  max-width: 560px;
}

.product-copy h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.product-copy p {
  font-size: 15px;
  line-height: 1.55;
}

.product-image {
  position: relative;
  z-index: 1;
  align-self: end;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(113, 68, 105, 0.10);
  box-shadow: 0 22px 58px rgba(52, 29, 54, 0.14);
}

.solution-product--mobile .product-image {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image--lab {
  height: 190px;
}

.product-image--mobile {
  width: min(64%, 210px);
  height: 245px;
  justify-self: center;
  border-radius: 34px;
}

.solution-product--mobile .product-copy p {
  opacity: 0.78;
}

.solution-product--mobile {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 221, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #261734 0%, #8c3e68 60%, #e38355 100%);
}

@media (max-width: 900px) {
  .solutions-preview__cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile TOiR variant: full-height portrait panel */
.solution-product--mobile {
  display: flex;
  align-items: center;
  min-height: 390px;
  padding: clamp(26px, 3vw, 38px);
}

.solution-product--mobile .product-copy {
  position: relative;
  z-index: 3;
  max-width: 43%;
}

.solution-product--mobile .product-image--mobile {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  justify-self: auto;
  border-radius: 0 34px 34px 0;
  border: 0;
  box-shadow: none;
}

.solution-product--mobile .product-image--mobile img {
  object-position: 62% center;
}

.solution-product--mobile::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(38, 23, 52, 0.98) 0%, rgba(38, 23, 52, 0.9) 42%, rgba(38, 23, 52, 0.18) 62%, transparent 100%);
}

@media (max-width: 760px) {
  .solution-product--mobile {
    display: grid;
    min-height: auto;
  }

  .solution-product--mobile .product-copy {
    max-width: 100%;
  }

  .solution-product--mobile .product-image--mobile {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    border-radius: 28px;
  }
}

/* Editorial product panels: unified photo cards */
.solution-product--lab,
.solution-product--mobile {
  display: flex;
  align-items: center;
  min-height: 390px;
  padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
}

.solution-product--lab {
  background:
    radial-gradient(circle at 18% 14%, rgba(240, 166, 93, 0.15), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(185, 82, 126, 0.18), transparent 25%),
    linear-gradient(135deg, #16111d 0%, #2a1a34 34%, #573050 68%, #9a4b58 100%);
  color: #fff;
}

.solution-product--mobile {
  background:
    radial-gradient(circle at 16% 18%, rgba(240, 166, 93, 0.24), transparent 25%),
    radial-gradient(circle at 82% 16%, rgba(185, 82, 126, 0.28), transparent 26%),
    radial-gradient(circle at 88% 84%, rgba(236, 140, 95, 0.18), transparent 24%),
    linear-gradient(135deg, #22162c 0%, #392045 28%, #6c315f 62%, #b6555a 100%);
}

.solution-product--lab .product-copy,
.solution-product--mobile .product-copy {
  position: relative;
  z-index: 4;
  max-width: 44%;
  color: #fff;
}

.solution-product--lab .product-copy h3,
.solution-product--mobile .product-copy h3 {
  color: #fff;
}

.solution-product--lab .product-copy p,
.solution-product--mobile .product-copy p {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.solution-product--lab .product-image--lab,
.solution-product--mobile .product-image--mobile {
  position: absolute;
  inset: 0 0 0 auto;
  height: 100%;
  justify-self: auto;
  border: 0;
  box-shadow: none;
}

.solution-product--lab .product-image--lab {
  left: 0;
  width: 100%;
  border-radius: 34px;
}

.solution-product--mobile .product-image--mobile {
  width: 58%;
  border-radius: 0 34px 34px 0;
}

.solution-product--lab .product-image--lab img {
  object-position: center center;
}

.solution-product--mobile .product-image--mobile img {
  object-position: 62% center;
}

.solution-product--lab::after,
.solution-product--mobile::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.solution-product--lab::after {
  background:
    linear-gradient(90deg, rgba(17, 16, 25, 0.92) 0%, rgba(33, 23, 42, 0.78) 40%, rgba(59, 33, 63, 0.42) 62%, rgba(117, 53, 85, 0.16) 100%),
    radial-gradient(circle at 18% 18%, rgba(240, 166, 93, 0.12), transparent 34%);
}

.solution-product--mobile::after {
  background: linear-gradient(90deg, rgba(34, 22, 44, 0.84) 0%, rgba(57, 32, 69, 0.64) 40%, rgba(108, 49, 95, 0.28) 62%, rgba(182, 85, 90, 0.04) 100%);
}

.solutions-preview__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 36px);
}

.solutions-preview__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 166, 93, 0.22), transparent 30%),
    linear-gradient(135deg, #21172a 0%, #753555 58%, #b6555a 100%);
  box-shadow: 0 16px 38px rgba(52, 29, 54, 0.16);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.solutions-preview__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(52, 29, 54, 0.2);
}

@media (max-width: 760px) {
  .solution-product--lab,
  .solution-product--mobile {
    display: grid;
    min-height: auto;
  }

  .solution-product--lab .product-copy,
  .solution-product--mobile .product-copy {
    max-width: 100%;
  }

  .solution-product--lab .product-image--lab,
  .solution-product--mobile .product-image--mobile {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    border-radius: 28px;
  }
}

/* Product panels: balanced composition with compact lab card and quiet CTA */
.solutions-preview__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.84fr);
  grid-template-rows: auto auto;
  gap: 22px 28px;
  align-items: start;
}

.solution-product--lab {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-rows: auto 164px;
  min-height: 336px;
  padding: clamp(24px, 2.6vw, 32px);
  color: #24192f;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 180, 104, 0.24), transparent 26%),
    linear-gradient(135deg, #fffdf8 0%, #fff5e3 52%, #ffedbd 100%);
  border-color: rgba(117, 53, 85, 0.1);
}

.solution-product--mobile {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 418px;
  padding: clamp(24px, 2.8vw, 34px);
}

.solution-product--lab .product-copy {
  max-width: 100%;
  color: #24192f;
}

.solution-product--lab .product-copy h3 {
  color: #24192f;
}

.solution-product--lab .product-copy p {
  max-width: 560px;
  color: rgba(36, 25, 47, 0.66);
}

.solution-product--lab .product-image--lab {
  position: relative;
  inset: auto;
  z-index: 4;
  align-self: end;
  width: 100%;
  height: 164px;
  margin-top: 18px;
  border: 1px solid rgba(117, 53, 85, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(52, 29, 54, 0.1);
}

.solution-product--lab .product-image--lab img {
  object-position: center 54%;
}

.solution-product--lab::after {
  display: none;
}

.solution-product--mobile {
  background:
    radial-gradient(circle at 18% 18%, rgba(167, 92, 226, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(240, 166, 93, 0.22), transparent 26%),
    radial-gradient(circle at 90% 78%, rgba(182, 85, 90, 0.2), transparent 26%),
    linear-gradient(135deg, #281338 0%, #4c2455 38%, #7b3b54 70%, #b6555a 100%);
}

.solution-product--mobile::after {
  background: linear-gradient(90deg, rgba(40, 19, 56, 0.88) 0%, rgba(76, 36, 85, 0.68) 40%, rgba(123, 59, 84, 0.24) 64%, rgba(182, 85, 90, 0.02) 100%);
}

.solution-product--mobile .product-copy {
  max-width: 44%;
}

.solution-product--mobile .product-image--mobile {
  right: -34px;
  width: 56%;
}

.solution-product--mobile .product-image--mobile img {
  object-position: 70% center;
}

.solutions-preview__action {
  grid-column: 1;
  grid-row: 2;
  justify-content: flex-end;
  margin-top: 0;
}

.solutions-preview__button {
  min-height: 48px;
  padding: 0 24px;
  color: #2b2133;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 236, 0.82));
  border: 1px solid rgba(117, 53, 85, 0.14);
  box-shadow: 0 12px 28px rgba(52, 29, 54, 0.08);
}

.solutions-preview__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(52, 29, 54, 0.12);
}

@media (max-width: 900px) {
  .solutions-preview__cards {
    grid-template-columns: 1fr;
  }

  .solution-product--lab,
  .solution-product--mobile,
  .solutions-preview__action {
    grid-column: 1;
    grid-row: auto;
  }

  .solution-product--mobile {
    min-height: 390px;
  }
}

/* Product panels: closer to reference composition */
.solutions-preview__cards {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.88fr);
  gap: 16px 28px;
}

.solution-product--lab {
  grid-template-rows: auto 176px;
  min-height: 342px;
  padding: 28px 28px 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 180, 104, 0.2), transparent 26%),
    linear-gradient(135deg, #fffdfa 0%, #fff7ea 48%, #ffedcf 100%);
}

.solution-product--lab .product-copy {
  padding-bottom: 18px;
}

.solution-product--lab .product-copy h3 {
  font-size: clamp(27px, 2.7vw, 38px);
}

.solution-product--lab .product-image--lab {
  width: calc(100% + 56px);
  height: 176px;
  margin: 0 -28px;
  border: 0;
  border-radius: 0 0 34px 34px;
  box-shadow: none;
}

.solution-product--lab .product-image--lab img {
  object-position: center 50%;
}

.solution-product--mobile {
  min-height: 418px;
}

.solutions-preview__action {
  align-self: start;
  padding-left: 28px;
}

.solutions-preview__button {
  min-width: 310px;
  min-height: 48px;
  color: #33273b;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(117, 53, 85, 0.18);
  box-shadow: 0 10px 24px rgba(52, 29, 54, 0.07);
  backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
  .solutions-preview__cards {
    grid-template-columns: 1fr;
  }

  .solution-product--lab .product-image--lab {
    width: calc(100% + 56px);
  }

  .solutions-preview__action {
    padding-left: 0;
  }
}

/* News detail quote */
.news-detail-quote {
  position: relative;
  margin: 8px 0;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 26px;
  color: #2b2133;
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 166, 93, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 238, 0.88));
  border: 1px solid rgba(117, 53, 85, 0.12);
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.08);
}

.news-detail-quote::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 22px;
  color: rgba(182, 85, 90, 0.18);
  font-size: 88px;
  line-height: 1;
  font-weight: 800;
}

.news-detail-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #35273f;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
  letter-spacing: -0.015em;
}

body[data-page="news-detail"] .news-detail-card {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Refined services hover and mobile product card */
#services .service-rows {
  overflow: hidden;
}

#services .service-row {
  position: relative;
  margin-inline: -22px;
  padding-inline: 22px;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

#services .service-row:hover,
#services .service-row:focus-visible {
  transform: none;
  background:
    radial-gradient(circle at 96% 50%, rgba(240, 166, 93, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 239, 0.94));
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 860px) {
  #services .service-row {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}

@media (max-width: 900px) {
  .solution-product--mobile {
    display: grid;
    grid-template-rows: auto 240px;
    min-height: auto;
    padding: 24px 24px 0;
  }

  .solution-product--mobile .product-copy {
    max-width: 100%;
    padding-bottom: 22px;
  }

  .solution-product--mobile .product-image--mobile {
    position: relative;
    inset: auto;
    right: auto;
    width: calc(100% + 48px);
    height: 240px;
    margin: 0 -24px;
    border-radius: 0 0 34px 34px;
  }

  .solution-product--mobile .product-image--mobile img {
    object-position: 66% center;
  }

  .solution-product--mobile::after {
    display: none;
  }
}

/* Refined solution buttons */
.solutions-page .solution-detail-link {
  color: #ffffff;
  background: linear-gradient(135deg, #5f2a67 0%, #b64f78 52%, #ec8c5f 100%);
  border-color: rgba(95, 42, 103, 0.18);
  box-shadow: 0 14px 28px rgba(95, 42, 103, 0.18);
}

.solutions-page .solution-detail-link::before {
  content: none;
}

.solutions-page .solution-detail-link:hover,
.solutions-page .solution-detail-link:focus-visible {
  background: linear-gradient(135deg, #6d3173 0%, #c85b83 52%, #f09a6d 100%);
  box-shadow: 0 18px 34px rgba(95, 42, 103, 0.24);
}

/* Legal pages: calm document layout */
body[data-page="quality-policy"] .solution-article,
body[data-page="information-disclosure"] .solution-article {
  padding-top: clamp(50px, 6vw, 76px);
  background:
    radial-gradient(circle at 12% 8%, rgba(236, 140, 95, 0.10), transparent 28%),
    linear-gradient(180deg, #fbf7fb 0%, #fffaf7 100%);
}

body[data-page="quality-policy"] .legal-card,
body[data-page="information-disclosure"] .legal-card {
  max-width: 980px;
  gap: clamp(18px, 2.2vw, 24px);
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid rgba(113, 68, 105, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 246, 0.94));
  box-shadow: 0 22px 58px rgba(52, 29, 54, 0.08);
}

body[data-page="quality-policy"] .legal-card > .eyebrow,
body[data-page="information-disclosure"] .legal-card > .eyebrow {
  color: #a44775;
}

body[data-page="quality-policy"] .legal-card h2,
body[data-page="information-disclosure"] .legal-card h2 {
  max-width: 760px;
  color: #24172f;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

body[data-page="quality-policy"] .legal-content {
  max-width: 820px;
  gap: 15px;
  color: #5d5264;
  font-size: 16px;
  line-height: 1.7;
}

body[data-page="quality-policy"] .legal-content p,
body[data-page="quality-policy"] .legal-content li {
  color: #5d5264;
}

body[data-page="quality-policy"] .legal-content h3,
body[data-page="information-disclosure"] .legal-panel h3 {
  margin: 8px 0 2px;
  color: #281d31;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

body[data-page="quality-policy"] .legal-content .solution-article-list {
  margin-top: 2px;
  padding-left: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

body[data-page="quality-policy"] .legal-content .solution-article-list li {
  position: relative;
  padding-left: 22px;
}

body[data-page="quality-policy"] .legal-content .solution-article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b64f78, #ec8c5f);
}

body[data-page="information-disclosure"] .legal-grid {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

body[data-page="information-disclosure"] .legal-panel {
  align-content: start;
  gap: 11px;
  padding: clamp(22px, 2.5vw, 30px);
  border-color: rgba(113, 68, 105, 0.10);
  background:
    radial-gradient(circle at 100% 0%, rgba(236, 140, 95, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 244, 0.88));
  box-shadow: 0 16px 36px rgba(52, 29, 54, 0.055);
}

body[data-page="information-disclosure"] .legal-panel p {
  color: #5d5264;
  font-size: 15.5px;
  line-height: 1.58;
}

body[data-page="information-disclosure"] .legal-panel p:first-of-type {
  color: #2d2136;
  font-weight: 600;
}

body[data-page="information-disclosure"] .legal-activity-codes {
  margin-top: clamp(16px, 2vw, 22px);
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(113, 68, 105, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(236, 140, 95, 0.10), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 244, 0.88));
  box-shadow: 0 16px 36px rgba(52, 29, 54, 0.055);
}

body[data-page="information-disclosure"] .legal-activity-codes h3 {
  margin: 0 0 18px;
  color: #2d2136;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

body[data-page="information-disclosure"] .legal-activity-codes dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 0;
}

body[data-page="information-disclosure"] .legal-activity-codes dl > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

body[data-page="information-disclosure"] .legal-activity-codes dt {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(182, 79, 120, 0.10);
  color: #8e365f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

body[data-page="information-disclosure"] .legal-activity-codes dd {
  margin: 0;
  color: #5d5264;
  font-size: 15px;
  line-height: 1.55;
}

.seo-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 860px) {
  body[data-page="quality-policy"] .legal-card,
  body[data-page="information-disclosure"] .legal-card {
    padding: 24px;
    border-radius: 24px;
  }

  body[data-page="quality-policy"] .legal-content,
  body[data-page="information-disclosure"] .legal-panel p {
    font-size: 15px;
  }

  body[data-page="information-disclosure"] .legal-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="information-disclosure"] .legal-activity-codes dl {
    grid-template-columns: 1fr;
  }

  body[data-page="information-disclosure"] .legal-activity-codes dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body[data-page="information-disclosure"] .legal-activity-codes dt {
    width: fit-content;
    min-width: 48px;
    padding: 0 10px;
  }
}

/* Index-only gradient system: keeps inner pages visually identical to FINAL. */
body:not([data-page]) {
  --bg-soft: #f7f4f8;
  --bg-soft-2: #fffaf6;
  --bg-dark: #111019;
  --bg-dark-2: #21172a;
  --text: #211b2c;
  --muted: #6f6474;
  --line: rgba(83, 58, 78, 0.12);
  --accent: #b64f78;
  --accent-dark: #753555;
  --accent-gradient: linear-gradient(135deg, #753555 0%, #b6555a 56%, #e8905f 100%);
  --hero-gradient:
    radial-gradient(circle at 16% 18%, rgba(255, 126, 103, 0.2), transparent 18%),
    radial-gradient(circle at 74% 16%, rgba(162, 114, 255, 0.22), transparent 22%),
    radial-gradient(circle at 90% 54%, rgba(255, 204, 98, 0.16), transparent 20%),
    linear-gradient(124deg, #0a0d19 0%, #291848 24%, #4a267d 46%, #d54d7b 74%, #ff9c42 100%);
  --darkband-gradient:
    radial-gradient(circle at 12% 18%, rgba(240, 166, 93, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(185, 82, 126, 0.20), transparent 24%),
    radial-gradient(circle at 88% 86%, rgba(236, 140, 95, 0.12), transparent 22%),
    linear-gradient(135deg, #111019 0%, #21172a 28%, #3b243f 56%, #753555 80%, #b6555a 100%);
  --surface-card: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(252,247,244,0.90));
  --surface-card-cool: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,244,249,0.90));
  --surface-line: linear-gradient(90deg, transparent, rgba(116, 76, 103, 0.20), rgba(236, 140, 95, 0.18), transparent);
  background:
    radial-gradient(circle at 8% 8%, rgba(182, 79, 120, 0.055), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(236, 140, 95, 0.06), transparent 24%),
    linear-gradient(180deg, #f8f5f8 0%, #fff8f3 100%);
  color: var(--text);
}

body:not([data-page]) .hero {
  background: var(--hero-gradient);
}

body:not([data-page]) .hero-gradient {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 171, 121, 0.16), transparent 22%),
    radial-gradient(circle at 62% 34%, rgba(255,255,255,0.06), transparent 14%),
    radial-gradient(circle at 80% 18%, rgba(191, 120, 255, 0.2), transparent 20%),
    radial-gradient(circle at 88% 62%, rgba(255, 211, 92, 0.12), transparent 18%);
  transform: translateY(42px) !important;
  transition: none !important;
  will-change: auto;
}

body:not([data-page]) .hero::before {
  background:
    radial-gradient(circle at center, rgba(255, 177, 119, 0.2), rgba(184, 103, 255, 0.1) 42%, transparent 70%);
  box-shadow:
    0 0 0 32px rgba(255, 152, 96, 0.04),
    0 0 150px rgba(255, 113, 140, 0.2);
}

body:not([data-page]) .hero-glow {
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

body:not([data-page]) .hero-agro-flow path {
  stroke: rgba(255, 214, 176, 0.24);
}

body:not([data-page]) .eyebrow,
body:not([data-page]) .solutions-preview__head .eyebrow {
  color: var(--accent);
}

body:not([data-page]) .section--darkband .eyebrow,
body:not([data-page]) .eyebrow--light {
  color: rgba(255, 232, 214, 0.82);
}

body:not([data-page]) .site-nav a::after,
body:not([data-page]) .contour-link {
  background: var(--accent-gradient);
}

body:not([data-page]) #contour,
body:not([data-page]) #services,
body:not([data-page]) #news,
body:not([data-page]) #managers,
body:not([data-page]) #contacts,
body:not([data-page]) .solutions-preview--split,
body:not([data-page]) .section--darkband {
  overflow: hidden;
}

body:not([data-page]) #contour::after,
body:not([data-page]) #services::after,
body:not([data-page]) .solutions-preview--split::after,
body:not([data-page]) #news::after,
body:not([data-page]) .section--darkband::after,
body:not([data-page]) #managers::after,
body:not([data-page]) #news::before,
body:not([data-page]) #services::before,
body:not([data-page]) #contacts::before {
  background: var(--surface-line);
  box-shadow: none;
}

body:not([data-page]) #contour {
  background:
    radial-gradient(circle at 11% 12%, rgba(107, 76, 133, 0.052), transparent 25%),
    radial-gradient(circle at 88% 78%, rgba(236, 140, 95, 0.062), transparent 22%),
    linear-gradient(180deg, #f8f5fb 0%, #fffaf5 100%);
}

body:not([data-page]) #services {
  background:
    radial-gradient(circle at 12% 12%, rgba(236, 140, 95, 0.058), transparent 25%),
    radial-gradient(circle at 90% 78%, rgba(117, 53, 85, 0.040), transparent 22%),
    linear-gradient(180deg, #fff8f1 0%, #fffaf7 100%);
}

body:not([data-page]) .solutions-preview--split {
  background:
    radial-gradient(circle at 12% 10%, rgba(182, 79, 120, 0.050), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(236, 140, 95, 0.070), transparent 22%),
    linear-gradient(180deg, #fffaf6 0%, #f9f5fa 100%);
}

body:not([data-page]) #news {
  background:
    radial-gradient(circle at 14% 16%, rgba(117, 53, 85, 0.060), transparent 25%),
    radial-gradient(circle at 86% 80%, rgba(236, 140, 95, 0.060), transparent 22%),
    linear-gradient(180deg, #f9f5fa 0%, #fff8f2 100%);
}

body:not([data-page]) .section--darkband {
  background: var(--darkband-gradient);
}

body:not([data-page]) #managers.section--soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(82, 61, 102, 0.050), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(198, 101, 85, 0.040), transparent 22%),
    linear-gradient(180deg, #f7f3f8 0%, #fbf8fd 100%);
}

body:not([data-page]) #contacts {
  background:
    radial-gradient(circle at 10% 14%, rgba(236, 140, 95, 0.070), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(117, 53, 85, 0.040), transparent 20%),
    linear-gradient(180deg, #fff8f1 0%, #fff2ec 100%);
}

body:not([data-page]) #services .service-rows,
body:not([data-page]) #contacts .contact-grid,
body:not([data-page]) .contact-panel,
body:not([data-page]) .map-card {
  background: var(--surface-card);
  border-color: rgba(83, 58, 78, 0.11);
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.065);
}

body:not([data-page]) .leader-card,
body:not([data-page]) .contour-chip {
  background: var(--surface-card-cool);
  border-color: rgba(83, 58, 78, 0.11);
  box-shadow: 0 18px 46px rgba(52, 29, 54, 0.065);
}

body:not([data-page]) #news .news-card {
  background: transparent;
  border-color: rgba(83, 58, 78, 0.11);
  box-shadow: none;
}

body:not([data-page]) #news .news-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(182, 79, 120, 0.20);
  box-shadow: 0 3px 8px rgba(52, 29, 54, 0.075);
}

body:not([data-page]) .news-card__media {
  background-color: rgba(234, 217, 220, 0.72);
}

body:not([data-page]) .news-card__media::after {
  background: linear-gradient(135deg, rgba(46, 31, 55, 0.92), rgba(139, 61, 91, 0.88), rgba(198, 101, 85, 0.82));
  box-shadow: 0 10px 24px rgba(52, 29, 54, 0.16);
}

body:not([data-page]) .news-slider__button,
body:not([data-page]) .scroll-top {
  background: linear-gradient(180deg, #fffaf8 0%, #fff1ec 100%);
  border-color: rgba(83, 58, 78, 0.12);
  color: #493052;
  box-shadow: 0 12px 28px rgba(52, 29, 54, 0.075);
}

body:not([data-page]) .news-slider__button:hover,
body:not([data-page]) .scroll-top:hover {
  background: linear-gradient(180deg, #ffffff 0%, #fff4ef 100%);
  border-color: rgba(182, 79, 120, 0.20);
  box-shadow: 0 16px 36px rgba(52, 29, 54, 0.12);
}

body:not([data-page]) .service-row__index,
body:not([data-page]) .contact-list a {
  color: var(--accent);
}

body:not([data-page]) .solutions-preview__button {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(83, 58, 78, 0.16);
  color: #33273b;
  box-shadow: 0 10px 24px rgba(52, 29, 54, 0.07);
}

body:not([data-page]) .solutions-preview__button:hover {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(182, 79, 120, 0.18);
  box-shadow: 0 14px 30px rgba(52, 29, 54, 0.11);
}

body:not([data-page]) .solution-product--lab {
  background:
    radial-gradient(circle at 88% 10%, rgba(236, 140, 95, 0.18), transparent 26%),
    linear-gradient(135deg, #fffdf8 0%, #fff6ea 48%, #f6e4cf 100%);
}

body:not([data-page]) .solution-product--mobile {
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 82, 126, 0.14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(236, 140, 95, 0.20), transparent 26%),
    radial-gradient(circle at 90% 78%, rgba(198, 101, 85, 0.18), transparent 26%),
    linear-gradient(135deg, #21172a 0%, #3b243f 38%, #753555 70%, #b6555a 100%);
}

body:not([data-page]) .solution-product--mobile::after {
  background: linear-gradient(90deg, rgba(33, 23, 42, 0.88) 0%, rgba(59, 36, 63, 0.68) 40%, rgba(117, 53, 85, 0.24) 64%, rgba(182, 85, 90, 0.02) 100%);
}

body:not([data-page]) .solution-product--lab,
body:not([data-page]) .solution-product--mobile {
  transition: none;
}

body:not([data-page]) .solution-product--lab .product-image img,
body:not([data-page]) .solution-product--mobile .product-image img {
  transition: transform 620ms ease, filter 620ms ease;
}

body:not([data-page]) .solution-product--lab:hover .product-image img,
body:not([data-page]) .solution-product--lab:focus-visible .product-image img,
body:not([data-page]) .solution-product--mobile:hover .product-image img,
body:not([data-page]) .solution-product--mobile:focus-visible .product-image img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.015);
}

body:not([data-page]) .site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 242, 246, 0.92)),
    linear-gradient(135deg, #f7f5f2 0%, #eef1f5 100%);
  border-top-color: rgba(88, 99, 116, 0.14);
}

/* Refined gold accent for hero labels, menu underline and contour flow. */
:root {
  --noble-gold: rgba(255, 232, 214, 0.82);
  --noble-gold-deep: rgba(255, 214, 176, 0.72);
  --noble-gold-soft: rgba(255, 232, 214, 0.16);
  --noble-gold-line: linear-gradient(90deg, rgba(255, 232, 214, 0), rgba(255, 232, 214, 0.70), rgba(255, 214, 176, 0.56), rgba(255, 232, 214, 0));
}

.hero .eyebrow--light,
.solutions-page-hero .eyebrow--light,
.solution-article-hero .eyebrow--light,
body:not([data-page]) .hero .eyebrow--light,
body:not([data-page]) .section--darkband .eyebrow {
  color: var(--noble-gold);
}

.site-nav a::after,
body:not([data-page]) .site-nav a::after {
  height: 2px;
  background: var(--noble-gold-line);
  opacity: 0;
  box-shadow: 0 3px 12px rgba(255, 214, 176, 0.10);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 0.95;
}

.contour-link,
body:not([data-page]) .contour-link {
  background: linear-gradient(90deg, rgba(255, 232, 214, 0.12), rgba(255, 232, 214, 0.48), rgba(255, 214, 176, 0.16));
}

.contour-link::after,
body:not([data-page]) .contour-link::after {
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255, 232, 214, 0.86), rgba(255, 214, 176, 0));
  box-shadow: 0 0 14px rgba(255, 214, 176, 0.16);
}

@media (max-width: 760px) {
  .contour-link,
  body:not([data-page]) .contour-link {
    background: linear-gradient(180deg, rgba(255, 232, 214, 0.12), rgba(255, 232, 214, 0.48), rgba(255, 214, 176, 0.16));
  }

  .contour-link::after,
  body:not([data-page]) .contour-link::after {
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255, 232, 214, 0.86), rgba(255, 214, 176, 0));
  }
}

/* Menu underline disabled by request; hero labels and contour flow keep the gold accent. */
.site-nav a::after,
body:not([data-page]) .site-nav a::after,
.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

/* Stronger information flow in the digital contour block. */
.contour-link,
body:not([data-page]) .contour-link {
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(82, 45, 68, 0.22), rgba(82, 45, 68, 0.30), rgba(82, 45, 68, 0.18)),
    linear-gradient(90deg, rgba(255, 232, 214, 0.28), rgba(255, 232, 214, 0.98), rgba(255, 214, 176, 0.34));
  box-shadow:
    0 0 0 1px rgba(82, 45, 68, 0.08),
    0 0 22px rgba(255, 214, 176, 0.24);
}

.contour-link::after,
body:not([data-page]) .contour-link::after {
  top: -4px;
  height: 12px;
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255, 248, 236, 1), rgba(255, 214, 176, 0.15));
  box-shadow:
    0 0 0 1px rgba(255, 232, 214, 0.18),
    0 0 22px rgba(255, 214, 176, 0.42);
}

@media (max-width: 760px) {
  .contour-link,
  body:not([data-page]) .contour-link {
    width: 4px;
    height: 38px;
    background:
      linear-gradient(180deg, rgba(82, 45, 68, 0.22), rgba(82, 45, 68, 0.30), rgba(82, 45, 68, 0.18)),
      linear-gradient(180deg, rgba(255, 232, 214, 0.28), rgba(255, 232, 214, 0.98), rgba(255, 214, 176, 0.34));
  }

  .contour-link::after,
  body:not([data-page]) .contour-link::after {
    left: -4px;
    width: 12px;
    height: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255, 248, 236, 1), rgba(255, 214, 176, 0.15));
  }
}
