:root {
  color-scheme: dark;
  --bg: #0d1113;
  --panel: #151a1d;
  --text: #f5f7f2;
  --muted: #aab1ad;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #32d4e7;
  --amber: #ffb84d;
  --green: #86d970;
  --rose: #e66e84;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

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

.hero {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 12, 14, 0.92) 0%, rgba(9, 12, 14, 0.7) 43%, rgba(9, 12, 14, 0.12) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(13, 17, 19, 0) 28%);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 800;
  font-size: 18px;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 10, 12, 0.66);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
  color: rgba(245, 247, 242, 0.82);
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.nav__links a {
  padding: 8px 10px;
  border-radius: 7px;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link--featured {
  padding: 10px 15px !important;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(50, 212, 231, 0.16), 0 14px 32px rgba(50, 212, 231, 0.24);
  color: #071113 !important;
  font-weight: 950;
  white-space: nowrap;
}

.nav__link--featured:hover {
  background: #6eeeff !important;
  color: #071113 !important;
}

.nav__link--youtube {
  border: 1px solid rgba(255, 184, 77, 0.52);
  background: rgba(255, 184, 77, 0.12);
  color: #ffe2ad !important;
  font-weight: 900;
  white-space: nowrap;
}

.nav__link--youtube:hover {
  background: rgba(255, 184, 77, 0.22) !important;
}

.hero__content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  align-self: center;
  padding: 28px 0 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.14;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.button--primary {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #071113;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button--telegram {
  border-color: #2aabee;
  background: #2aabee;
  color: #ffffff;
}

.button--vk {
  border-color: #0077ff;
  background: #0077ff;
  color: #ffffff;
}

.button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button__icon--stroke {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101517;
}

.strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.strip span:last-child {
  border-right: 0;
}

.direction-picker {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 12px;
}

.direction-picker__head {
  max-width: 760px;
  margin-bottom: 18px;
}

.direction-picker__head h2 {
  font-size: clamp(26px, 3.6vw, 42px);
}

.direction-picker__head p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

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

.direction-card {
  min-height: 184px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #111618;
}

.direction-card:hover {
  border-color: currentColor;
  transform: translateY(-2px);
}

.direction-card span {
  color: currentColor;
  font-size: 13px;
  font-weight: 950;
}

.direction-card h3 {
  margin: 22px 0 10px;
  font-size: clamp(21px, 2.4vw, 28px);
}

.direction-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.direction-card--business {
  color: var(--amber);
}

.direction-card--social {
  color: var(--cyan);
}

.direction-card--youtube {
  color: var(--green);
}

.reels-showcase {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 18px;
}

.reels-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.reels-showcase__head h2 {
  font-size: clamp(26px, 3vw, 38px);
}

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

.reels-showcase article {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.reels-showcase video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 8px;
  background: #050607;
  object-fit: cover;
}

.reels-showcase h3 {
  margin: 12px 0 4px;
  font-size: 17px;
}

.reels-showcase p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.page-entry {
  padding-top: 54px;
  padding-bottom: 28px;
}

.page-entry__head {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.page-entry__card {
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #111618;
}

.page-entry__card--primary {
  border-color: rgba(50, 212, 231, 0.48);
  box-shadow: 0 22px 70px rgba(50, 212, 231, 0.08);
}

.page-entry__card--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.94) 0%, rgba(8, 11, 13, 0.74) 46%, rgba(8, 11, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 11, 13, 0.86) 0%, rgba(8, 11, 13, 0.1) 60%);
}

.page-entry__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-entry__card > *:not(img) {
  position: relative;
  z-index: 1;
}

.page-entry__card h3 {
  max-width: 540px;
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
}

.page-entry__card .case-card__tag {
  margin-bottom: 16px;
}

.page-entry__card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.page-entry__button {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--cyan);
  color: #071113;
  font-weight: 900;
}

.page-entry__card--soon {
  border-color: rgba(255, 184, 77, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 184, 77, 0.12), rgba(255, 255, 255, 0.02)),
    #111618;
}

.page-entry__card--motion {
  border-color: rgba(255, 184, 77, 0.48);
  box-shadow: 0 22px 70px rgba(255, 184, 77, 0.06);
}

.page-entry__card--product {
  border-color: rgba(184, 241, 90, 0.48);
  box-shadow: 0 22px 70px rgba(184, 241, 90, 0.06);
}

.page-entry__card--ads {
  border-color: rgba(255, 93, 108, 0.48);
  box-shadow: 0 22px 70px rgba(255, 93, 108, 0.07);
}

.page-entry__card--article {
  border-color: rgba(134, 217, 112, 0.42);
  box-shadow: 0 22px 70px rgba(134, 217, 112, 0.06);
}

.page-entry__card--motion::after,
.page-entry__card--product::after,
.page-entry__card--ads::after,
.page-entry__card--article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.92) 0%, rgba(8, 11, 13, 0.74) 52%, rgba(8, 11, 13, 0.26) 100%),
    linear-gradient(0deg, rgba(8, 11, 13, 0.84) 0%, rgba(8, 11, 13, 0.14) 60%);
}

.page-entry__card--soon h3,
.page-entry__card--motion h3,
.page-entry__card--product h3,
.page-entry__card--ads h3,
.page-entry__card--article h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.article-hub {
  padding-top: 34px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-hub__grid {
  display: grid;
  gap: 18px;
}

.article-hub__card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.article-hub__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.article-hub__card h3 {
  max-width: 680px;
  font-size: clamp(26px, 3.4vw, 42px);
}

.article-hub__card p {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.experiment-hub {
  padding-top: 34px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experiment-hub__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.experiment-hub__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.experiment-hub__metrics span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.45;
}

.experiment-hub__metrics strong {
  margin-right: 8px;
  color: var(--text);
  font-size: 28px;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
}

.section--compact {
  padding-top: 16px;
}

.section__head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section__head--cases {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 280px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section__head--cases h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
}

.section__lead {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.youtube-offer {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.youtube-offer__media {
  padding: 14px;
  border: 1px solid rgba(255, 184, 77, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 184, 77, 0.12), rgba(50, 212, 231, 0.08)),
    #101416;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.youtube-offer video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #050607;
  object-fit: cover;
}

.youtube-offer__copy h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.youtube-offer__copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.youtube-offer__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.youtube-offer__points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(245, 247, 242, 0.86);
  line-height: 1.35;
  font-weight: 750;
}

.youtube-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.youtube-offer--secondary {
  margin-top: 18px;
}

.case-metrics {
  display: grid;
  gap: 8px;
}

.case-metrics span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.case-metrics strong {
  color: var(--text);
  font-size: 20px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.featured-case {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 26px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #111618;
}

.featured-case--hero {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #111618;
}

.featured-case--wide {
  grid-template-columns: minmax(420px, 720px) 1fr;
}

.featured-case--horizontal {
  grid-template-columns: minmax(420px, 760px) 1fr;
}

.case-video-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-video-pair figure {
  margin: 0;
}

.featured-case video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  background: #050607;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.featured-case--horizontal video {
  aspect-ratio: 16 / 9;
}

.featured-case--hero h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.featured-case--hero p {
  font-size: 17px;
}

.case-video-pair figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.featured-case p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.55;
}

.portfolio-archive {
  margin: 22px 0 18px;
  border: 1px solid rgba(50, 212, 231, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.portfolio-archive summary,
.compact-details summary {
  list-style: none;
  cursor: pointer;
}

.portfolio-archive summary::-webkit-details-marker,
.compact-details summary::-webkit-details-marker {
  display: none;
}

.portfolio-archive summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.portfolio-archive summary::after,
.compact-details summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 24px;
  font-weight: 700;
}

.portfolio-archive[open] summary::after,
.compact-details[open] summary::after {
  content: "-";
}

.portfolio-archive summary span {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.portfolio-archive summary small {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.45;
}

.portfolio-archive__body {
  padding: 0 18px 18px;
}

.portfolio-archive__body .featured-case:last-child {
  margin-bottom: 0;
}

.compact-details {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid var(--line);
}

.compact-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(50, 212, 231, 0.08), rgba(255, 184, 77, 0.055)),
    rgba(255, 255, 255, 0.035);
}

.compact-details summary h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.compact-details summary .section__lead,
.compact-details summary .spec-offer__content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.compact-details summary .section__head,
.compact-details summary .page-entry__head,
.compact-details summary .spec-offer__content {
  margin-bottom: 0;
}

.compact-details > :not(summary) {
  margin-top: 22px;
}

.compact-details.service-brief {
  display: block;
}

.compact-details.service-brief .brief-button {
  grid-column: auto;
  margin-top: 16px;
}

.case-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--panel);
  overflow: hidden;
  position: relative;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 84px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  opacity: 0.45;
  transform: rotate(12deg);
}

.case-card p {
  color: var(--muted);
  line-height: 1.48;
}

.case-card span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.case-card__tag {
  margin-bottom: auto;
  color: currentColor !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card--cyan {
  color: var(--cyan);
}

.case-card--amber {
  color: var(--amber);
}

.case-card--green {
  color: var(--green);
}

.case-card--steel {
  color: #b9c6d0;
}

.case-card--rose {
  color: var(--rose);
}

.case-card--ink {
  color: #f2f2e8;
}

.seo-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.services div {
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.services p {
  color: var(--muted);
  line-height: 1.55;
}

.service-seo {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-seo__grid div,
.faq-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.55;
}

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

.spec-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-offer__content {
  align-self: center;
}

.spec-offer__content h2 {
  max-width: 780px;
}

.spec-offer__content p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.spec-offer__panel {
  padding: 24px;
  border: 1px solid rgba(255, 184, 77, 0.42);
  border-radius: 8px;
  background: #131719;
}

.spec-offer__panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--amber);
  font-weight: 950;
}

.spec-offer__panel ol {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: rgba(245, 247, 242, 0.86);
  line-height: 1.45;
}

.spec-preview {
  padding-top: 42px;
}

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

.spec-preview article {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-preview video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #07090a;
  object-fit: cover;
}

.spec-preview h3 {
  font-size: 19px;
}

.spec-preview p {
  color: var(--muted);
  line-height: 1.5;
}

.content-plans {
  border-top: 1px solid var(--line);
}

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

.content-plan {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.content-plan__head {
  padding: 18px 18px 8px;
}

.content-plan__head p:last-child {
  color: var(--muted);
  line-height: 1.5;
}

.content-plan__table {
  min-width: 0;
  overflow-x: auto;
}

.content-plan table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}

.content-plan th,
.content-plan td {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.35;
}

.content-plan th {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-plan td {
  color: rgba(245, 247, 242, 0.84);
}

.content-plan td:first-child {
  color: var(--text);
  font-weight: 900;
}

.content-management {
  border-top: 1px solid var(--line);
}

.management-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.management-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(50, 212, 231, 0.1), rgba(255, 255, 255, 0.035) 34%),
    #121719;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.management-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber), var(--green));
}

.management-card h3 {
  max-width: 520px;
  margin-bottom: 10px;
}

.management-card__lead {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.55;
}

.management-card--audit {
  grid-row: span 2;
}

.audit-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.audit-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(7, 10, 11, 0.42);
}

.audit-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.audit-item__top span {
  color: var(--text);
  font-weight: 950;
}

.audit-item__top strong {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 184, 77, 0.14);
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
}

.audit-item p {
  margin-bottom: 6px;
  color: rgba(245, 247, 242, 0.82);
  line-height: 1.48;
}

.audit-item p:last-child {
  margin-bottom: 0;
}

.audit-item b {
  color: var(--text);
}

.reply-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.reply-list div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(7, 10, 11, 0.44);
}

.reply-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reply-list p {
  margin-bottom: 0;
  color: rgba(245, 247, 242, 0.84);
  line-height: 1.45;
}

.database-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.database-list div {
  display: grid;
  grid-template-columns: minmax(88px, 0.52fr) minmax(0, 1fr);
  gap: 5px 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.database-list span {
  grid-row: span 2;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.database-list strong {
  color: var(--text);
  line-height: 1.35;
}

.database-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.35;
}

.launch-offer {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(50, 212, 231, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(50, 212, 231, 0.14), rgba(255, 184, 77, 0.1) 58%, rgba(134, 217, 112, 0.08));
}

.launch-offer span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-offer strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
}

.launch-offer p {
  margin-bottom: 0;
  color: rgba(245, 247, 242, 0.82);
  line-height: 1.55;
}

.packages article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111618;
}

.packages article:nth-child(1) {
  color: var(--cyan);
}

.packages article:nth-child(2) {
  color: var(--amber);
}

.packages article:nth-child(3) {
  color: var(--green);
}

.packages p {
  color: var(--muted);
  line-height: 1.55;
}

.package-price {
  margin-bottom: 14px;
  color: var(--text) !important;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.package-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.package-cta p {
  flex: 0 1 430px;
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(245, 247, 242, 0.84);
  line-height: 1.5;
  font-weight: 750;
}

.package-cta__actions {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.workflow div {
  display: grid;
  gap: 10px;
}

.workflow span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.workflow p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 44px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact h2 {
  max-width: 700px;
  font-size: clamp(28px, 4vw, 44px);
}

.contact__note {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact__actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.service-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
}

.service-brief h2 {
  font-size: clamp(28px, 4vw, 44px);
}

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

.brief-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 1.35;
}

.brief-button {
  width: fit-content;
  grid-column: 2;
}

.service-hero {
  min-height: 78svh;
}

.service-hero__content h1 {
  max-width: 820px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.service-stat {
  min-height: 140px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.service-stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 30px;
}

.service-stat span {
  color: var(--muted);
  line-height: 1.45;
}

.service-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.service-copy__text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.article-hero {
  min-height: 68svh;
}

.ready-result-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 12, 14, 0.18) 0%, rgba(9, 12, 14, 0.09) 43%, rgba(9, 12, 14, 0) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(13, 17, 19, 0.08) 18%, rgba(13, 17, 19, 0) 42%);
}

.ready-result-hero .hero__image {
  filter: brightness(1.28) saturate(1.04);
}

.ready-result-hero .eyebrow,
.ready-result-hero h1,
.ready-result-hero .lead {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.photo-check-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 12, 14, 0.64) 0%, rgba(9, 12, 14, 0.38) 36%, rgba(9, 12, 14, 0.08) 62%, rgba(9, 12, 14, 0) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(13, 17, 19, 0.28) 12%, rgba(13, 17, 19, 0) 30%);
}

.photo-check-hero .hero__image {
  filter: brightness(1.16) saturate(1.06);
}

.photo-check-hero h1,
.photo-check-hero .lead {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.article-meta span,
.article-toc,
.article-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.article-meta span {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.article-toc strong {
  margin-bottom: 4px;
}

.article-toc a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--text);
}

.article-body {
  display: grid;
  gap: 54px;
}

.article-body section {
  scroll-margin-top: 24px;
}

.article-body h2 {
  max-width: 820px;
}

.article-body p,
.article-checklist li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

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

.article-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.article-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.article-note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px;
}

.article-note strong {
  color: var(--cyan);
}

.article-note span {
  color: var(--muted);
  line-height: 1.58;
}

.article-video {
  display: grid;
  gap: 10px;
  width: min(360px, 100%);
  margin: 28px auto 0;
}

.article-video video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05070b;
  object-fit: cover;
}

.article-video figcaption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.article-image {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.article-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05070b;
  object-fit: cover;
}

.article-image figcaption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-process {
  margin-top: 24px;
}

.article-checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  padding: 14px 16px;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.035);
}

.article-related {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.experiment-list {
  display: grid;
  gap: 24px;
}

.experiment-entry {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.experiment-entry h2 {
  margin-top: 0;
}

.experiment-entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.experiment-entry__meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.experiment-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.experiment-table th,
.experiment-table td {
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.experiment-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.service-video-grid {
  display: grid;
  gap: 18px;
}

.service-example {
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  align-items: center;
}

.service-example video {
  width: min(280px, 100%);
  max-height: 500px;
  justify-self: center;
}

.service-audience {
  display: grid;
  gap: 28px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-list article {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.audience-list p {
  color: var(--muted);
  line-height: 1.55;
}

.preview-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.preview-layout {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr;
  gap: 34px;
  align-items: center;
}

.preview-layout video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050607;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

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

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav__links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav__link--featured {
    margin: 0;
  }

  .hero {
    min-height: 66svh;
  }

  .hero__content {
    align-self: end;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .strip,
  .direction-picker__grid,
  .case-grid,
  .seo-copy,
  .services,
  .youtube-offer,
  .content-plan-grid,
  .management-grid,
  .faq-list,
  .spec-offer,
  .spec-preview__grid,
  .launch-offer,
  .packages,
  .workflow,
  .section__head--cases,
  .featured-case {
    grid-template-columns: 1fr;
  }

  .section__head--cases {
    gap: 18px;
    margin-bottom: 22px;
  }

  .section__lead {
    font-size: 16px;
  }

  .reels-showcase__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .reels-showcase__grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 72vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .reels-showcase article {
    scroll-snap-align: start;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-video-pair {
    grid-template-columns: 1fr;
  }

  .portfolio-archive summary,
  .compact-details summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-archive summary::after,
  .compact-details summary::after {
    align-self: flex-start;
  }

  .youtube-offer__points {
    grid-template-columns: 1fr;
  }

  .strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-entry {
    padding-top: 22px;
  }

  .page-entry__grid {
    grid-template-columns: 1fr;
  }

  .page-entry__card {
    min-height: 310px;
  }

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

  .package-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-cta__actions {
    width: 100%;
  }

  .service-brief {
    grid-template-columns: 1fr;
  }

  .brief-button {
    width: 100%;
    grid-column: auto;
  }

  .contact__actions {
    width: 100%;
  }

  .management-card--audit {
    grid-row: auto;
  }

  .button {
    width: 100%;
  }

  .service-strip,
  .service-copy,
  .service-example,
  .audience-list,
  .article-layout,
  .article-grid,
  .experiment-hub__body,
  .experiment-hub__metrics,
  .article-hub__card {
    grid-template-columns: 1fr;
  }

  .experiment-hub__body {
    align-items: stretch;
  }

  .experiment-table {
    display: block;
    overflow-x: auto;
  }

  .article-toc {
    position: static;
  }

  .service-stat {
    min-height: auto;
  }

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-copy h1 {
    font-size: 38px;
  }
}
