
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700;800;900&display=swap');

:root {
  --sreda-forest: #0b2a20;
  --sreda-forest-2: #12503c;
  --sreda-ink: #0b2a20;
  --sreda-pink: #ee5b93;
  --sreda-pink-dark: #d43f78;
  --sreda-cream: #f7f2e7;
  --sreda-cream-2: #ece4d2;
  --sreda-white: #ffffff;
  --sreda-container: 1240px;
}

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

html {
  font-family: 'Manrope', Arial, sans-serif;
}

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

.sreda-page {
  width: 100%;
  overflow: hidden;
  color: var(--sreda-ink);
  background: var(--sreda-cream);
  font-family: 'Manrope', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.sreda-page button,
.sreda-page input,
.sreda-page textarea,
.sreda-nav button,
.sreda-footer button {
  font: inherit;
}

.sreda-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.sreda-display {
  font-family: 'Unbounded', Arial, sans-serif;
}

.sreda-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .3;
  pointer-events: none;
  background-image: radial-gradient(rgba(247, 242, 231, .05) 1px, transparent 1px);
  background-size: 3px 3px;
}

.sreda-blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.sreda-blob--float-a { animation: sreda-float-slow 7s ease-in-out infinite; }
.sreda-blob--float-b { animation: sreda-float-slower 9s ease-in-out infinite; }

@keyframes sreda-float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes sreda-float-slower {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}

.sreda-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border: 1px solid rgba(11, 42, 32, .1);
  border-radius: 999px;
  color: var(--sreda-pink-dark);
  background: rgba(255, 255, 255, .7);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: normal;
  text-align: left;
  box-sizing: border-box;
}

.sreda-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sreda-pink);
  content: '';
}

.sreda-eyebrow--light {
  border-color: rgba(247, 242, 231, .15);
  color: #f8a4c4;
  background: rgba(247, 242, 231, .05);
}

.sreda-section-title {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--sreda-ink);
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.sreda-section-title--light {
  color: var(--sreda-cream);
}

.sreda-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(11, 42, 32, .62);
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}

.sreda-lead--light {
  color: rgba(247, 242, 231, .64);
}

.sreda-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.sreda-btn svg { width: 16px; height: 16px; flex: none; transition: transform .3s ease; }
.sreda-btn:hover svg { transform: translateX(3px); }

.sreda-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.sreda-btn--pink {
  color: #fff;
  background: linear-gradient(100deg, var(--sreda-pink), var(--sreda-pink-dark));
  box-shadow: 0 14px 30px rgba(212, 63, 120, .24);
}

.sreda-btn--pink:hover {
  box-shadow: 0 18px 34px rgba(212, 63, 120, .34);
}

.sreda-btn--outline-light {
  border-color: rgba(247, 242, 231, .24);
  color: var(--sreda-cream);
  background: rgba(247, 242, 231, .04);
}

.sreda-btn--outline-light:hover {
  border-color: rgba(247, 242, 231, .48);
  background: rgba(247, 242, 231, .11);
}

.sreda-btn--outline-dark {
  border-color: rgba(11, 42, 32, .14);
  color: var(--sreda-ink);
  background: rgba(255, 255, 255, .5);
}

.sreda-btn--outline-dark:hover {
  background: var(--sreda-white);
}

.sreda-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--sreda-pink-dark);
  font-size: 15px;
  font-weight: 700;
}

.sreda-link-arrow:hover { text-decoration: underline; }
.sreda-link-arrow svg { width: 15px; height: 15px; }

/* ---------- NAV ---------- */

.sreda-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition: padding .35s ease;
}

.sreda-nav.is-scrolled {
  padding: 10px 0;
}

.sreda-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.sreda-nav.is-scrolled .sreda-nav__inner {
  border-color: rgba(247, 242, 231, .13);
  background: rgba(11, 42, 32, .88);
  box-shadow: 0 12px 38px rgba(11, 42, 32, .24);
  backdrop-filter: blur(18px);
}

.sreda-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sreda-cream);
  white-space: nowrap;
}

.sreda-logo-icon {
  display: block;
  width: 36px;
  height: 36px;
}

.sreda-logo-icon--lg {
  width: 48px;
  height: 48px;
}

.sreda-lockup__name {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.sreda-lockup--lg .sreda-lockup__name {
  font-size: 25px;
}

.sreda-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sreda-nav__links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(247, 242, 231, .78);
  font-size: 14.5px;
  font-weight: 600;
  transition: background .25s ease, color .25s ease;
}

.sreda-nav__links a:hover {
  color: var(--sreda-cream);
  background: rgba(247, 242, 231, .1);
}

.sreda-nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sreda-nav__action {
  min-height: 42px;
  padding: 0 20px;
  font-size: 13.5px;
}

.sreda-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 242, 231, .2);
  border-radius: 999px;
  color: var(--sreda-cream);
  background: transparent;
  cursor: pointer;
}

.sreda-menu-toggle span,
.sreda-menu-toggle::before,
.sreda-menu-toggle::after {
  display: block;
  width: 17px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: currentColor;
  content: '';
  transition: transform .25s ease, opacity .25s ease;
}

.sreda-nav.is-open .sreda-menu-toggle span { opacity: 0; }
.sreda-nav.is-open .sreda-menu-toggle::before { transform: translateY(5px) rotate(45deg); }
.sreda-nav.is-open .sreda-menu-toggle::after { transform: translateY(-5px) rotate(-45deg); }

.sreda-mobile-menu {
  display: none;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid rgba(247, 242, 231, .12);
  border-radius: 18px;
  background: rgba(11, 42, 32, .97);
  box-shadow: 0 20px 50px rgba(11, 42, 32, .24);
}

.sreda-mobile-menu a {
  display: block;
  padding: 13px 12px;
  border-radius: 12px;
  color: rgba(247, 242, 231, .84);
  font-size: 14.5px;
  font-weight: 600;
}

.sreda-mobile-menu a:hover { background: rgba(247, 242, 231, .08); }
.sreda-nav.is-open .sreda-mobile-menu { display: block; }

/* ---------- HERO ---------- */

.sreda-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(760px, 100svh);
  padding: 128px 0 96px;
  color: var(--sreda-cream);
  background: var(--sreda-forest);
}

.sreda-hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/brand/hero-bg.jpg');
  background-position: center right;
  background-size: cover;
  opacity: .9;
}

.sreda-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 42%, rgba(238, 91, 147, .16), transparent 38%),
    linear-gradient(100deg, rgba(11, 42, 32, .96) 12%, rgba(11, 42, 32, .68) 50%, rgba(11, 42, 32, .18) 100%);
  content: '';
}

.sreda-hero__wordmark {
  position: absolute;
  z-index: 1;
  top: -24px;
  left: 33%;
  display: none;
  color: rgba(238, 91, 147, .08);
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 250px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sreda-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1180px);
  align-items: center;
}

.sreda-hero__inner > div:first-child {
  max-width: 1180px;
}

.sreda-hero h1 {
  max-width: 1240px;
  margin: 26px 0 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.sreda-pink-text,
.sreda-pink-text-grad {
  color: var(--sreda-pink);
  background: linear-gradient(115deg, #f4a9cd 0%, var(--sreda-pink) 42%, var(--sreda-pink-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
  .sreda-pink-text,
  .sreda-pink-text-grad {
    -webkit-text-fill-color: initial;
    color: var(--sreda-pink);
  }
}

.sreda-hero__copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(247, 242, 231, .7);
  font-size: 17px;
  line-height: 1.7;
}

.sreda-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ---------- SOCIAL PROOF MARQUEE ---------- */

.sreda-logos {
  overflow: hidden;
  padding: 42px 0;
  border-top: 1px solid rgba(11, 42, 32, .06);
  border-bottom: 1px solid rgba(11, 42, 32, .06);
  background: var(--sreda-cream);
}

.sreda-logos + .sreda-section {
  padding-top: 48px;
}

#sreda-problems + #sreda-situations {
  padding-top: 48px;
}

#sreda-services + #sreda-tools {
  padding-top: 48px;
}

#sreda-expert + #sreda-reviews {
  padding-top: 48px;
}

#sreda-reviews + .sreda-blog {
  padding-top: 48px;
}

.sreda-blog + #sreda-faq {
  padding-top: 48px;
}

.sreda-logos__label {
  margin: 0 0 28px;
  color: rgba(11, 42, 32, .4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.sreda-logos__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.sreda-logos__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 64px;
  animation: sreda-marquee 32s linear infinite;
}

.sreda-logos__track span {
  flex: none;
  color: rgba(11, 42, 32, .32);
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.02em;
  transition: color .25s ease;
}

.sreda-logos__track span:hover { color: var(--sreda-ink); }

@keyframes sreda-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTIONS / SHARED GRIDS ---------- */

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

.sreda-section--dark {
  color: var(--sreda-cream);
  background: var(--sreda-forest);
}

.sreda-card-title {
  margin: 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.sreda-card-text {
  margin: 10px 0 0;
  color: rgba(11, 42, 32, .6);
  font-size: 15px;
  line-height: 1.6;
}

.sreda-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.sreda-tag {
  padding: 6px 13px;
  border: 1px solid rgba(11, 42, 32, .1);
  border-radius: 999px;
  background: rgba(11, 42, 32, .04);
  color: rgba(11, 42, 32, .68);
  font-size: 12.5px;
  font-weight: 600;
}

.sreda-section--dark .sreda-tag {
  border-color: rgba(247, 242, 231, .12);
  background: rgba(247, 242, 231, .05);
  color: rgba(247, 242, 231, .72);
}

.sreda-index {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: rgba(238, 91, 147, .38);
  transition: color .3s ease;
}

.sreda-section--dark .sreda-index { color: rgba(238, 91, 147, .5); }

/* ---------- PROBLEMS ---------- */

.sreda-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.sreda-situations-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sreda-problem {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(238, 91, 147, .18);
  border-radius: 24px;
  background: var(--sreda-white);
  box-shadow: 0 1px 2px rgba(11, 42, 32, .04);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.sreda-problem:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 91, 147, .42);
  box-shadow: 0 24px 40px rgba(11, 42, 32, .08);
}

.sreda-problem .sreda-card-title { margin-top: 16px; }

.sreda-banner {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  padding: 44px 56px;
  border-radius: 32px;
  color: var(--sreda-cream);
  background: var(--sreda-forest);
}

.sreda-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sreda-banner h3 {
  max-width: 620px;
  margin: 14px 0 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

/* ---------- FEATURES / TABS (Запросы) ---------- */

.sreda-tabs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.sreda-tabs-head p {
  max-width: 380px;
  color: rgba(247, 242, 231, .55);
  font-size: 15px;
  line-height: 1.6;
}

.sreda-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.sreda-section-head > div:first-child {
  flex: 1 1 560px;
  min-width: 0;
}

.sreda-section-head__note {
  flex: 0 1 320px;
  margin: 12px 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(11, 42, 32, .12);
  color: rgba(11, 42, 32, .68);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.sreda-section--dark .sreda-section-head__note {
  border-top-color: rgba(247, 242, 231, .14);
  color: rgba(247, 242, 231, .68);
}

.sreda-requests-accordion {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.sreda-request-block {
  border: 1px solid rgba(247, 242, 231, .14);
  border-radius: 22px;
  background: rgba(247, 242, 231, .04);
  transition: border-color .3s ease, background .3s ease;
}

.sreda-request-block[open] {
  border-color: rgba(238, 91, 147, .45);
  background: rgba(247, 242, 231, .06);
}

.sreda-request-block summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.sreda-request-block summary::-webkit-details-marker { display: none; }

.sreda-request-block__num {
  flex: none;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(238, 91, 147, .55);
}

.sreda-request-block__head {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  min-width: 0;
}

.sreda-request-block__label {
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--sreda-cream);
}

.sreda-request-block__sub {
  color: rgba(247, 242, 231, .48);
  font-size: 13.5px;
}

.sreda-request-block__icon {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247, 242, 231, .2);
  border-radius: 50%;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.sreda-request-block__icon::before,
.sreda-request-block__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--sreda-cream);
  border-radius: 2px;
  content: '';
  transform: translate(-50%, -50%);
}

.sreda-request-block__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.sreda-request-block[open] .sreda-request-block__icon {
  border-color: transparent;
  background: var(--sreda-pink);
  transform: rotate(45deg);
}

.sreda-request-block__panel {
  padding: 4px 24px 28px;
}

.sreda-tabpanel__intro {
  max-width: 640px;
  margin: 0 0 20px;
  color: rgba(247, 242, 231, .62);
  font-size: 15px;
  line-height: 1.6;
}

.sreda-tabpanel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sreda-request-card {
  padding: 32px;
  border: 1px solid rgba(238, 91, 147, .22);
  border-radius: 24px;
  background: rgba(247, 242, 231, .04);
  transition: background .3s ease, border-color .3s ease;
}

.sreda-request-card:hover {
  border-color: rgba(238, 91, 147, .4);
  background: rgba(247, 242, 231, .07);
}

.sreda-request-card h3 {
  margin: 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: var(--sreda-cream);
}

.sreda-request-card p {
  margin: 12px 0 0;
  color: rgba(247, 242, 231, .6);
  font-size: 15px;
  line-height: 1.6;
}

.sreda-tabpanel__grid--single {
  grid-template-columns: 1fr;
}

.sreda-case-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.sreda-case {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  padding: 12px 16px;
  border-left: 2px solid rgba(238, 91, 147, .45);
  border-radius: 0 12px 12px 0;
  background: rgba(247, 242, 231, .035);
}

.sreda-case strong {
  flex: none;
  color: var(--sreda-cream);
  font-size: 13px;
  font-weight: 700;
}

.sreda-case span {
  color: rgba(247, 242, 231, .55);
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- PROCESS ---------- */

.sreda-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.sreda-process-grid--six {
  grid-template-columns: repeat(6, 1fr);
}

.sreda-process-grid--six .sreda-process-step {
  position: relative;
}

.sreda-process-grid--six .sreda-process-step:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: -16px;
  z-index: 2;
  color: rgba(238, 91, 147, .55);
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 16px;
  content: '\2192';
}

.sreda-process-grid::before {
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 42, 32, .15), transparent);
  content: '';
}

.sreda-process-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--sreda-forest);
  color: var(--sreda-cream);
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(11, 42, 32, .18);
  transition: background .3s ease;
}

.sreda-process-step:hover .sreda-process-number { background: var(--sreda-pink); }

.sreda-process-step h3 {
  margin: 20px 0 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.sreda-process-step p {
  margin: 8px 0 0;
  color: rgba(11, 42, 32, .6);
  font-size: 14.5px;
  line-height: 1.6;
}

.sreda-process-artifact {
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(11, 42, 32, .05);
  color: rgba(11, 42, 32, .7);
  font-size: 12.5px;
  font-weight: 700;
}

/* ---------- FORMATS ---------- */

.sreda-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.sreda-format {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(238, 91, 147, .22);
  border-radius: 24px;
  background: rgba(247, 242, 231, .04);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.sreda-format:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 91, 147, .4);
  background: rgba(247, 242, 231, .07);
}

.sreda-formats-grid--five {
  grid-template-columns: repeat(3, 1fr);
}

.sreda-formats-grid--five .sreda-format:nth-child(4),
.sreda-formats-grid--five .sreda-format:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 1021px) {
  .sreda-formats-grid--five {
    grid-template-columns: repeat(6, 1fr);
  }
  .sreda-formats-grid--five .sreda-format:nth-child(1),
  .sreda-formats-grid--five .sreda-format:nth-child(2),
  .sreda-formats-grid--five .sreda-format:nth-child(3) {
    grid-column: span 2;
  }
  .sreda-formats-grid--five .sreda-format:nth-child(4),
  .sreda-formats-grid--five .sreda-format:nth-child(5) {
    grid-column: span 3;
  }
}

.sreda-tools-accent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid rgba(238, 91, 147, .3);
  border-radius: 22px;
  background: rgba(238, 91, 147, .08);
}

.sreda-tools-accent p {
  margin: 0;
  max-width: 560px;
  color: var(--sreda-cream);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.sreda-format .sreda-card-title { margin-top: 20px; color: var(--sreda-cream); font-size: 23px; }
.sreda-format .sreda-card-text { color: rgba(247, 242, 231, .6); }

.sreda-format-parameters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(247, 242, 231, .1);
}

.sreda-format-parameter {
  padding-left: 20px;
  border-left: 1px solid rgba(247, 242, 231, .1);
}

.sreda-format-parameter:first-child { padding-left: 0; border-left: 0; }

.sreda-format-parameter strong {
  display: block;
  color: var(--sreda-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sreda-format-parameter span {
  display: block;
  margin-top: 6px;
  color: rgba(247, 242, 231, .72);
  font-size: 15px;
}

/* ---------- BLOG (rounded feature card) ---------- */

.sreda-blog {
  padding: 56px 0;
  background: var(--sreda-cream);
}

.sreda-blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 56px 60px;
  border-radius: 36px;
  background: linear-gradient(128deg, var(--sreda-forest) 0%, #123c2c 60%, #0e3327 100%);
  box-shadow: 0 34px 70px -20px rgba(11, 42, 32, .38);
}

.sreda-blog-card__decor {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 91, 147, .38), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.sreda-blog-card__icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  border: 1px solid rgba(247, 242, 231, .14);
  background: rgba(247, 242, 231, .06);
  color: var(--sreda-pink);
}

.sreda-blog-card__icon svg { width: 28px; height: 28px; }

.sreda-blog-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.sreda-section-title--xs {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.28;
}

.sreda-blog-card__title {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--sreda-cream);
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.24;
}

.sreda-blog-card__text {
  max-width: 480px;
  margin: 16px 0 0;
  color: rgba(247, 242, 231, .58);
  font-size: 15px;
  line-height: 1.65;
}

.sreda-blog-card__btn {
  position: relative;
  z-index: 1;
  flex: none;
}

/* ---------- RESULTS / BENEFITS ---------- */

.sreda-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.sreda-result {
  padding: 32px;
  border: 1px solid rgba(247, 242, 231, .1);
  border-radius: 24px;
  background: rgba(247, 242, 231, .04);
  transition: border-color .3s ease;
}

.sreda-result:hover { border-color: rgba(238, 91, 147, .5); }

.sreda-result__value {
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--sreda-pink);
}

.sreda-result__label {
  margin-top: 16px;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sreda-cream);
}

.sreda-result__text {
  margin-top: 6px;
  color: rgba(247, 242, 231, .55);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- EXPERT ---------- */

.sreda-expert-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 56px;
  align-items: center;
}

.sreda-expert-photo-wrap {
  position: relative;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 0;
  border-radius: 36px;
  background: #f4c7dc;
  box-shadow: 0 30px 60px rgba(11, 42, 32, .16);
}

.sreda-expert-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px 24px 0 0;
  object-fit: cover;
  object-position: top center;
}

.sreda-expert-caption {
  max-width: 480px;
  margin: 18px auto 0;
  color: rgba(11, 42, 32, .55);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.sreda-section-title--quote {
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.36;
  border-left: 3px solid var(--sreda-pink);
  padding-left: 22px;
}

.sreda-section-title--compact {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.22;
}

.sreda-expert-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.sreda-expert-fact {
  padding: 22px;
  border: 1px solid rgba(11, 42, 32, .08);
  border-radius: 18px;
  background: var(--sreda-white);
  box-shadow: 0 1px 2px rgba(11, 42, 32, .03);
}

.sreda-expert-fact strong {
  display: block;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.sreda-expert-fact p {
  margin: 6px 0 0;
  color: rgba(11, 42, 32, .6);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---------- TESTIMONIALS ---------- */

.sreda-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.sreda-review {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(11, 42, 32, .08);
  border-radius: 24px;
  background: var(--sreda-white);
  box-shadow: 0 1px 2px rgba(11, 42, 32, .04);
}

.sreda-review__stars {
  color: var(--sreda-pink);
  font-size: 15px;
  letter-spacing: 2px;
}

.sreda-review__text {
  flex: 1;
  margin: 18px 0 0;
  color: rgba(11, 42, 32, .74);
  font-size: 15px;
  line-height: 1.65;
}

.sreda-review__person {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 42, 32, .08);
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
}

.sreda-review__role {
  margin-top: 3px;
  color: rgba(11, 42, 32, .48);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
}

/* ---------- FAQ ---------- */

.sreda-faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
}

.sreda-faq-list { display: grid; gap: 10px; }

.sreda-faq-item {
  border: 1px solid rgba(11, 42, 32, .09);
  border-radius: 17px;
  background: rgba(255, 255, 255, .62);
}

.sreda-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.sreda-faq-item summary::-webkit-details-marker { display: none; }

.sreda-faq-item summary::after {
  flex: none;
  color: var(--sreda-pink-dark);
  content: '+';
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  transition: transform .25s ease;
}

.sreda-faq-item[open] summary::after { transform: rotate(45deg); }

.sreda-faq-answer {
  padding: 0 22px 20px;
  color: rgba(11, 42, 32, .62);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- CTA ---------- */

.sreda-cta {
  position: relative;
  overflow: hidden;
  color: var(--sreda-cream);
  background: var(--sreda-forest);
}

.sreda-cta--compact {
  padding: 56px 0;
}

.sreda-cta--compact .sreda-cta__art { opacity: .22; }
.sreda-cta--compact h2 { font-size: clamp(24px, 3.4vw, 36px); margin-top: 14px; }
.sreda-cta--heading-only { padding: 88px 0; }
.sreda-cta--heading-only .sreda-cta__inner { max-width: 1040px; }
.sreda-cta__lead { margin: 18px auto 0; text-align: center; }
.sreda-cta__break { display: none; }

@media (min-width: 640px) {
  .sreda-cta__break { display: inline; }
}

.sreda-cta__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/brand/hero-bg.jpg');
  background-position: center;
  background-size: cover;
  opacity: .38;
}

.sreda-cta::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 42, 32, .92), rgba(11, 42, 32, .72), rgba(11, 42, 32, .55));
  content: '';
}

.sreda-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sreda-cta h2 {
  margin: 20px auto 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  overflow-wrap: break-word;
  hyphens: none;
}

.sreda-cta__heading-centered {
  margin-top: 0;
}

.sreda-cta h2 strong {
  font-style: italic;
  color: var(--sreda-pink);
  background: linear-gradient(115deg, #f4a9cd 0%, var(--sreda-pink) 42%, var(--sreda-pink-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- LEAF DECORATION ---------- */

.sreda-leaf {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .16;
}

/* ---------- FOOTER ---------- */

.sreda-footer {
  padding: 80px 0 28px;
  color: var(--sreda-cream);
  background: #081f17;
}

.sreda-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 56px;
}

.sreda-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sreda-footer__title {
  color: rgba(247, 242, 231, .82);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sreda-footer__list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.sreda-footer__list a {
  color: rgba(247, 242, 231, .5);
  font-size: 13.5px;
  line-height: 1.5;
  transition: color .25s ease;
}

.sreda-footer__list a:hover { color: var(--sreda-pink); }

.sreda-footer__description {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(247, 242, 231, .75);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.35;
}

.sreda-footer__signature {
  max-width: 320px;
  margin: 12px 0 0;
  color: rgba(247, 242, 231, .48);
  font-size: 13px;
  line-height: 1.5;
}

.sreda-footer__blog-btn {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 14px;
}

.sreda-footer__socials {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.sreda-footer__socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(247, 242, 231, .14);
  border-radius: 50%;
  color: rgba(247, 242, 231, .64);
  font-size: 11px;
  font-weight: 800;
  transition: border-color .25s ease, color .25s ease;
}

.sreda-footer__socials a:hover {
  border-color: var(--sreda-pink);
  color: var(--sreda-pink);
}

.sreda-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 242, 231, .1);
  color: rgba(247, 242, 231, .38);
  font-size: 12.5px;
}

.sreda-footer__bottom-links { display: flex; gap: 22px; }

/* ---------- REVEAL ---------- */
/* Скрываем для анимации ТОЛЬКО когда JS подтвердил, что он запущен
   (класс .sreda-js на  ставится инлайн-скриптом в начале header.html).
   Без JS — весь контент виден сразу, без риска "залипания" в opacity:0. */

.sreda-js .sreda-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.sreda-js .sreda-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .sreda-page *, .sreda-page *::before, .sreda-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- CLIENTS / TRUST CAPTION ---------- */

.sreda-clients__caption {
  max-width: 640px;
  margin: 10px auto 0;
  color: rgba(11, 42, 32, .45);
  font-size: 14px;
  text-align: center;
}

/* ---------- EXPERT: "РАЗНЫЕ ОПТИКИ" LENS CARDS ---------- */

.sreda-expert-statement {
  max-width: 560px;
  margin: 18px 0 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sreda-ink);
}

.sreda-expert-bio {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(11, 42, 32, .65);
  font-size: 16px;
  line-height: 1.7;
}

.sreda-expert-bio + .sreda-expert-bio { margin-top: 12px; }

.sreda-expert-bio--muted {
  color: rgba(11, 42, 32, .55);
  font-size: 15px;
}

.sreda-expert-optics {
  max-width: 640px;
  margin: 28px 0 0;
  padding: 24px 26px;
  border: 1px solid rgba(238, 91, 147, .22);
  border-radius: 20px;
  background: rgba(238, 91, 147, .06);
}

.sreda-expert-optics h3 {
  margin: 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sreda-pink-dark);
}

.sreda-expert-optics p {
  margin: 10px 0 0;
  color: rgba(11, 42, 32, .68);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- WORK FORMATS BAND (block 09) ---------- */

.sreda-workformats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.sreda-workformat {
  padding: 26px 22px;
  border: 1px solid rgba(247, 242, 231, .12);
  border-radius: 20px;
  background: rgba(247, 242, 231, .04);
  transition: border-color .3s ease, background .3s ease;
}

.sreda-workformat--label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  text-align: center;
}

.sreda-workformat--label strong { font-size: 19px; }

.sreda-workformat:hover {
  border-color: rgba(238, 91, 147, .4);
  background: rgba(247, 242, 231, .07);
}

.sreda-workformat strong {
  display: block;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--sreda-cream);
}

.sreda-workformat p {
  margin: 8px 0 0;
  color: rgba(247, 242, 231, .58);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---------- FIRST MEETING (block 11) ---------- */

.sreda-meeting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.sreda-meeting-step .sreda-process-number { margin-bottom: 0; }

.sreda-meeting-step h3 {
  margin: 20px 0 0;
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--sreda-ink);
}

.sreda-meeting-step p {
  margin: 10px 0 0;
  color: rgba(11, 42, 32, .6);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- FOOTER: NAME / ROLE LINE ---------- */

.sreda-footer__person {
  margin-top: 22px;
}

.sreda-footer__person-name {
  font-family: 'Unbounded', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--sreda-cream);
}

.sreda-footer__person-role {
  margin-top: 2px;
  color: rgba(238, 91, 147, .8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}



@media (min-width: 1180px) {
  .sreda-hero__wordmark { display: block; }
}

@media (max-width: 1020px) {
  .sreda-nav__links { display: none; }
  .sreda-menu-toggle { display: block; }
  .sreda-nav__action { min-height: 38px; padding: 0 16px; font-size: 13px; }
  .sreda-problems-grid { grid-template-columns: repeat(2, 1fr); }
  .sreda-situations-grid { grid-template-columns: repeat(2, 1fr); }
  .sreda-process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .sreda-process-grid::before { display: none; }
  .sreda-formats-grid { grid-template-columns: repeat(2, 1fr); }
  .sreda-results-grid { grid-template-columns: repeat(2, 1fr); }
  .sreda-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .sreda-expert-grid { grid-template-columns: 1fr; }
  .sreda-expert-photo-wrap { margin: 0 auto; }
  .sreda-faq { grid-template-columns: 1fr; gap: 40px; }
  .sreda-tabpanel__grid { grid-template-columns: 1fr; }
  .sreda-workformats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .sreda-container { width: min(100% - 28px, var(--sreda-container)); }

  .sreda-eyebrow { padding: 6px 13px; font-size: 11px; letter-spacing: .07em; gap: 7px; }
  .sreda-eyebrow::before { width: 6px; height: 6px; }

  .sreda-hero { min-height: auto; padding: 140px 0 80px; }
  .sreda-hero__art { background-position: 64% center; opacity: .8; }
  .sreda-hero__copy, .sreda-lead { font-size: 15px; }
  .sreda-hero__actions { flex-direction: column; align-items: stretch; }
  .sreda-hero__actions .sreda-btn { width: 100%; }

  .sreda-section, .sreda-blog { padding: 72px 0; }

  .sreda-problems-grid,
  .sreda-situations-grid,
  .sreda-formats-grid,
  .sreda-results-grid,
  .sreda-reviews-grid { grid-template-columns: 1fr; }


  .sreda-banner { padding: 30px 22px; }
  .sreda-banner__inner { flex-direction: column; align-items: stretch; }
  .sreda-banner__inner .sreda-btn { width: 100%; }

  .sreda-request-block summary { padding: 18px 16px; gap: 12px; }
  .sreda-request-block__panel { padding: 0 16px 22px; }
  .sreda-request-block__num { display: none; }

  .sreda-process-grid { grid-template-columns: 1fr; gap: 30px; }

  .sreda-blog-card { flex-direction: column; align-items: stretch; gap: 24px; padding: 36px 26px; text-align: left; }
  .sreda-blog-card__icon { display: none; }
  .sreda-blog-card__btn { width: 100%; }

  .sreda-expert-photo-wrap { max-width: 360px; width: 100%; }
  .sreda-section-title--quote { font-size: 20px; }
  .sreda-expert-facts { grid-template-columns: 1fr; }

  .sreda-reviews-grid { grid-template-columns: 1fr; margin-top: 40px; }

  .sreda-format-parameters,
  .sreda-expert-grid,
  .sreda-footer__grid,
  .sreda-footer__columns { grid-template-columns: 1fr; }

  .sreda-format-parameter,
  .sreda-format-parameter:first-child { padding-left: 0; border-left: 0; }

  .sreda-footer__bottom { flex-direction: column; align-items: flex-start; }

  .sreda-workformats-grid { grid-template-columns: 1fr 1fr; }
  .sreda-meeting-grid { grid-template-columns: 1fr; gap: 32px; }
}
</style>
