@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/Unbounded-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #1f1f1f;
  --red: #FAB900;
  --white: #ffffff;
  --soft: #ededed;
  --muted: #777;
  --line: rgba(31, 31, 31, 0.1);
  --display: "Unbounded", Arial, sans-serif;
  --body: "Noto Sans", Arial, sans-serif;
  --container: min(1500px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--black);
  background: #fff;
  background-image: none;
  font-family: var(--body);
  overflow-x: clip;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  --cursor-x: -100px;
  --cursor-y: -100px;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0);
  will-change: transform;
}

.cursor::before {
  content: "";
  position: absolute;
  left: -9px;
  top: -9px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(250, 185, 0, 0.72);
  border-radius: 50%;
  background: transparent;
  transform-origin: center;
  transition: opacity 0.08s ease;
}

.cursor.is-active::before {
  left: -10px;
  top: -10px;
  width: 46px;
  height: 46px;
  border-color: transparent;
  border-radius: 0;
  background: url("assets/brand/cursor.webp") center / contain no-repeat;
  animation: none;
}

@media (hover: hover) and (pointer: fine) {
  a:hover,
  button:hover {
    cursor: none;
  }
}

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

button {
  font: inherit;
}

.email-copy-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.phone-copy-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.email-copy-group a {
  min-height: 0;
  padding: 0;
}

.copy-email-button {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.copy-email-button img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(51%) sepia(8%) saturate(103%) hue-rotate(169deg) brightness(92%) contrast(85%);
}

.copy-email-button::after {
  content: "Copiado :)";
  position: absolute;
  right: -4px;
  bottom: calc(100% + 14px);
  z-index: 4;
  padding: 13px 18px 14px;
  color: var(--white);
  background: #111;
  border-radius: 22px 22px 6px 22px;
  box-shadow: 0 14px 34px rgba(31, 31, 31, 0.22);
  font-family: var(--body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0);
}

.copy-email-button::before {
  content: none;
}

.copy-email-button.is-copied::after {
  animation: copyBubble 1.4s ease both;
}

.copy-email-button.is-copied::before {
  animation: none;
}

@keyframes copyBubble {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  18%,
  78% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }
}

.email-copy-group--light .copy-email-button img {
  filter: brightness(0) invert(1);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: var(--container);
  min-height: 70px;
  margin: 18px auto 0;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(31, 31, 31, 0.08);
  backdrop-filter: blur(18px);
}

.site-logo img {
  width: clamp(130px, 10vw, 170px);
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 520;
  text-transform: uppercase;
}

.site-nav a,
.book-call {
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.book-call:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.book-call {
  justify-self: end;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.menu-toggle,
.menu-close {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--black);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  place-items: center;
}

.menu-toggle span,
.menu-close::before,
.menu-close::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-close {
  position: relative;
  width: 46px;
  height: 46px;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-panel.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.menu-panel__inner {
  width: min(680px, calc(100vw - 36px));
  min-height: calc(100vh - 36px);
  margin-left: auto;
  padding: clamp(26px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 120px rgba(31, 31, 31, 0.16);
}

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

.menu-panel__head img {
  width: 160px;
  height: auto;
}

.menu-panel__nav {
  display: grid;
  gap: 16px;
  margin: 56px 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  line-height: 1;
  font-weight: 820;
  text-transform: uppercase;
}

.menu-panel__nav a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.menu-panel__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 620;
  color: var(--muted);
}

.hero {
  position: relative;
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(96px, 12vh, 150px) 0 clamp(44px, 7vh, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 24px;
  padding: 8px 16px;
  border: 1px solid rgba(250, 185, 0, 0.45);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 580;
  color: var(--red);
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 760px;
  margin: 30px auto 0;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.55;
  color: #595959;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-wirashow {
  position: absolute;
  right: clamp(-118px, -5vw, -42px);
  bottom: clamp(4px, 1.5vh, 22px);
  z-index: 0;
  width: clamp(150px, 15vw, 250px);
  height: auto;
  pointer-events: none;
  opacity: var(--wirashow-opacity, 1);
  transform: translate3d(0, var(--wirashow-parallax, 0px), 0) rotate(-8deg);
  transform-origin: center;
  animation: wirashowFloat 4.8s ease-in-out infinite;
  transition: none;
  will-change: transform;
}

.hero-wirashow--meditate {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(var(--wirafloat-x, 18px), var(--wirafloat-parallax, 20px), 0);
  animation-duration: 5.2s;
}

.brief-home.has-scrolled .hero-wirashow:not(.hero-wirashow--meditate) {
  opacity: 0;
  visibility: hidden;
}

.brief-home.has-scrolled .hero-wirashow--meditate {
  opacity: 1;
  visibility: visible;
}

@keyframes wirashowFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -24px;
  }
}

.button {
  min-height: 68px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 10px;
  border: 2px solid rgba(250, 185, 0, 0.28);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 720;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button__text {
  display: grid;
  gap: 5px;
  justify-items: start;
  line-height: 1;
  text-align: left;
}

.button__text small {
  color: var(--red);
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.button__text strong {
  font: inherit;
}

.button:hover,
.brief-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(31, 31, 31, 0.1);
}

.button:hover {
  border-color: rgba(250, 185, 0, 0.72);
}

.button--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.84);
}

.arrow-right-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(78%) saturate(2312%) hue-rotate(334deg) brightness(96%) contrast(89%);
}

.brief-grid {
  width: var(--container);
  margin: -18vh auto 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}

.brief-card {
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.brief-card--featured {
  background: var(--black);
  color: #fff;
}

.brief-card__meta,
.brief-card__stat,
.process span {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 620;
  color: var(--red);
  text-transform: uppercase;
}

.brief-card__stat {
  width: max-content;
  margin-top: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
}

.brief-card strong {
  display: block;
  margin: auto 0 24px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.3vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.brief-card p {
  max-width: 430px;
  margin: 0;
  color: inherit;
  opacity: 0.72;
  font-size: 1rem;
  line-height: 1.45;
}

.process {
  width: var(--container);
  margin: clamp(70px, 8vw, 120px) auto;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px minmax(0, 860px);
  gap: 40px;
}

.process h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.process p {
  margin: 22px 0 0;
  max-width: 700px;
  color: #5d5d5d;
  font-size: 1.05rem;
  line-height: 1.55;
}

.site-footer {
  width: var(--container);
  margin: clamp(42px, 6vw, 76px) auto 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
  justify-content: space-between;
  gap: 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--body);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
}

.site-footer__brand,
.site-footer__nav {
  display: grid;
  grid-template-rows: repeat(2, 1.25em);
  align-items: center;
  gap: 8px;
}

.site-footer__brand {
  justify-items: start;
  line-height: 1.25;
}

.site-footer__nav {
  justify-items: end;
  line-height: 1.25;
}

.site-footer__links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.site-footer__links-row--legal {
  gap: 8px 18px;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-style: dotted;
  text-underline-offset: 5px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.guide-promo {
  width: min(1500px, calc(100% - 80px));
  margin: 72px auto 40px;
  overflow: hidden;
  border-radius: 12px;
  background: #080808;
}

.guide-promo__link {
  min-height: 520px;
  padding: clamp(42px, 5vw, 88px) clamp(28px, 5vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  align-items: center;
  gap: 42px;
  color: #fff;
}

.guide-promo__eyebrow { margin: 0 0 22px; color: var(--red); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .42em; text-transform: uppercase; }
.guide-promo h2 { margin: 0; color: #fff; font-family: var(--display); font-size: clamp(2rem, 4.2vw, 4.6rem); line-height: 1.02; letter-spacing: -.04em; }
.guide-promo h2 em { color: var(--red); font-style: normal; }
.guide-promo__description { max-width: 670px; margin: 34px 0 0; color: #b8b8b8; font-family: var(--body); font-size: clamp(.9rem, 1.1vw, 1.1rem); line-height: 1.55; }
.guide-promo__button { min-height: 56px; margin-top: 36px; padding: 14px 24px; display: inline-flex; align-items: center; gap: 14px; border: 2px solid var(--red); border-radius: 10px; color: #fff; background: var(--red); font-family: var(--display); font-size: 0.82rem; font-weight: 720; text-transform: uppercase; transition: transform .25s ease, background-color .25s ease, border-color .25s ease; }
.guide-promo__link:hover .guide-promo__button { transform: translateY(-3px); border-color: #e2a600; background: #e2a600; }
.download-icon { width: 18px; height: 18px; flex: 0 0 18px; filter: brightness(0) invert(1); }
.guide-promo__cover { width: min(100%, 430px); max-height: 500px; justify-self: center; object-fit: contain; filter: drop-shadow(0 24px 36px rgba(0,0,0,.48)); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.guide-promo__link:hover .guide-promo__cover { transform: translateY(-6px) scale(1.015); }

@media (max-width: 760px) {
  .guide-promo { width: calc(100% - 24px); margin-top: 42px; margin-bottom: 40px; }
  .guide-promo__link { min-height: 0; padding: 40px 24px 28px; display: flex; flex-direction: column; align-items: stretch; gap: 24px; }
  .guide-promo h2 { font-size: clamp(1.75rem, 8vw, 2.6rem); }
  .guide-promo__description { margin-top: 24px; }
  .guide-promo__button { margin-top: 26px; }
  .guide-promo__cover { width: min(78%, 330px); max-height: 380px; }
}

.brief-home {
  --home-menu-width: min(720px, calc(100vw - 28px));
  --home-header-width: var(--home-menu-width);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.brief-home .site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 42;
  width: var(--home-header-width);
  min-height: 66px;
  margin-top: 16px;
  padding: 0 12px 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  transition:
    width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.brief-home.is-ready .site-header {
  transform: translateX(-50%);
}

.brief-home.is-ready .site-header.is-scrolling-down {
  transform: translate(-50%, calc(-100% - 24px));
}

.brief-home.is-menu-open .site-header.is-scrolling-down {
  transform: translateX(-50%);
}

.brief-home.is-menu-open .site-header {
  width: var(--home-menu-width);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brief-home .site-logo {
  justify-self: start;
}

.brief-home .site-logo img {
  width: clamp(192px, 15vw, 237px);
}

.brief-home.is-menu-open .site-logo img {
  width: clamp(134px, 10.5vw, 166px);
}

.brief-home .site-nav {
  display: none;
}

.brief-home .menu-toggle {
  position: relative;
  display: block;
  justify-self: center;
  width: 46px;
  height: 46px;
  border-color: rgba(31, 31, 31, 0.12);
  border-radius: 14px;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.brief-home .menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  margin: 0;
  transform-origin: center;
  transition:
    top 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.brief-home .menu-toggle span:first-child {
  top: 16px;
}

.brief-home .menu-toggle span:last-child {
  top: 26px;
}

.brief-home .site-header.is-menu-open .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.brief-home .site-header.is-menu-open .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.brief-home .book-call,
.brief-home .menu-panel__consultation {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(31, 31, 31, 0.14);
  border-radius: 12px;
  color: var(--black);
  background: #fff;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.brief-home .book-call {
  justify-self: end;
}

.brief-home .book-call:hover,
.brief-home .menu-panel__consultation:hover {
  color: var(--black);
  border-color: rgba(31, 31, 31, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.1);
}

.brief-home.is-menu-open .book-call,
.brief-home .menu-panel__consultation {
  color: #fff;
  border-color: #25d366;
  background: #25d366;
}

.brief-home.is-menu-open .book-call:hover,
.brief-home .menu-panel__consultation:hover {
  color: #fff;
  border-color: #1ebe5d;
  background: #1ebe5d;
}

.brief-home .book-call span:first-child,
.brief-home .menu-panel__consultation {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 650;
}

.brief-home .book-call .social-icon,
.brief-home .menu-panel__consultation .social-icon,
.brief-consultation__button .social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.brief-home .menu-panel {
  position: fixed;
  inset: 0;
  z-index: 36;
  padding: 16px calc(14px + var(--scrollbar-compensation, 0px)) 16px 14px;
  display: none;
  justify-content: center;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.2s ease;
  will-change: opacity;
}

.brief-home .menu-panel.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.brief-home.is-menu-open {
  overflow: hidden;
}

.brief-home .menu-panel__inner {
  width: var(--home-menu-width);
  max-height: calc(100svh - 32px);
  min-height: 0;
  margin: 0;
  padding: 84px 24px 20px;
  display: block;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(31, 31, 31, 0.14);
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 0.18s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  overflow-y: auto;
}

.brief-home .menu-panel.is-open .menu-panel__inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.brief-home .menu-panel__eyebrow {
  margin: 0 0 14px;
  color: #8a8a8a;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 650;
  text-transform: uppercase;
}

.brief-home .menu-panel__nav {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  font-family: var(--body);
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
}

.brief-home .menu-panel__nav a {
  min-height: 64px;
  padding: 10px 18px 10px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.brief-home .menu-panel__nav a:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 31, 31, 0.26);
  background: #fafafa;
}

.brief-home .menu-panel__nav strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  line-height: 1.08;
  font-weight: 760;
  text-transform: uppercase;
}

.brief-home .menu-panel__nav .button__text {
  justify-items: start;
}

.brief-home .menu-panel__nav .button__text small {
  font-size: 0.68rem;
}

.brief-home .menu-panel__nav .arrow-right-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.brief-home .menu-panel__guide {
  margin-top: 14px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #737373;
  background: #fafafa;
  font-family: var(--body);
}

.brief-home .menu-panel__guide p {
  margin: 0;
  color: #555;
  font-size: 0.68rem;
  font-weight: 650;
  text-transform: uppercase;
  white-space: nowrap;
}

.brief-home .menu-panel__guide ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.brief-home .menu-panel__guide li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.66rem;
  line-height: 1.3;
}

.brief-home .menu-panel__guide li span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 700;
}

.brief-home .menu-panel__footer {
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.brief-home .menu-panel__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: #767676;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.brief-home .menu-panel__contacts a,
.brief-home .menu-panel__contacts .email-copy-group {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: color 0.2s ease;
}

.brief-home .menu-panel__contacts a:hover {
  color: var(--black);
}

.brief-home .menu-panel__contacts .email-copy-group {
  width: fit-content;
  gap: 8px;
}

.brief-home .menu-panel__contacts .copy-email-button {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  border: 0;
  border-radius: 0;
  color: currentColor;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.brief-home .menu-panel__contacts .copy-email-button img {
  width: 18px;
  height: 18px;
  display: block;
  filter: none;
}

.brief-home .menu-panel__contacts .copy-email-button::after {
  right: -4px;
  bottom: calc(100% + 12px);
  padding: 9px 12px 10px;
  border-radius: 16px 16px 5px 16px;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(31, 31, 31, 0.18);
}

.brief-home .menu-panel__contacts .email-copy-group a {
  min-height: 0;
  padding: 0;
  border: 0;
}

.brief-home .menu-panel__contacts .email-copy-group a:hover {
  background: transparent;
}

.brief-home .menu-panel__contacts svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer a[target="_blank"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.brief-home .menu-panel__consultation {
  display: none;
}

.brief-home .menu-panel__about {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  font-family: var(--body);
}

.brief-home .menu-panel__legal {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-family: var(--body);
}

.brief-home .menu-panel__about a,
.brief-home .menu-panel__legal a {
  min-height: 52px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #777;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafafa;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.brief-home .menu-panel__about a:hover,
.brief-home .menu-panel__legal a:hover {
  color: var(--black);
  border-color: rgba(31, 31, 31, 0.3);
}

.brief-home main {
  flex: 1;
  display: block;
}

.brief-home .hero {
  min-height: 100svh;
  justify-content: center;
  padding: clamp(86px, 10vh, 128px) 0 clamp(34px, 5vh, 58px);
}

.brief-home .hero-kicker {
  margin-bottom: clamp(24px, 4vh, 36px);
  padding: 7px 14px;
  color: #666;
  border-color: var(--line);
  background: #fff;
}

.brief-home .hero-kicker,
.brief-home .hero h1,
.brief-home .hero-lead,
.brief-home .hero-actions {
  position: relative;
  z-index: 2;
}

.brief-home .hero-kicker strong {
  color: var(--red);
}

.brief-home .hero h1 {
  width: 100%;
  max-width: 1320px;
  font-size: clamp(2.9rem, 5.45vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-title__rotator {
  min-height: 0.94em;
  color: var(--black);
}

.hero-title__rotator span {
  display: inline-block;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-title__rotator span.is-changing {
  opacity: 0;
  transform: translate3d(0, 0.12em, 0);
}

.hero-title__line {
  display: block;
}

.hero-title__line--accent {
  margin-top: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.14em;
  white-space: nowrap;
}

.hero-title__prefix {
  color: var(--black);
}

.hero-accent-wrap {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  min-width: max-content;
  overflow: visible;
}

.hero-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  color: var(--red);
  white-space: nowrap;
}

.hero-info-link {
  position: absolute;
  top: 50%;
  right: -14px;
  width: clamp(45px, 3.75vw, 57px);
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  background: var(--black);
  transform: translate(62%, -50%);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
}

.author-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.author-links a:not(:last-child) {
  margin-right: 32px;
}

.social-icon {
  width: 1.18em;
  height: 1.18em;
  fill: currentColor;
  flex: 0 0 1.18em;
}

.new-window-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.hero-info-link img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-info-link:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translate(62%, -50%) scale(1.08);
}

.hero-info-link:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.brief-home .hero-lead {
  max-width: 660px;
  margin-top: clamp(16px, 2.4vh, 24px);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
}

.brief-home .hero-actions {
  margin-top: clamp(28px, 4vh, 40px);
  width: min(calc(100vw - 80px), 1180px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.brief-home .hero-actions .button {
  width: 100%;
  min-height: clamp(142px, 17vh, 164px);
  justify-content: center;
  text-align: center;
  padding: 22px 22px 20px;
  border-color: rgba(31, 31, 31, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.brief-home .hero-actions .button:hover {
  border-color: rgba(31, 31, 31, 0.16);
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.brief-home .hero-actions .button:active {
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.brief-home .hero-actions .button__text {
  width: 100%;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.brief-home .hero-actions .button__text strong {
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.08;
}

.hero-brief-action {
  width: 100%;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  color: #fff;
  background: var(--black);
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.15;
  text-transform: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.brief-home .hero-actions .button:hover .hero-brief-action {
  transform: translateY(-3px);
  background: #262626;
  box-shadow:
    0 14px 24px rgba(31, 31, 31, 0.14),
    0 6px 0 rgba(31, 31, 31, 0.14);
}

.brief-home .hero-actions .button:active .hero-brief-action {
  transform: translateY(1px);
  box-shadow:
    0 7px 14px rgba(31, 31, 31, 0.1),
    0 2px 0 rgba(31, 31, 31, 0.14);
}

.hero-brief-action em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 500;
}

.hero-brief-note {
  max-width: none;
  color: #8a8a8a;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.25;
  text-transform: none;
  white-space: nowrap;
}

@media (max-height: 820px) and (min-width: 901px) {
  .brief-home .hero {
    padding-top: 82px;
    padding-bottom: 30px;
  }

  .brief-home .hero-kicker {
    margin-bottom: 20px;
  }

  .brief-home .hero h1 {
    font-size: clamp(2.6rem, 4.8vw, 5.4rem);
  }

  .brief-home .hero-lead {
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .brief-home .hero-actions {
    margin-top: 24px;
  }

  .brief-home .hero-actions .button {
    min-height: 132px;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .hero-brief-action {
    min-height: 38px;
  }

  .hero-brief-note {
    font-size: 0.62rem;
  }
}

.brief-home .site-header,
.brief-home .hero-kicker,
.brief-home .hero h1,
.brief-home .hero-lead,
.brief-home .hero-actions {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.brief-home.is-ready .site-header,
.brief-home.is-ready .hero-kicker,
.brief-home.is-ready .hero h1,
.brief-home.is-ready .hero-lead,
.brief-home.is-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.brief-home.is-ready .site-header {
  transform: translateX(-50%);
}

.brief-home.is-ready .site-header.is-scrolling-down {
  transform: translate(-50%, calc(-100% - 24px));
}

.brief-home.is-menu-open .site-header.is-scrolling-down {
  transform: translateX(-50%);
}

.brief-home.is-ready .hero-kicker {
  transition-delay: 0.1s;
}

.brief-home.is-ready .hero h1 {
  transition-delay: 0.18s;
}

.brief-home.is-ready .hero-lead {
  transition-delay: 0.26s;
}

.brief-home.is-ready .hero-actions {
  transition-delay: 0.34s;
}

.brief-story,
.brief-consultation {
  scroll-margin-top: 24px;
}

.brief-story {
  padding: clamp(78px, 8vw, 132px) 0;
  border-top: 0;
  background: #fff;
}

#what-is-brief {
  padding-top: clamp(42px, 4.5vw, 72px);
}

.brief-story--dark {
  color: #fff;
  background: var(--black);
}

.brief-story__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(130px, 190px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 100px);
}

.brief-story__meta {
  margin: 5px 0 0;
  color: #8c8c8c;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.brief-story__eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.brief-consultation .brief-story__eyebrow {
  color: #fff;
}

.brief-story h2,
.brief-consultation h2 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
}

.brief-story h2 > span {
  display: block;
}

.brief-story__title-accent {
  color: var(--red);
}

.brief-story__lead {
  max-width: 820px;
  margin: 28px 0 0;
  color: #606060;
  font-family: var(--body);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.brief-story--dark .brief-story__lead {
  color: #bcbcbc;
}

.brief-translation,
.brief-benefits-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brief-story--dark .brief-translation {
  border-color: rgba(255, 255, 255, 0.14);
}

.brief-translation article,
.brief-benefit {
  position: relative;
  min-height: 210px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.brief-translation article:not(:first-child) {
  padding-left: 46px;
}

.brief-translation article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--red);
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--black);
  font-family: var(--body);
  font-size: 0.95rem;
  transform: translate(50%, -50%);
}

.brief-story--dark .brief-translation article {
  border-color: rgba(255, 255, 255, 0.14);
}

.brief-translation article:last-child,
.brief-benefit:last-child {
  border-right: 0;
}

.brief-translation span,
.brief-benefit span {
  color: var(--red);
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
}

.brief-translation h3,
.brief-benefit h3 {
  margin: 34px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.brief-translation p,
.brief-benefit p {
  max-width: 330px;
  margin: 0;
  color: #777;
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.5;
}

.brief-story--dark .brief-translation p {
  color: #bcbcbc;
}

.brief-explainer {
  max-width: 920px;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.brief-explainer__avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.brief-explainer p {
  max-width: 780px;
  margin: 0;
  color: #d0d0d0;
  font-family: var(--body);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.brief-explainer span {
  display: block;
  margin-top: 10px;
  color: #858585;
  font-family: var(--body);
  font-size: 0.75rem;
}

.brief-explainer--light {
  margin-top: 28px;
}

.brief-explainer--light .brief-explainer__avatar {
  border-color: #ededed;
}

.brief-explainer--light p {
  color: #606060;
}

.brief-explainer--light span {
  color: #8a8a8a;
}

.brief-explainer--intro {
  max-width: 860px;
}

.brief-consultation {
  min-height: 720px;
  padding: clamp(86px, 9vw, 140px) 0 32px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.12) 58%, rgba(31, 31, 31, 0.34) 100%),
    var(--red);
}

.brief-consultation__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  align-items: stretch;
  gap: clamp(56px, 8vw, 140px);
}

.brief-consultation__copy {
  display: grid;
  align-content: start;
}

.brief-consultation__content {
  display: grid;
  justify-items: start;
  gap: 26px;
  max-width: 720px;
  padding-top: clamp(28px, 4vw, 54px);
}

.brief-consultation__content p {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.5;
  font-weight: 500;
}

.brief-consultation__button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: var(--black);
  background: #fff;
  font-family: var(--display);
  font-size: clamp(0.72rem, 0.82vw, 0.86rem);
  font-weight: 620;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.brief-consultation__button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
  border-color: #fff;
  box-shadow: 0 14px 30px rgba(31, 31, 31, 0.16);
}

.brief-consultation__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--body);
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.4;
}

.brief-consultation__side {
  display: grid;
  align-content: space-between;
  gap: 40px;
  min-height: 520px;
  padding-top: 38px;
}

.brief-consultation__contacts {
  --contact-icon-size: 22px;
  display: grid;
  gap: 26px;
  padding-top: 0;
}

.brief-consultation__phone {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.65vw, 3.35rem);
  font-weight: 400;
  line-height: 0.95;
  white-space: nowrap;
}

.brief-consultation__online {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  color: #fff;
  font-family: var(--body);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 500;
}

.brief-consultation__online a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brief-consultation__contacts .copy-email-button {
  width: var(--contact-icon-size, 22px);
  height: var(--contact-icon-size, 22px);
  flex-basis: var(--contact-icon-size, 22px);
  color: #fff;
}

.brief-consultation__contacts .copy-email-button img,
.brief-consultation__contacts .social-icon {
  width: var(--contact-icon-size, 22px);
  height: var(--contact-icon-size, 22px);
  flex: 0 0 var(--contact-icon-size, 22px);
}

.brief-consultation__contacts .copy-email-button img {
  filter: brightness(0) invert(1);
}

.brief-consultation__wira {
  width: min(100%, 360px);
  height: auto;
  justify-self: end;
  align-self: end;
  filter: drop-shadow(0 24px 44px rgba(31, 31, 31, 0.22));
  transform: translate3d(var(--footer-wira-x, 130px), var(--footer-wira-y, 22px), 0) rotate(var(--footer-wira-rotate, 2deg));
  will-change: transform;
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 14px 0 18px;
  }

  .site-nav,
  .book-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 120px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.8rem);
  }

  .hero-actions {
    width: 100%;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .brief-grid {
    margin-top: -70px;
    grid-template-columns: 1fr;
  }

  .brief-card {
    min-height: 260px;
  }

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

  .brief-home .hero {
    min-height: calc(100svh - 80px);
    padding: 48px 0 44px;
  }

  .brief-home .site-header {
    grid-template-columns: 1fr auto;
  }

  .brief-home .book-call {
    display: none;
  }

  .brief-home .menu-toggle {
    justify-self: end;
  }

  .brief-home .menu-panel__consultation {
    display: inline-flex;
  }

  .brief-home .hero h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 7.6vw, 5.15rem);
  }

  .brief-home .hero-actions {
    width: min(100%, 520px);
  }

  .brief-home .site-footer {
    justify-content: flex-start;
    margin-top: 42px;
    padding-top: 22px;
  }

  .brief-story__inner,
  .brief-consultation__inner {
    grid-template-columns: 1fr;
  }

  .brief-translation,
  .brief-benefits-grid {
    grid-template-columns: 1fr;
  }

  .brief-translation article,
  .brief-benefit {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brief-story--dark .brief-translation article {
    border-color: rgba(255, 255, 255, 0.14);
  }

  .brief-translation article:last-child,
  .brief-benefit:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .brief-home {
    --home-header-width: calc(100vw - 20px);
    --home-menu-width: calc(100vw - 20px);
  }

  .brief-home .site-header {
    min-height: 62px;
    margin-top: 10px;
    padding: 0 10px 0 16px;
    grid-template-columns: 1fr auto;
  }

  .brief-home .site-logo img {
    width: 183px;
  }

  .brief-home .book-call {
    display: none;
  }

  .brief-home .menu-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
  }

  .brief-home .menu-panel {
    padding: 10px calc(10px + var(--scrollbar-compensation, 0px)) 10px 10px;
    background: rgba(255, 255, 255, 0.88);
  }

  .brief-home .menu-panel__inner {
    padding: 80px 14px 14px;
    border-radius: 18px;
  }

  .brief-home .menu-panel__eyebrow {
    margin-bottom: 10px;
  }

  .brief-home .menu-panel__nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brief-home .menu-panel__nav a {
    min-height: 56px;
    padding: 11px 14px 11px 16px;
    grid-template-columns: 1fr auto;
    column-gap: 8px;
  }

  .brief-home .menu-panel__nav strong {
    font-size: 0.96rem;
  }

  .brief-home .menu-panel__footer {
    margin-top: 12px;
    padding-top: 12px;
    display: grid;
    gap: 12px;
  }

  .brief-home .menu-panel__guide {
    margin-top: 10px;
    padding: 11px 12px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brief-home .menu-panel__guide ol {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .brief-home .menu-panel__guide li {
    font-size: 0.64rem;
  }

  .brief-home .menu-panel__contacts {
    display: grid;
    justify-items: start;
    gap: 8px;
    font-size: 18px;
  }

  .brief-home .menu-panel__contacts a {
    min-height: 48px;
    padding: 0;
  }

  .brief-home .menu-panel__contacts .email-copy-group {
    min-height: 48px;
    justify-content: flex-start;
  }

  .brief-home .menu-panel__about {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .brief-home .menu-panel__legal {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .brief-home .menu-panel__about a,
  .brief-home .menu-panel__legal a {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 16px;
  }

  .brief-home .menu-panel__consultation {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    justify-content: flex-start;
    padding: 0 16px;
    font-size: 16px;
  }

  .brief-home .hero {
    min-height: 100svh;
    padding: 76px 0 82px;
  }

  .brief-home .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.64rem;
  }

  .brief-home .hero h1 {
    max-width: 100%;
    font-size: clamp(2.08rem, 8.65vw, 3.18rem);
    line-height: 0.96;
  }

  .brief-home .hero-title__line--accent {
    gap: 0.1em;
  }

  .brief-home .hero-accent {
    display: grid;
    justify-content: center;
    gap: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .brief-home .hero-accent span {
    display: block;
  }

  .brief-home .hero-accent-wrap {
    min-width: max-content;
  }

  .brief-home .hero-info-link {
    top: auto;
    right: -4px;
    bottom: 0.02em;
    width: 30px;
    transform: translate(62%, -8%);
  }

  .brief-home .hero-info-link:hover {
    transform: translate(62%, -8%) scale(1.04);
  }

  .brief-home .hero-lead {
    margin-top: 16px;
    font-size: 0.95rem;
  }

  .brief-home .hero-actions {
    margin-top: 24px;
    width: min(100%, 420px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brief-home .hero-actions .button {
    width: 100%;
    min-height: 126px;
    padding: 15px 16px 14px;
    border-width: 2.5px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .brief-home .hero-actions .button__text {
    gap: 5px;
  }

  .brief-home .hero-actions .button__text small {
    font-size: 0.68rem;
  }

  .brief-home .hero-actions .button__text strong {
    font-size: clamp(1rem, 5.2vw, 1.34rem);
  }

  .hero-brief-action {
    min-height: 36px;
    margin-top: 3px;
    font-size: 0.8rem;
  }

  .hero-brief-note {
    max-width: 260px;
    font-size: 0.6rem;
    white-space: normal;
  }

  @media (max-height: 760px) {
    .brief-home .hero {
      padding-top: 68px;
      padding-bottom: 70px;
    }

    .brief-home .hero-kicker {
      margin-bottom: 14px;
    }

    .brief-home .hero h1 {
      font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .brief-home .hero-lead {
      margin-top: 12px;
      font-size: 0.86rem;
      line-height: 1.42;
    }

    .brief-home .hero-actions {
      margin-top: 18px;
      gap: 10px;
    }

    .brief-home .hero-actions .button {
      min-height: 112px;
      padding: 12px 14px;
    }

    .hero-brief-action {
      min-height: 34px;
    }

    .hero-brief-note {
      font-size: 0.56rem;
      line-height: 1.18;
    }
  }

  .brief-home .hero-wirashow {
    right: -78px;
    bottom: 28px;
    width: clamp(126px, 38vw, 178px);
    transform: translate3d(0, var(--wirashow-parallax, 0px), 0) rotate(-8deg);
  }

  .brief-home .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.25;
  }

  .site-footer__brand,
  .site-footer__nav {
    width: 100%;
    justify-items: start;
    gap: 7px;
  }

  .site-footer__links-row {
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .brief-story {
    padding: 64px 0;
  }

  #what-is-brief {
    padding-top: 38px;
  }

  .brief-story__inner {
    gap: 28px;
  }

  .brief-story h2,
  .brief-consultation h2 {
    font-size: clamp(2rem, 10.8vw, 3.15rem);
  }

  .brief-translation,
  .brief-benefits-grid {
    margin-top: 34px;
  }

  .brief-translation article,
  .brief-benefit {
    padding: 22px 6px;
  }

  .brief-translation article:not(:first-child) {
    padding-left: 6px;
  }

  .brief-translation article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: 0;
    content: "↓";
    transform: translate(50%, 50%);
  }

  .brief-translation h3,
  .brief-benefit h3 {
    margin-top: 26px;
  }

  .brief-explainer {
    margin-top: 32px;
    gap: 14px;
  }

  .brief-explainer__avatar {
    width: 52px;
    height: 52px;
  }

  .brief-consultation {
    min-height: 0;
    padding: 64px 0 24px;
  }

  .brief-consultation__side {
    min-height: 0;
    gap: 34px;
    padding-top: 0;
  }

  .brief-consultation__contacts {
    gap: 18px;
  }

  .brief-consultation__phone {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .brief-consultation__online {
    display: grid;
    gap: 12px;
    font-size: 18px;
  }

  .brief-consultation__wira {
    width: min(76vw, 300px);
    justify-self: end;
  }

  .brief-consultation__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brief-home .site-header,
  .brief-home .hero-kicker,
  .brief-home .hero h1,
  .brief-home .hero-lead,
  .brief-home .hero-actions,
  .brief-home .hero-wirashow,
  .brief-home .site-footer,
  .brief-home .menu-panel,
  .brief-home .menu-panel__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brief-home .menu-panel:not(.is-open) {
    display: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .brief-home .menu-panel.is-open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

.click-effect {
  position: fixed;
  z-index: 9999;
  width: 96px;
  height: auto;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%) scale(0.68) rotate(-8deg);
  opacity: 0;
  filter: drop-shadow(0 16px 22px rgba(31, 31, 31, 0.12));
  animation: click-pop 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.click-effect--done {
  width: 77px;
  animation-duration: 760ms;
}

@keyframes click-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.58) rotate(-10deg);
  }

  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03) rotate(-3deg);
  }

  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.96) rotate(2deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.12) rotate(5deg);
  }
}

@media (max-width: 760px) {
  .click-effect {
    width: 82px;
  }

  .click-effect--done {
    width: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .click-effect {
    animation-duration: 360ms;
  }
}
