:root {
  --graphite: #0b0f14;
  --ink: #111827;
  --deep: #0d1426;
  --deep-2: #121a2d;
  --indigo: #5b2ccf;
  --blue: #2563ff;
  --cyan: #35c2f2;
  --mist: #eef2f7;
  --page: #f7f8fb;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(17, 24, 39, .1);
  --line-light: rgba(255, 255, 255, .14);
  --gradient: linear-gradient(120deg, var(--indigo), var(--blue), var(--cyan));
  --shadow: 0 28px 90px rgba(13, 20, 38, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main[id],
.section[id] {
  scroll-margin-top: 88px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  margin: 0;
  color: inherit;
  font-family: Montserrat, Inter, sans-serif;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.8rem, 5.9vw, 5.65rem); line-height: .96; }
h2 { font-size: clamp(2.1rem, 4.4vw, 4.3rem); line-height: 1.02; }
h3 { font-size: 1.22rem; line-height: 1.22; }
p { margin: 0; line-height: 1.65; }
ul { margin: 0; padding-left: 1.1rem; }
li { margin: .5rem 0; }

.section {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  padding: 84px 0;
}

.eyebrow {
  display: inline-block;
  transform: translateY(-8px);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead {
  color: #475467;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1240px, calc(100% - 24px));
  height: 70px;
  margin: 12px auto 0;
  padding: 8px 12px 8px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(13, 20, 38, .72);
  box-shadow: 0 18px 54px rgba(13, 20, 38, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(24px) saturate(1.28);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
  transition: height .25s ease, top .25s ease;
}

.site-header.compact { height: 60px; top: 8px; background: rgba(13, 20, 38, .84); }
.brand {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 184px;
  height: 36px;
  overflow: hidden;
}
.brand img {
  width: 184px;
  height: auto;
  opacity: 0;
  transform: translateY(3px);
  animation: logoReveal .7s cubic-bezier(.2, .8, .2, 1) .18s forwards;
}
.brand:after {
  content: "";
  position: absolute;
  inset: 0 -52px;
  z-index: 3;
  background: linear-gradient(105deg, transparent 26%, rgba(53, 194, 242, .08) 43%, rgba(255, 255, 255, .52) 50%, rgba(37, 99, 255, .14) 58%, transparent 74%);
  transform: translateX(-115%);
  animation: logoImpulse .58s cubic-bezier(.2, .8, .2, 1) .42s forwards;
}

.nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .01em;
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}
.lang:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 6px 24px 6px 10px;
  color: rgba(255, 255, 255, .82);
  font-family: Inter, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 400;
  cursor: pointer;
  outline: 0;
}
.lang:focus-within {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .1);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 74px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(13, 20, 38, .94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.lang.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu button {
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .74);
  background: transparent;
  font: 400 .82rem/1 Inter, system-ui, sans-serif;
  text-align: center;
  cursor: pointer;
}
.lang-menu button:hover,
.lang-menu button.active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 12px 17px;
  font: 800 .84rem/1 Inter, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: rgba(255, 255, 255, .12); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); }
.header-cta {
  min-height: 36px;
  padding: 9px 15px;
  font-family: Inter, system-ui, sans-serif;
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .01em;
  border: 1px solid rgba(37, 99, 255, .62);
  background: rgba(37, 99, 255, .84);
  box-shadow: 0 10px 26px rgba(37, 99, 255, .16);
}
.header-cta:hover {
  background: #2563FF;
  box-shadow: 0 12px 30px rgba(37, 99, 255, .22);
}
.btn-gradient {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(37, 99, 255, .25);
}
.btn-ghost { border: 1px solid rgba(255, 255, 255, .2); color: #fff; background: rgba(255, 255, 255, .08); }
.btn-light { background: #fff; color: var(--graphite); }
.burger { display: none; }

.hero {
  position: relative;
  min-height: clamp(820px, 106vh, 1120px);
  margin-bottom: 120px;
  margin-top: -80px;
  padding-top: 80px;
  color: #fff;
  background:
    radial-gradient(circle at 69% 38%, rgba(37, 99, 255, .36), transparent 28%),
    radial-gradient(circle at 50% 48%, rgba(53, 194, 242, .18), transparent 34%),
    linear-gradient(145deg, #0a0f18 0%, #0d1426 58%, #070a0f 100%);
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 94px max(18px, calc((100vw - 1260px) / 2)) 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 44px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 56% 47%, #000 0 35%, rgba(0,0,0,.72) 56%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at 56% 47%, #000 0 35%, rgba(0,0,0,.72) 56%, transparent 84%);
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 180px;
  background: linear-gradient(180deg, #070a0f 0%, rgba(13, 20, 38, .68) 42%, var(--page) 100%);
  pointer-events: none;
}
.hero-backdrop { position: absolute; inset: 0; pointer-events: none; }
.hero-wordmark {
  position: absolute;
  top: 19%;
  right: max(28px, calc((100vw - 1190px) / 2));
  width: min(560px, 40vw);
  opacity: .1;
  filter: saturate(1.1);
}
.system-core-mark {
  position: absolute;
  top: 47%;
  right: max(196px, calc((100vw - 940px) / 2));
  width: clamp(140px, 16vw, 220px);
  transform: translateY(-50%);
  opacity: .94;
  filter: drop-shadow(0 30px 80px rgba(53, 194, 242, .24));
}
.system-core-mark img { animation: coreFloat 8s ease-in-out infinite; }
.system-orbit {
  position: absolute;
  top: 46%;
  right: max(24px, calc((100vw - 1240px) / 2));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  transform: translateY(-50%);
}
.orbit-one { width: 420px; height: 420px; animation: orbit 24s linear infinite; }
.orbit-two { width: 590px; height: 292px; border-color: rgba(53, 194, 242, .18); rotate: -18deg; animation: orbit 34s linear reverse infinite; }
.orbit-three { width: 340px; height: 174px; border-color: rgba(91, 44, 207, .22); rotate: 28deg; animation: orbit 28s linear infinite; }
.system-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(255, 255, 255, .42);
  transform-origin: center;
  text-shadow: 0 10px 34px rgba(53, 194, 242, .16);
}
.system-node span {
  color: rgba(53, 194, 242, .48);
  font-weight: 400;
  font-size: .68rem;
}
.system-node b {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.node-analysis { top: 34%; right: max(408px, calc((100vw - 360px) / 2)); rotate: -12deg; }
.node-solution { top: 39%; right: max(22px, calc((100vw - 1260px) / 2)); rotate: 10deg; }
.node-build { bottom: 27%; right: max(235px, calc((100vw - 940px) / 2)); rotate: 5deg; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(clamp(820px, 106vh, 1120px) - 80px);
  padding-bottom: 148px;
}
.hero-copy {
  max-width: 760px;
  padding-top: 0;
  transform: translateY(-28px);
  text-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { max-width: 660px; margin-top: 22px; color: #d8deea; }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}
.badge, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  color: #344054;
  font-size: .85rem;
  font-weight: 700;
}
.hero .badge {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #f7fbff;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-console {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px);
}
.console-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #e7edf7;
}
.console-row b { color: var(--cyan); }
.console-meter {
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.console-meter i { display: block; width: 72%; height: 100%; background: var(--gradient); }

.section-head { margin-bottom: 34px; }
.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  gap: 46px;
  align-items: end;
}
.section-head.split > p { color: #596579; }

.bento, .solutions-grid, .case-grid, .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.bento-card, .solution-card, .case-card, .insight-card, .mechanism, .step, .contact-form, .contact-info, .social-card, .about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 42px rgba(13, 20, 38, .055);
}
.bento-card, .solution-card, .case-card, .insight-card {
  padding: 25px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bento-card:hover, .solution-card:hover, .case-card:hover, .insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 255, .2);
  box-shadow: var(--shadow);
}
.bento-card:nth-child(1), .bento-card:nth-child(6) { grid-column: span 2; }
.bento-card h3, .solution-card h3, .insight-card h3 { margin-top: 18px; }
.bento-card p, .solution-card p, .insight-card p { margin-top: 12px; color: #596579; }

.dark {
  width: min(1240px, calc(100% - 24px));
  max-width: none;
  border-radius: 40px;
  background:
    radial-gradient(circle at 85% 12%, rgba(37, 99, 255, .18), transparent 28%),
    linear-gradient(145deg, var(--graphite), var(--deep));
  color: #fff;
  padding-left: clamp(20px, 4vw, 46px);
  padding-right: clamp(20px, 4vw, 46px);
}
.dark .section-head, .dark .approach-grid, .dark .case-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.dark p, .dark li { color: #d8deea; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flow-line {
  width: min(1180px, 100%);
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.approach-card {
  min-height: 300px;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
}
.approach-card strong {
  display: block;
  margin-bottom: 62px;
  color: rgba(255, 255, 255, .18);
  font: 800 3.1rem/1 Montserrat, sans-serif;
}
.approach-card h3 { margin-bottom: 18px; }

.solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.solution-card { display: flex; flex-direction: column; gap: 12px; min-height: 310px; }
.solution-card details { margin-top: auto; }
.solution-card summary {
  padding-top: 12px;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}
.cols b { display: block; margin-top: 12px; }

.implementation {
  width: 100%;
  max-width: none;
  background: #fff;
}
.implementation > .section-head, .implementation > .mock-dashboard {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}
.mock-dashboard {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 18px;
}
.dash-main, .mechanism {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: var(--page);
}
.dash-main {
  min-height: 360px;
  background:
    radial-gradient(circle at 75% 18%, rgba(37, 99, 255, .14), transparent 32%),
    linear-gradient(180deg, #fff, #f6f8fc);
}
.dot { display: block; width: 14px; height: 14px; border-radius: 999px; background: var(--gradient); }
.dash-main h3 { margin-top: 22px; font-size: 1.55rem; }
.dash-bars { margin-top: 36px; }
.dash-bars i {
  display: block;
  height: 12px;
  margin: 22px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mist), rgba(37, 99, 255, .42));
}
.dash-bars i:nth-child(2) { width: 75%; }
.dash-bars i:nth-child(3) { width: 52%; }
.mechanisms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mechanism b { font-family: Montserrat, sans-serif; }
.mechanism p { margin-top: 12px; color: #596579; }

.timeline { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 12px; }
.step { padding: 18px; }
.step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--graphite);
  color: #fff;
  font-weight: 800;
}
.step p { margin-top: 10px; color: #596579; font-size: .92rem; }

.case-card { border-color: var(--line-light); background: rgba(255, 255, 255, .07); }
.case-card h3 { color: #fff; }
.case-card p { margin-top: 14px; }

.about-card {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 38px;
  padding: 42px;
  border-radius: 32px;
}
.about-card p { margin-top: 18px; color: #596579; }
.about-card ul { columns: 2; gap: 36px; }
.about-card li { break-inside: avoid; }

.premium-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-radius: 32px;
  padding: 52px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(53, 194, 242, .2), transparent 28%),
    linear-gradient(135deg, var(--deep), var(--graphite));
}
.premium-cta p { max-width: 620px; margin-top: 16px; color: #d8deea; }
.premium-cta > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 74px;
  padding-top: 0;
}
.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 36px;
  align-items: center;
}
.contact .section-head {
  margin-bottom: 0;
}
.contact .section-head h2 span {
  display: block;
}
.contact .section-head > p:last-child {
  max-width: 540px;
  margin-top: 22px;
  color: #596579;
  font-size: 1.08rem;
}
.contact-cta .btn {
  width: 283px;
  min-height: 60px;
  padding: 15px 36px;
  align-self: center;
  justify-content: center;
  justify-self: center;
  transform: translateX(-94px);
  font-size: 1.04rem;
  background-size: 160% 160%;
  box-shadow: 0 18px 42px rgba(37, 99, 255, .26);
  transition: transform .22s ease, box-shadow .22s ease, background-position .35s ease;
}
.contact-cta .btn:hover {
  transform: translateX(-94px) translateY(-4px);
  background-position: 100% 50%;
  box-shadow: 0 26px 58px rgba(37, 99, 255, .34);
}
.contact-form { padding: 24px; }
.contact-form #contactFields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; color: #344054; font-weight: 700; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea, .field select, .admin-shell input, .admin-shell textarea, .admin-shell select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: #dc2626;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}
.field textarea { min-height: 118px; resize: vertical; }
.contact-info { padding: 26px; }
.contact-info p + p { margin-top: 14px; }
.social-card {
  padding: 32px 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 194, 242, .12), transparent 34%),
    #fff;
}
.social-card h3 {
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--deep);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  line-height: 1.36;
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.social-links a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(13, 20, 38, .1);
  border-radius: 16px;
  color: var(--deep);
  background: #f4f7ff;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}
.social-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 255, .28);
  color: #fff;
  background: linear-gradient(135deg, #2563ff, #35c2f2);
  box-shadow: 0 18px 34px rgba(37, 99, 255, .18);
}
.social-links svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links a:nth-child(3) svg,
.social-links a:nth-child(4) svg,
.social-links a:nth-child(6) svg {
  fill: currentColor;
  stroke: none;
}

.intro-system {
  margin-top: -42px;
  padding-top: 34px;
}
.intro-system .section-head.split {
  display: block;
  max-width: 1120px;
}
.intro-system .section-head {
  margin-bottom: 26px;
}
.analysis-deep, .difference { padding-top: 58px; padding-bottom: 58px; }
.work-process {
  padding-top: 62px;
  padding-bottom: 34px;
}
.work-process .section-head {
  margin-bottom: 20px;
}

.intro-board {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 18px;
  align-items: stretch;
}
.system-statement {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
  border-radius: 30px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(53, 194, 242, .2), transparent 34%),
    radial-gradient(circle at 24% 82%, rgba(91, 44, 207, .24), transparent 36%),
    linear-gradient(145deg, var(--deep), var(--graphite));
}
.system-statement:before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 46px rgba(255, 255, 255, .025);
}
.system-statement span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.system-statement h3 {
  max-width: 420px;
  font-size: clamp(1.45rem, 2.45vw, 2.2rem);
}
.system-statement p {
  max-width: 410px;
  margin-top: 22px;
  color: #d8deea;
}

.outcome-grid, .delivery-grid, .format-grid, .audience-grid, .strengths-grid, .process-steps {
  display: grid;
  gap: 18px;
}
.outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.outcome-grid article, .delivery-grid article, .format-grid article, .audience-grid article, .strengths-grid article, .process-steps article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 42px rgba(13, 20, 38, .055);
  padding: 24px;
}
.intro-system .outcome-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  align-content: start;
  padding: 18px;
}
.intro-system .outcome-grid article h3 {
  align-self: center;
  margin: 0;
}
.intro-system .outcome-grid article p {
  grid-column: 1 / -1;
  margin-top: 14px;
}
.outcome-grid article:before, .delivery-grid article:before, .format-grid article:before, .strengths-grid article:before {
  content: "";
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(37, 99, 255, .14);
  border-radius: 14px;
  color: var(--blue);
  background: linear-gradient(145deg, rgba(37, 99, 255, .08), rgba(53, 194, 242, .1));
  font: 500 1.08rem/1 Inter, system-ui, sans-serif;
}
.intro-system .outcome-grid article:before {
  grid-column: 1;
  grid-row: 1;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 15px;
}
.outcome-grid article:nth-child(1):before {
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cg fill='none' stroke='%232563FF' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='13' cy='14' r='6.4' stroke-width='2.4'/%3E%3Ccircle cx='23.6' cy='22.5' r='4.8' stroke-width='2.15'/%3E%3Cpath d='M13 4.8v3.1M13 20.1v3.1M3.8 14h3.1M19.1 14h3.1M6.5 7.5l2.2 2.2M17.3 18.3l2.2 2.2M19.5 7.5l-2.2 2.2M8.7 18.3l-2.2 2.2M23.6 15.6v2M23.6 27v2M16.8 22.5h2M28.4 22.5h2M18.8 17.7l1.4 1.4M27 25.9l1.4 1.4M28.4 17.7L27 19.1M20.2 25.9l-1.4 1.4' stroke-width='1.8'/%3E%3C/g%3E%3C/svg%3E") center / 28px 28px no-repeat,
    linear-gradient(145deg, rgba(37, 99, 255, .08), rgba(53, 194, 242, .1));
}
.outcome-grid article:nth-child(2):before {
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cg fill='none' stroke='%232563FF' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='18' cy='18' r='11' stroke-width='2.5'/%3E%3Cpath d='M18 10.5V18l5.6 3.4' stroke-width='2.5'/%3E%3Cpath d='M18 4.8v2.5M18 28.7v2.5M31.2 18h-2.5M7.3 18H4.8' stroke-width='1.8' opacity='.72'/%3E%3C/g%3E%3C/svg%3E") center / 30px 30px no-repeat,
    linear-gradient(145deg, rgba(37, 99, 255, .08), rgba(53, 194, 242, .1));
}
.outcome-grid article:nth-child(3):before { content: "✓"; font-size: 1.42rem; }
.outcome-grid article:nth-child(4):before { content: "↗"; font-size: 1.42rem; }
.delivery-grid article:nth-child(1):before { content: "01"; }
.delivery-grid article:nth-child(2):before { content: "02"; }
.delivery-grid article:nth-child(3):before { content: "AI"; }
.delivery-grid article:nth-child(4):before { content: "↗"; }
.format-grid article:nth-child(1):before { content: "◎"; }
.format-grid article:nth-child(2):before { content: "□"; }
.format-grid article:nth-child(3):before { content: "∞"; }
.strengths-grid article:nth-child(1):before { content: "10"; }
.strengths-grid article:nth-child(2):before { content: "≡"; }
.strengths-grid article:nth-child(3):before { content: "AI"; }
.strengths-grid article:nth-child(4):before { content: "↯"; }
.outcome-grid article:nth-child(even), .strengths-grid article:nth-child(odd) { transform: none; }
.outcome-grid article:nth-child(1) { border-top-left-radius: 30px; }
.outcome-grid article:nth-child(4) { border-bottom-right-radius: 30px; background: linear-gradient(180deg, #fff, #f4f8ff); }
.outcome-grid span, .method-strip span, .process-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.outcome-grid h3, .delivery-grid h3, .format-grid h3, .audience-grid h3, .strengths-grid h3, .process-steps h3 {
  margin-bottom: 12px;
}
.outcome-grid p, .delivery-grid p, .format-grid p, .audience-grid p, .strengths-grid p, .process-steps p, .analysis-panel p {
  color: #596579;
}

.system-method {
  padding-top: 57px;
  padding-bottom: 53px;
}
.system-method .section-head, .system-method .method-strip, .system-method .method-note, .audience .section-head, .audience .audience-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.system-method .section-head {
  margin-bottom: 42px;
}
.method-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.method-strip div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  padding: 30px 28px;
  background: rgba(255, 255, 255, .07);
}
.method-strip div:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -35px;
  z-index: 2;
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563ff, #35c2f2);
  box-shadow: 0 0 18px rgba(37, 99, 255, .48);
}
.method-strip div:not(:last-child):before {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  right: -34px;
  z-index: 3;
  width: 14px;
  height: 14px;
  border-top: 4px solid #35c2f2;
  border-right: 4px solid #35c2f2;
  filter: drop-shadow(0 0 9px rgba(53, 194, 242, .55));
  transform: rotate(45deg);
}
.method-strip span {
  margin: 0 10px 18px 0;
  font: 700 1.17rem/1.2 Montserrat, Inter, sans-serif;
  letter-spacing: 0;
  vertical-align: baseline;
}
.method-strip h3 {
  display: inline;
  margin: 0;
  color: #fff;
}
.method-strip p {
  margin-top: 18px;
}
.method-note {
  margin-top: 58px;
  max-width: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
  white-space: nowrap;
}
.system-method .method-note {
  color: #fff;
}
.method-note span {
  display: block;
  margin-top: 8px;
}

.delivery {
  padding-top: 104px;
  padding-bottom: 155px;
}
.delivery .section-head {
  max-width: 1120px;
  margin-bottom: 62px;
}
.delivery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 33px 18px;
  align-items: start;
}
.delivery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 42px rgba(13, 20, 38, .055);
}
.delivery-card:nth-child(2) {
  background:
    radial-gradient(circle at 85% 12%, rgba(37, 99, 255, .12), transparent 30%),
    #fff;
}
.delivery-card:nth-child(4) {
  background:
    linear-gradient(180deg, #fff, #f8fbff);
}
.delivery-card summary {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 138px;
  padding: 26px;
  cursor: pointer;
  list-style: none;
}
.delivery-card summary::-webkit-details-marker { display: none; }
.delivery-card .card-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  background: none;
  font: 800 1.24rem/1 Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: .02em;
}
.delivery-card .card-icon {
  background: linear-gradient(145deg, var(--blue), var(--cyan));
}
.delivery-card .card-icon:before,
.delivery-card .card-icon:after {
  pointer-events: none;
}
.icon-chart {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='20' cy='20' r='13'/%3E%3Cpath d='M30 30l10 10'/%3E%3Cpath d='M13 25v-7'/%3E%3Cpath d='M20 25V14'/%3E%3Cpath d='M27 25v-5'/%3E%3C/g%3E%3C/svg%3E") center / 56px 56px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='20' cy='20' r='13'/%3E%3Cpath d='M30 30l10 10'/%3E%3Cpath d='M13 25v-7'/%3E%3Cpath d='M20 25V14'/%3E%3Cpath d='M27 25v-5'/%3E%3C/g%3E%3C/svg%3E") center / 56px 56px no-repeat;
}
.icon-it {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 10v28'/%3E%3Cpath d='M27 10h14'/%3E%3Cpath d='M34 10v28'/%3E%3C/g%3E%3C/svg%3E") center / 54px 54px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 10v28'/%3E%3Cpath d='M27 10h14'/%3E%3Cpath d='M34 10v28'/%3E%3C/g%3E%3C/svg%3E") center / 54px 54px no-repeat;
}
.icon-structure {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='18' y='5' width='12' height='12' rx='3'/%3E%3Crect x='6' y='31' width='12' height='12' rx='3'/%3E%3Crect x='30' y='31' width='12' height='12' rx='3'/%3E%3Cpath d='M24 17v7M12 31v-7h24v7'/%3E%3C/g%3E%3C/svg%3E") center / 56px 56px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='18' y='5' width='12' height='12' rx='3'/%3E%3Crect x='6' y='31' width='12' height='12' rx='3'/%3E%3Crect x='30' y='31' width='12' height='12' rx='3'/%3E%3Cpath d='M24 17v7M12 31v-7h24v7'/%3E%3C/g%3E%3C/svg%3E") center / 56px 56px no-repeat;
}
.icon-growth {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M7 38h34' fill='none' stroke='black' stroke-width='4' stroke-linecap='round'/%3E%3Cg transform='rotate(15 24 24)' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 34l9-9 8 5 10-17'/%3E%3Cpath d='M31 14l7-1 1 7'/%3E%3Ccircle cx='11' cy='34' r='1.5' fill='black' stroke='none'/%3E%3Ccircle cx='20' cy='25' r='1.5' fill='black' stroke='none'/%3E%3Ccircle cx='28' cy='30' r='1.5' fill='black' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center / 56px 56px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M7 38h34' fill='none' stroke='black' stroke-width='4' stroke-linecap='round'/%3E%3Cg transform='rotate(15 24 24)' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 34l9-9 8 5 10-17'/%3E%3Cpath d='M31 14l7-1 1 7'/%3E%3Ccircle cx='11' cy='34' r='1.5' fill='black' stroke='none'/%3E%3Ccircle cx='20' cy='25' r='1.5' fill='black' stroke='none'/%3E%3Ccircle cx='28' cy='30' r='1.5' fill='black' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center / 56px 56px no-repeat;
}
.delivery-card .card-title .eyebrow {
  display: block;
  margin-bottom: 8px;
  transform: none;
}
.delivery-card h3 {
  margin: 0;
}
.details-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.details-label:after {
  content: "↓";
  font-size: .95rem;
  line-height: 1;
  transition: transform .2s ease;
}
.delivery-card[open] .details-label:after {
  transform: rotate(180deg);
}
.delivery-details {
  padding: 0 26px 28px 94px;
}
.delivery-grid ul, .analysis-list ul, .difference-card ul {
  margin: 18px 0;
}
.delivery-grid b {
  margin-top: auto;
  color: var(--deep);
  font-family: Montserrat, Inter, sans-serif;
}

.analysis-panel, .difference-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 42px;
  background:
    radial-gradient(circle at 86% 18%, rgba(37, 99, 255, .12), transparent 30%),
    #fff;
  box-shadow: var(--shadow);
}
.analysis-panel {
  grid-template-columns: 1.08fr .92fr;
}
.analysis-panel h2, .difference-card h2 { margin-bottom: 18px; }
.analysis-list {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: var(--page);
}

.work-formats {
  padding-top: 118px;
  padding-bottom: 68px;
}
.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.format-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  align-content: start;
  padding: 22px;
}
.format-grid article:nth-child(1) {
  grid-column: span 1;
  background: linear-gradient(180deg, #fff, #f7f9ff);
}
.format-grid article:nth-child(2),
.format-grid article:nth-child(3) {
  margin-top: 0;
}
.format-grid article span {
  display: inline-flex;
  grid-column: 2;
  margin: 0 0 8px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.format-grid article h3 {
  grid-column: 2;
  margin: 0;
}
.format-grid article p {
  grid-column: 1 / -1;
  margin-top: 16px;
}
.format-grid article:before {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(145deg, var(--indigo), var(--blue), rgba(53, 194, 242, .72));
}
.format-grid article:nth-child(1):before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='5'/%3E%3Ccircle cx='24' cy='9' r='5'/%3E%3Ccircle cx='10' cy='33' r='5'/%3E%3Ccircle cx='38' cy='33' r='5'/%3E%3Cpath d='M24 14v5M19 27l-5 4M29 27l5 4'/%3E%3C/g%3E%3C/svg%3E") center / 42px 42px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='5'/%3E%3Ccircle cx='24' cy='9' r='5'/%3E%3Ccircle cx='10' cy='33' r='5'/%3E%3Ccircle cx='38' cy='33' r='5'/%3E%3Cpath d='M24 14v5M19 27l-5 4M29 27l5 4'/%3E%3C/g%3E%3C/svg%3E") center / 42px 42px no-repeat;
}
.format-grid article:nth-child(2):before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='16'/%3E%3Ccircle cx='24' cy='24' r='8'/%3E%3Cpath d='M24 4v7M24 37v7M4 24h7M37 24h7'/%3E%3Ccircle cx='24' cy='24' r='2' fill='black' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center / 42px 42px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='16'/%3E%3Ccircle cx='24' cy='24' r='8'/%3E%3Cpath d='M24 4v7M24 37v7M4 24h7M37 24h7'/%3E%3Ccircle cx='24' cy='24' r='2' fill='black' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center / 42px 42px no-repeat;
}
.format-grid article:nth-child(3):before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M24 6 38 12v10c0 9-5.5 16.5-14 20-8.5-3.5-14-11-14-20V12l14-6Z' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 43px 43px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M24 6 38 12v10c0 9-5.5 16.5-14 20-8.5-3.5-14-11-14-20V12l14-6Z' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 43px 43px no-repeat;
}
.format-grid article:nth-child(3):after {
  content: "S";
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: center;
  margin-top: 12px;
  transform: translateX(-3px);
  color: var(--blue);
  font: 800 1.08rem/1 Montserrat, Inter, sans-serif;
  letter-spacing: 0;
}
.formats-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 26px;
  border-radius: 26px;
  min-height: 220px;
  padding: 40px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(53, 194, 242, .16), transparent 30%),
    linear-gradient(135deg, var(--deep), var(--graphite));
}
.formats-cta h3 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(1.62rem, 2.55vw, 2.48rem);
  line-height: 1.08;
}
.formats-cta p {
  max-width: 760px;
  margin-top: 14px;
  color: #d8deea;
  font-size: 1.02rem;
  line-height: 1.62;
}
.formats-cta > div:last-child {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  width: 218px;
  min-width: 218px;
  padding-top: 0;
}
.telegram-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 218px;
}
.formats-cta > div:last-child span {
  color: #d8deea;
  font-size: .7rem;
  line-height: 1;
  white-space: nowrap;
}
.formats-cta .btn {
  min-height: 37px;
  padding: 10px 18px;
  font-size: .8rem;
}
.formats-cta .btn-gradient {
  width: 218px;
  min-height: 46px;
  padding: 12px 28px;
  font-size: .9rem;
  box-shadow: 0 15px 34px rgba(37, 99, 255, .24);
}
.formats-cta .btn-telegram {
  min-height: 32px;
  padding: 8px 11px;
  gap: 6px;
  color: #fff;
  font-size: .72rem;
  background: #229ed9;
  box-shadow: 0 12px 28px rgba(34, 158, 217, .2);
}
.formats-cta .btn-telegram:before {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M21.9 4.1 18.6 20c-.2 1-1.1 1.2-1.9.7l-5.2-3.8-2.5 2.4c-.3.3-.5.5-1 .5l.4-5.4 9.8-8.9c.4-.4-.1-.6-.7-.3L5.4 12.8.2 11.2c-1.1-.4-1.1-1.1.2-1.6L20.7 1.8c.9-.3 1.7.2 1.2 2.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M21.9 4.1 18.6 20c-.2 1-1.1 1.2-1.9.7l-5.2-3.8-2.5 2.4c-.3.3-.5.5-1 .5l.4-5.4 9.8-8.9c.4-.4-.1-.6-.7-.3L5.4 12.8.2 11.2c-1.1-.4-1.1-1.1.2-1.6L20.7 1.8c.9-.3 1.7.2 1.2 2.3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn-telegram:hover {
  box-shadow: 0 20px 48px rgba(34, 158, 217, .3);
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.audience {
  padding-top: 70px;
  padding-bottom: 74px;
}
.audience .section-head {
  margin-bottom: 58px;
}
.audience .section-head h2 {
  max-width: 1120px;
}
.audience-grid article {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  padding: 22px;
}
.audience-grid h3 {
  color: #fff;
}
.audience-grid h3:after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  margin: 16px 0 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--indigo), var(--blue) 58%, rgba(53, 194, 242, .18) 82%, transparent);
}
.audience-grid p { color: #e7ecf5; }
.audience-grid article:before {
  display: none;
}

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

.strengths {
  padding-top: 72px;
  padding-bottom: 76px;
}
.strengths .section-head h2 {
  max-width: 1240px;
  font-size: clamp(2rem, 4vw, 3.82rem);
}
.experience-board {
  display: grid;
  grid-template-columns: .78fr 1.42fr;
  gap: 18px;
  align-items: stretch;
}
.experience-stat {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(53, 194, 242, .2), transparent 34%),
    linear-gradient(145deg, var(--deep), var(--graphite));
  box-shadow: var(--shadow);
}
.experience-stat:after {
  content: "";
  position: absolute;
  inset: auto -35% -42% 12%;
  height: 180px;
  border: 1px solid rgba(53, 194, 242, .18);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.experience-stat span {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.experience-stat span {
  color: var(--cyan);
}
.experience-stat strong {
  display: block;
  margin-top: 18px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(4.8rem, 8.4vw, 7rem);
  line-height: .82;
}
.experience-stat h3 {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.experience-stat p {
  max-width: 360px;
  margin-top: 18px;
  color: #d8deea;
}
.experience-clusters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.experience-clusters article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(13, 20, 38, .055);
}
.experience-clusters article:before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  width: 70%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, rgb(53, 194, 242), rgba(53, 194, 242, .62) 58%, rgba(53, 194, 242, .08) 86%, transparent);
}
.experience-clusters h3 {
  margin: 0;
  color: var(--deep);
}
.experience-clusters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}
.experience-clusters li {
  margin: 0;
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  color: #596579;
  font-size: .82rem;
  line-height: 1.25;
  background: #f4f7ff;
}
.physical-cluster {
  grid-column: 1 / -1;
}
.physical-cluster h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}
.physical-cluster ul {
  gap: 10px;
}
.physical-cluster li {
  padding: 8px 12px;
}
.digital-cluster,
.public-cluster {
  min-height: 190px;
}

.difference-card {
  align-items: start;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 194, 242, .16), transparent 32%),
    linear-gradient(135deg, var(--deep), var(--graphite));
}
.difference-card li {
  color: #d8deea;
  margin-bottom: 12px;
}

.process-steps {
  position: relative;
  grid-template-columns: .96fr 1.08fr 1.14fr 1.04fr .96fr;
  grid-auto-rows: 1fr;
  gap: 7px;
  align-items: stretch;
  padding-top: 6px;
}
.process-steps:before {
  display: none;
}
.process-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-content: start;
  min-height: 198px;
  padding: 22px 28px 22px 22px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  filter: drop-shadow(0 14px 28px rgba(13, 20, 38, .08));
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
}
.process-steps article:not(:first-child) {
  margin-left: 0;
  padding-left: 36px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%, 24px 50%);
}
.process-steps article:last-child {
  padding-left: 36px;
  padding-right: 24px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 24px 50%);
}
.process-steps article:nth-child(even) {
  background: #fff;
}
.process-steps article span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  font-size: .72rem;
  letter-spacing: 0;
}
.process-steps article h3 {
  align-self: center;
  margin: 0;
}
.process-steps article p {
  grid-column: 1 / -1;
  margin-top: 14px;
  font-size: .94rem;
  line-height: 1.5;
}
.process-steps article:last-child p {
  margin-left: 15px;
}
.process-steps article:not(:last-child):after {
  display: none;
}
.process-steps article:nth-child(even) { margin-top: 0; }

.footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 46px max(18px, calc((100vw - 1180px) / 2));
  color: #d8deea;
  background: var(--deep);
}
.footer-brand {
  display: grid;
  justify-items: center;
}
.footer-brand img {
  width: min(100%, 304px);
  max-width: 304px;
}
.footer-contacts {
  display: grid;
  justify-self: center;
  justify-items: start;
  gap: 12px;
}
.footer a {
  color: #d8deea;
  transition: color .2s ease;
}
.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contacts svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #35c2f2;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer a:hover {
  color: #35c2f2;
}
.footer small {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
  color: #98a2b3;
}
.text-link { color: var(--blue); font-weight: 800; }

.analysis-modal {
  width: min(560px, calc(100% - 28px));
  border: 0;
  border-radius: 28px;
  padding: 0;
  box-shadow: var(--shadow);
}
.analysis-modal::backdrop { background: rgba(11, 15, 20, .55); backdrop-filter: blur(6px); }
.modal-box { padding: 28px; }
.modal-box h3 {
  margin: 0 0 12px;
}
.modal-lead {
  margin-bottom: 20px;
  color: #596579;
}
.modal-close {
  float: right;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #eef2f7;
  cursor: pointer;
}
.progress {
  height: 8px;
  margin: 20px 0;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}
.progress span { display: block; width: 0; height: 100%; background: var(--gradient); transition: width .25s ease; }
.request-form {
  display: grid;
  gap: 14px;
}
.request-form .field {
  font-weight: 600;
}
.captcha-field strong {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--deep);
  background: #f4f7ff;
  font-size: .9rem;
}
.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-message {
  min-height: 20px;
  color: #c2410c;
  font-size: .88rem;
  line-height: 1.4;
}
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.modal-actions .btn-ghost { color: var(--ink); border-color: var(--line); background: #fff; }

.reveal,
.reveal-block,
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-item {
  transform: translateY(16px) scale(.985);
}
.method-strip .reveal-item,
.audience-grid .reveal-item,
.process-steps .reveal-item {
  transform: translateX(-18px) scale(.985);
}
.reveal.visible,
.reveal-block.visible,
.reveal-item.visible {
  opacity: 1;
  transform: none;
}

@keyframes logoReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes logoImpulse { to { transform: translateX(115%); } }
@keyframes orbit { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes coreFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.025); }
}

/* Admin prototype */
.admin-body { background: #f4f6fa; }
.admin-shell { display: grid; grid-template-columns: 270px 1fr; min-height: 100vh; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  color: #fff;
  background: var(--deep);
}
.admin-sidebar img { width: 176px; margin-bottom: 34px; }
.admin-sidebar button, .admin-sidebar a {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  color: #d8deea;
  background: transparent;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}
.admin-sidebar button.active, .admin-sidebar button:hover { background: rgba(255, 255, 255, .09); color: #fff; }
.admin-main { padding: 28px; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.admin-grid { display: grid; grid-template-columns: 1fr 390px; gap: 22px; }
.admin-card, .stat {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(13, 20, 38, .055);
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.stat b { font: 800 2rem/1 Montserrat, sans-serif; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { color: var(--muted); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.row-actions, .admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-btn { border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; background: #fff; cursor: pointer; }
.mini-btn.danger { color: #b42318; }
.admin-form { display: grid; gap: 13px; }
.preview-box { min-height: 240px; border-radius: 22px; padding: 22px; color: #fff; background: linear-gradient(140deg, var(--deep), var(--graphite)); }
.upload { border: 1px dashed rgba(11, 15, 20, .25); border-radius: 18px; padding: 18px; background: #fafbfe; text-align: center; }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.toggle-list { display: grid; gap: 10px; }
.switch-row { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 16px; padding: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .brand img { opacity: 1; transform: none; }
  .brand:after { display: none; }
}

@media (max-width: 1080px) {
  .nav { gap: 10px; font-size: .78rem; }
  .hero-inner { align-items: center; }
  .hero-console { display: none; }
  .system-core-mark { right: calc(5% + 100px); top: 38%; width: clamp(136px, 21vw, 210px); }
  .system-node { display: none; }
  .hero-wordmark { width: 54vw; top: 17%; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow-x: hidden;
  }
  body.nav-open:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 28;
    background: rgba(7, 10, 15, .42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  body.nav-open .site-header {
    z-index: 40;
  }
  .burger {
    display: grid;
    gap: 5px;
    border: 0;
    border-radius: 999px;
    padding: 13px;
    background: rgba(255, 255, 255, .1);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }
  .burger[aria-expanded="true"] {
    background: rgba(37, 99, 255, .82);
  }
  .burger[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .burger[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .nav {
    position: fixed;
    top: 86px;
    left: 50%;
    right: auto;
    z-index: 39;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(420px, calc(100% - 28px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background:
      radial-gradient(circle at 88% 0%, rgba(53, 194, 242, .18), transparent 34%),
      rgba(13, 20, 38, .92);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px) scale(.98);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-radius: 18px;
    padding: 0 16px;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
  }
  .nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
  }
  .header-actions { margin-left: auto; }
  .section-head.split, .mock-dashboard, .about-card, .contact, .footer { grid-template-columns: 1fr; }
  .contact-cta { grid-template-columns: minmax(0, 1fr) max-content; align-items: center; }
  .contact-cta .btn { width: 283px; }
  .bento, .solutions-grid, .case-grid, .insights-grid, .approach-grid { grid-template-columns: 1fr 1fr; }
  .intro-board, .delivery-stage { grid-template-columns: 1fr; }
  .system-statement { min-height: auto; }
  .delivery-map { position: relative; top: auto; min-height: 360px; }
  .outcome-grid, .delivery-grid, .format-grid, .audience-grid, .strengths-grid, .process-steps { grid-template-columns: 1fr 1fr; }
  .analysis-panel, .difference-card { grid-template-columns: 1fr; padding: 30px; }
  .delivery-grid article { min-height: auto; }
  .outcome-grid article:nth-child(even), .strengths-grid article:nth-child(odd), .format-grid article:nth-child(n), .process-steps article:nth-child(even) { transform: none; margin-top: 0; }
  .process-steps article:after { display: none; }
  .process-steps {
    gap: 14px;
  }
  .process-steps article,
  .process-steps article:not(:first-child),
  .process-steps article:last-child {
    margin-left: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    clip-path: none;
  }
  .experience-board {
    grid-template-columns: 1fr;
  }
  .experience-stat {
    min-height: auto;
  }
  .experience-stat strong {
    font-size: clamp(4rem, 14vw, 6rem);
  }
  .system-method {
    padding: 82px clamp(22px, 4vw, 38px) 86px;
  }
  .system-method .section-head {
    margin-bottom: 42px;
  }
  .system-method .section-head h2 {
    max-width: 820px;
  }
  .method-strip {
    grid-template-columns: 1fr;
    gap: 54px;
    width: min(720px, 100%);
  }
  .method-strip div {
    padding: 32px 28px;
    border-radius: 24px;
  }
  .method-strip div:not(:last-child):after {
    display: block;
    top: auto;
    right: auto;
    bottom: -48px;
    left: 50%;
    width: 28px;
    height: 42px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 42'%3E%3Cpath d='M14 3v30M5 24l9 9 9-9' fill='none' stroke='%2335C2F2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    box-shadow: none;
    transform: translateX(-50%);
  }
  .method-strip div:not(:last-child):before {
    display: none;
  }
  .method-strip p {
    max-width: 560px;
    margin-top: 18px;
    line-height: 1.62;
  }
  .method-note {
    width: min(720px, 100%);
    margin-top: 58px;
    line-height: 1.45;
    white-space: normal;
  }
  .formats-cta {
    display: grid;
    min-height: 0;
    padding: 40px 36px;
  }
  .formats-cta > div:last-child {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  .telegram-row { justify-content: center; }
  .delivery-card summary {
    min-height: 132px;
    padding: 24px;
  }
  .delivery-details {
    padding: 0 24px 26px 92px;
  }
  .bento-card:nth-child(1), .bento-card:nth-child(6) { grid-column: auto; }
  .about-card ul { columns: 1; }
}

@media (max-width: 700px) {
  main[id],
  .section[id] {
    scroll-margin-top: 78px;
  }
  h1 { font-size: clamp(2.62rem, 12.2vw, 3.72rem); }
  .section { width: min(100% - 28px, 1180px); padding: 62px 0; }
  .site-header { top: 8px; width: calc(100% - 16px); height: 62px; padding-left: 16px; }
  .brand, .brand img { width: 132px; }
  .header-actions {
    gap: 7px;
    margin-left: auto;
  }
  .header-actions .header-cta {
    display: none;
  }
  .lang-toggle { padding: 6px 24px 6px 10px; }
  .hero { min-height: 760px; margin-top: -74px; margin-bottom: 34px; padding-top: 74px; }
  .hero:before { inset: 82px 10px 26px; border-radius: 28px; background-size: 40px 40px; }
  .hero:after { height: 160px; }
  .hero-inner { min-height: 686px; padding-bottom: 120px; align-items: center; }
  .hero-copy { max-width: 96%; padding-top: 0; transform: translateY(-18px); }
  .hero-copy h1 {
    font-size: clamp(2.18rem, 10.4vw, 3.12rem);
    max-width: 100%;
  }
  .hero-copy .lead { font-size: 1rem; }
  .hero-wordmark { width: 94vw; right: -30vw; top: 17%; }
  .system-core-mark { width: 166px; right: 28px; top: 39%; opacity: .72; }
  .orbit-one { width: 300px; height: 300px; right: -58px; top: 35%; }
  .orbit-two, .orbit-three { display: none; }
  .hero-cta { display: grid; }
  .btn { width: 100%; }
  .intro-system,
  .delivery,
  .work-formats,
  .strengths,
  .work-process,
  .contact {
    margin-top: 0;
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .contact {
    gap: 22px;
  }
  .contact-cta {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
    text-align: center;
  }
  .contact-cta .section-head {
    display: grid;
    justify-items: center;
  }
  .contact-cta .section-head > p:last-child {
    max-width: 92%;
  }
  .contact-cta .btn {
    width: min(100%, 283px);
    transform: none;
  }
  .contact-cta .btn:hover {
    transform: translateY(-4px);
  }
  .social-card { padding: 26px 18px; }
  .social-links { flex-wrap: wrap; gap: 10px; }
  .social-links a { width: 44px; height: 44px; border-radius: 14px; }
  .bento, .solutions-grid, .case-grid, .insights-grid, .approach-grid, .timeline, .mechanisms, .contact-form #contactFields, .outcome-grid, .delivery-grid, .format-grid, .audience-grid, .strengths-grid, .process-steps, .method-strip { grid-template-columns: 1fr; }
  .strengths { padding-top: 62px; padding-bottom: 62px; }
  .experience-clusters,
  .digital-cluster,
  .public-cluster {
    grid-template-columns: 1fr;
  }
  .experience-stat {
    border-radius: 26px;
    padding: 28px;
  }
  .experience-clusters article {
    border-radius: 22px;
    padding: 20px;
  }
  .digital-cluster ul {
    margin-top: 16px;
  }
  .system-method { padding: 62px 22px; }
  .system-method .section-head {
    margin-bottom: 38px;
  }
  .method-strip {
    gap: 50px;
  }
  .method-strip div {
    padding: 30px 24px;
    border-radius: 22px;
  }
  .method-strip div:not(:last-child):after {
    bottom: -44px;
    height: 38px;
  }
  .method-strip div:not(:last-child):before {
    display: none;
  }
  .method-strip span {
    font-size: 1.12rem;
  }
  .method-strip p {
    margin-top: 16px;
    line-height: 1.58;
  }
  .method-note {
    margin-top: 54px;
    border-radius: 24px;
    font-size: 1rem;
    line-height: 1.5;
    white-space: normal;
  }
  .delivery-card summary {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    min-height: 120px;
    padding: 22px;
  }
  .delivery-card .card-icon {
    width: 58px;
    height: 58px;
    font-size: 1.08rem;
  }
  .icon-chart, .icon-structure, .icon-growth {
    -webkit-mask-size: 48px 48px;
    mask-size: 48px 48px;
  }
  .details-label {
    grid-column: 2;
    justify-self: start;
    margin-top: -2px;
  }
  .delivery-details {
    padding: 0 22px 24px;
  }
  .system-statement { padding: 26px; border-radius: 26px; }
  .system-statement span { margin-bottom: 28px; }
  .intro-system { margin-top: 0; padding-top: 62px; }
  .delivery-map { min-height: 300px; border-radius: 26px; }
  .process-steps { padding-top: 0; }
  .process-steps:before { display: none; }
  .process-steps article { min-height: auto; padding: 22px; }
  .analysis-panel, .difference-card { border-radius: 26px; padding: 24px; }
  .dark { width: calc(100% - 16px); border-radius: 28px; }
  .audience.dark {
    width: calc(100% - 28px);
    padding: 62px 18px;
  }
  .audience .section-head {
    margin-bottom: 34px;
    padding: 0 4px;
  }
  .audience .section-head h2 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    line-height: 1.08;
  }
  .audience-grid {
    gap: 14px;
    padding: 0 2px;
  }
  .audience-grid article {
    border-radius: 20px;
    padding: 22px 20px 24px;
  }
  .audience-grid h3:after {
    margin: 14px 0 16px;
  }
  .premium-cta { display: block; border-radius: 26px; padding: 32px; }
  .premium-cta > div:last-child { justify-content: stretch; margin-top: 22px; }
  .formats-cta {
    border-radius: 24px;
    padding: 32px 24px;
  }
  .formats-cta h3 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }
  .formats-cta p {
    font-size: 1rem;
  }
  .formats-cta > div:last-child {
    display: grid;
    justify-items: center;
  }
  .telegram-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .formats-cta .btn-telegram {
    width: 148px;
  }
  .intro-system {
    padding-top: 34px;
  }
  .work-formats,
  .strengths,
  .work-process {
    padding-bottom: 38px;
  }
  .strengths,
  .work-process,
  .contact {
    padding-top: 38px;
  }
  .footer { padding: 34px 18px; }
}

@media (max-width: 980px) {
  .admin-shell, .admin-grid, .stat-grid, .seo-grid { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .admin-main { padding: 16px; }
  .admin-top { display: block; }
}
