:root {
  color-scheme: light;
  background: #fff;
  --app-height: 100svh;
  --page-x: clamp(16px, 2.4vw, 48px);
  --text: #111;
  --surface: #191919;
  --surface-hover: #232323;
  --focus: #7cb7ff;
  --scrollbar-thumb: rgba(17, 17, 17, 0.38);
  --scrollbar-thumb-hover: rgba(17, 17, 17, 0.56);
}

@property --explore-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --button-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html,
body,
.canvas,
.ugc-page-body,
.about-page,
.insights-page,
.about-reviews-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.canvas::-webkit-scrollbar,
.ugc-page-body::-webkit-scrollbar,
.about-page::-webkit-scrollbar,
.about-reviews-scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.canvas::-webkit-scrollbar-track,
.ugc-page-body::-webkit-scrollbar-track,
.about-page::-webkit-scrollbar-track,
.about-reviews-scroll::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.canvas::-webkit-scrollbar-thumb,
.ugc-page-body::-webkit-scrollbar-thumb,
.about-page::-webkit-scrollbar-thumb,
.about-reviews-scroll::-webkit-scrollbar-thumb {
  min-height: 48px;
  border-radius: 999px;
  background: var(--scrollbar-thumb);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.canvas::-webkit-scrollbar-thumb:hover,
.ugc-page-body::-webkit-scrollbar-thumb:hover,
.about-page::-webkit-scrollbar-thumb:hover,
.about-reviews-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  min-height: 100%;
  margin: 0;
  background: #fff;
  touch-action: manipulation;
}

body {
  min-height: var(--app-height);
  position: fixed;
  inset: 0;
  overflow: hidden;
  font-family: Urbanist, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 520ms ease,
    visibility 0ms linear 520ms;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
  transform: translateY(-6px);
}

.preloader-logo {
  display: block;
  width: clamp(118px, 13vw, 164px);
  height: auto;
  opacity: 0;
  animation: preloader-logo-in 620ms ease forwards;
}

.preloader-line {
  position: relative;
  display: block;
  width: clamp(96px, 10vw, 128px);
  height: 1px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.1);
}

.preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 44%;
  background: #111;
  transform: translateX(-110%);
  animation: preloader-line-pass 1.25s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.js body.is-loading .canvas {
  opacity: 0;
  transform: translateY(10px);
}

.canvas {
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

body.is-loaded .page-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loaded .site-header {
  animation: content-rise-in 680ms ease backwards;
}

body.is-loaded .content-intent h1 {
  animation: content-rise-in 720ms ease 80ms backwards;
}

body.is-loaded .content-option {
  animation: content-rise-in 720ms ease backwards;
}

body.is-loaded .content-option:nth-child(1) {
  animation-delay: 150ms;
}

body.is-loaded .content-option:nth-child(2) {
  animation-delay: 210ms;
}

body.is-loaded .content-option:nth-child(3) {
  animation-delay: 270ms;
}

body.is-loaded .content-option:nth-child(4) {
  animation-delay: 330ms;
}

body.is-loaded .content-option-explore {
  animation:
    content-rise-in 720ms ease 330ms backwards,
    explore-border-sweep 3.8s linear infinite;
}

.canvas {
  position: relative;
  width: 100%;
  height: var(--app-height);
  min-height: var(--app-height);
  background: #fff;
  touch-action: manipulation;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding:
    calc(env(safe-area-inset-top) + 28px)
    var(--page-x)
    0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  border-radius: 8px;
  outline: none;
}

.brand-link:focus-visible,
.button:focus-visible {
  box-shadow: 0 0 0 3px var(--focus);
}

.brand-logo {
  display: block;
  width: clamp(98px, 10.5vw, 136px);
  height: auto;
}

button,
.button {
  font: inherit;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  padding: 0 17px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button-primary {
  overflow: visible;
  isolation: isolate;
  background: var(--surface);
  color: #fff;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0;
  box-shadow: 0 11px 23px rgba(0, 0, 0, 0.12);
}

.button-primary:not(.pricing-order-button)::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    conic-gradient(
      from var(--button-border-angle),
      transparent 0deg,
      transparent 258deg,
      rgba(255, 126, 166, 0) 274deg,
      rgba(255, 182, 206, 0.58) 288deg,
      rgba(255, 126, 166, 0.92) 302deg,
      rgba(255, 214, 226, 0.72) 316deg,
      rgba(255, 126, 166, 0) 334deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 7px rgba(255, 126, 166, 0.28));
  opacity: 0;
  animation: button-border-snake 3.6s cubic-bezier(0.42, 0, 0.28, 1) infinite;
  pointer-events: none;
}

@keyframes button-border-snake {
  0% {
    --button-border-angle: -72deg;
    opacity: 0;
  }

  14% {
    opacity: 0;
  }

  26% {
    opacity: 0.86;
  }

  64% {
    opacity: 0.86;
  }

  78% {
    opacity: 0;
  }

  100% {
    --button-border-angle: 288deg;
    opacity: 0;
  }
}

.button-label {
  min-width: 0;
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
  transform: translateY(-1px) rotate(45deg);
}

.consultation-cluster {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.avatar-social-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.avatar-social-wrap::before,
.avatar-social-wrap::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: 0;
  border-radius: 14px;
  pointer-events: none;
  animation: about-map-pulse 2.6s ease-out infinite;
}

.avatar-social-wrap::before {
  background: rgba(255, 126, 166, 0.2);
}

.avatar-social-wrap::after {
  inset: -5px;
  border: 1px solid rgba(255, 126, 166, 0.28);
  animation-delay: 0.42s;
}

.consultation-avatar {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  border-radius: 11px;
  padding: 0;
  background: #050505;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.consultation-avatar:focus-visible,
.avatar-social-link:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px var(--focus),
    0 10px 22px rgba(0, 0, 0, 0.12);
}

.consultation-avatar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-social-link {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f1f1;
  color: #111;
  opacity: 0;
  pointer-events: none;
  transform: translate(-7px, -50%) scale(0.9);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 180ms ease;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    0 10px 22px rgba(0, 0, 0, 0.08);
}

.avatar-social-wrap.is-social-open .avatar-social-link {
  opacity: 1;
  pointer-events: auto;
  transform: translate(calc(-100% - 7px), -50%) scale(1);
}

.avatar-social-link:hover {
  background: #e9e9e9;
}

.avatar-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avatar-social-link circle:last-child {
  fill: currentColor;
  stroke: none;
}

.language-switcher {
  position: fixed;
  top: calc(env(safe-area-inset-top) + clamp(96px, 10vh, 124px));
  right: 0;
  z-index: 45;
  display: inline-flex;
  align-items: center;
}

.language-switcher-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 36px;
  border: 0;
  border-radius: 8px 0 0 8px;
  padding: 0;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.language-switcher-toggle:focus-visible,
.language-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.language-switcher-panel {
  position: absolute;
  top: 0;
  right: 38px;
  display: grid;
  gap: 5px;
  width: 156px;
  border-radius: 8px;
  padding: 8px;
  background: rgba(244, 244, 244, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, 0) scale(0.98);
  transform-origin: right top;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 16px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.language-switcher.is-open .language-switcher-panel,
.language-switcher:focus-within .language-switcher-panel,
.language-switcher:hover .language-switcher-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) scale(1);
}

.language-switcher-title {
  padding: 2px 4px 4px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.language-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  padding: 0 8px;
  background: transparent;
  color: #111;
  font: inherit;
  cursor: pointer;
}

.language-option:hover,
.language-option.is-active {
  background: #fff;
}

.language-option-name {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option-code {
  color: rgba(17, 17, 17, 0.52);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.content-intent {
  position: absolute;
  top: clamp(128px, 15vh, 160px);
  right: var(--page-x);
  bottom: clamp(16px, 2.4vh, 30px);
  left: var(--page-x);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: clamp(96px, 7.6vw, 142px) minmax(0, 1fr);
  gap: 24px 12px;
  margin: 0 auto;
}

.content-intent h1 {
  grid-column: 1 / span 2;
  grid-row: 1;
  max-width: 700px;
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.content-options {
  display: contents;
}

.content-options .content-option:nth-child(1) {
  grid-column: 1;
  grid-row: 2;
}

.content-options .content-option:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}

.content-options .content-option:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.content-options .content-option:nth-child(4) {
  grid-column: 4;
  grid-row: 2;
}

.content-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 12px 12px;
  min-height: 0;
  height: 100%;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  background: #f1f1f1;
  color: #111;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.content-option:hover {
  background: #e9e9e9;
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 12px 26px rgba(0, 0, 0, 0.08);
}

.content-option:active {
  transform: translateY(0);
}

.content-option:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px var(--focus),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.option-media {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d9d9d9;
}

.option-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-copy {
  display: grid;
  min-width: 0;
  align-self: center;
}

.option-title {
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.02;
}

.mobile-label-break {
  display: none;
}

.option-arrow {
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
}

.content-option:hover .option-arrow,
.content-option:focus-visible .option-arrow {
  transform: rotate(45deg);
}

.content-option-explore {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  place-items: center;
  align-content: center;
  gap: 16px;
  min-height: 0;
  --explore-border-angle: 0deg;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(
      from var(--explore-border-angle),
      rgba(17, 17, 17, 0.14) 0deg,
      rgba(17, 17, 17, 0.14) 252deg,
      rgba(17, 17, 17, 0.24) 285deg,
      rgba(17, 17, 17, 0.42) 306deg,
      rgba(17, 17, 17, 0.24) 328deg,
      rgba(17, 17, 17, 0.14) 360deg
    ) border-box;
  color: #111;
  text-align: center;
  box-shadow: none;
  animation: explore-border-sweep 3.8s linear infinite;
}

.content-option-explore > * {
  position: relative;
  z-index: 1;
}

.content-option-explore:hover {
  box-shadow: none;
}

.content-option-explore:focus-visible {
  border-color: rgba(17, 17, 17, 0.42);
  box-shadow: none;
}

.content-option-explore .option-title {
  max-width: 220px;
  color: #111;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1;
}

.option-monogram {
  display: block;
  width: 46px;
  height: auto;
  opacity: 0.96;
  filter: brightness(0);
}

.option-subtitle {
  max-width: 220px;
  color: rgba(17, 17, 17, 0.55);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.05;
}

.ugc-page-body {
  position: static;
  min-height: var(--app-height);
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

.ugc-page {
  display: flex;
  flex-direction: column;
  min-height: var(--app-height);
  height: auto;
  padding:
    calc(env(safe-area-inset-top) + 132px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
}

.ugc-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.ugc-hero {
  display: grid;
  justify-items: start;
  gap: clamp(16px, 2vw, 24px);
  max-width: 700px;
  margin: 0 0 clamp(36px, 5vw, 68px);
}

.ugc-hero h1 {
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.ugc-video-preview {
  display: block;
  width: clamp(116px, 12vw, 168px);
  border: 0;
  padding: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.ugc-video-preview:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.ugc-video-preview-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  aspect-ratio: 9 / 16;
  background: #111;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateZ(0);
}

.ugc-video-preview video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ugc-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
}

.ugc-video-play::before,
.ugc-video-play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  pointer-events: none;
  animation: about-map-pulse 2.2s ease-out infinite;
}

.ugc-video-play::before {
  background: rgba(255, 126, 166, 0.24);
}

.ugc-video-play::after {
  inset: -18px;
  border: 1px solid rgba(255, 126, 166, 0.38);
  animation-delay: 0.42s;
}

.ugc-video-play-icon {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #111;
}

.ugc-video-modal,
.shoots-video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
}

.ugc-video-modal[hidden],
.shoots-video-modal[hidden] {
  display: none;
}

.ugc-video-modal-backdrop,
.shoots-video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}

.ugc-video-modal-panel,
.shoots-video-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(420px, 100%);
  max-height: min(86vh, 760px);
  border-radius: 16px;
  background: #080808;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.ugc-video-modal-player,
.shoots-video-modal-player {
  display: block;
  width: 100%;
  max-height: min(86vh, 760px);
  border-radius: inherit;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: contain;
}

.shoots-video-end {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: inherit;
  padding: 24px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  text-align: center;
}

.shoots-video-end[hidden] {
  display: none;
}

.shoots-video-end-title {
  display: block;
  max-width: 260px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 0.98;
}

.shoots-video-end-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.shoots-video-end-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.shoots-video-end-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 126, 166, 0.38);
}

.ugc-video-modal-close,
.shoots-video-modal-close {
  position: absolute;
  right: -12px;
  top: -12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.ugc-video-modal-close:focus-visible,
.shoots-video-modal-close:focus-visible {
  outline: none;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(255, 255, 255, 0.36);
}

body.has-video-modal-open {
  overflow: hidden;
}

.ugc-work {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.ugc-category-tabs {
  position: sticky;
  top: calc(env(safe-area-inset-top) + 112px);
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  padding: 4px;
  border-radius: 8px;
  background: #f4f4f4;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ugc-category-tabs::-webkit-scrollbar {
  display: none;
}

.ugc-category-tab {
  flex: 0 0 auto;
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  padding: 0 17px;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.ugc-category-tab:hover {
  color: #111;
}

.ugc-category-tab.is-active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
}

.ugc-category-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.ugc-work-list {
  display: grid;
  gap: 14px;
}

.ugc-work-card {
  display: grid;
  position: relative;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.ugc-work-card-interactive {
  cursor: pointer;
}

.ugc-work-card-interactive:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.045),
    0 0 0 3px var(--focus);
}

.ugc-work-card[hidden] {
  display: none;
}

.shoots-photo-card {
  gap: 0;
}

.shoots-video-card {
  gap: 0;
}

.ugc-work-media {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: #ddd;
}

.ugc-work-media img,
.ugc-work-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shoots-photo-card .ugc-work-media {
  height: 100%;
}

.shoots-video-card .ugc-work-media {
  aspect-ratio: 9 / 16;
  height: 100%;
  background: #111;
}

.shoots-video-thumb {
  filter: saturate(1.03);
}

.shoots-video-play {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 126, 166, 0.72);
  border-radius: 999px;
  padding: 0 15px 0 13px;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font: inherit;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.shoots-video-play:hover {
  border-color: rgba(255, 126, 166, 0.96);
  background: rgba(0, 0, 0, 0.94);
  transform: translateY(-1px);
}

.shoots-video-play:focus-visible {
  outline: none;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(255, 126, 166, 0.34);
}

.shoots-video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
}

.shoots-video-play-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.shoots-photo-quick-button {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 126, 166, 0.72);
  border-radius: 999px;
  padding: 0 15px 0 13px;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  font: inherit;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 180ms ease;
}

.shoots-photo-quick-button:hover {
  border-color: rgba(255, 126, 166, 0.96);
  background: rgba(0, 0, 0, 0.94);
  transform: translateY(-1px);
}

.shoots-photo-quick-button:focus-visible {
  outline: none;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(255, 126, 166, 0.34);
}

.shoots-photo-card.is-overlay-active .shoots-photo-quick-button {
  opacity: 0;
  pointer-events: none;
}

.shoots-photo-quick-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.shoots-photo-quick-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -5px;
  width: 7px;
  height: 4px;
  border-radius: 3px 3px 0 0;
  background: currentColor;
}

.shoots-photo-quick-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.shoots-photo-quick-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ugc-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.58);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.ugc-card-overlay-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.ugc-card-overlay-text {
  max-width: 190px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 700;
  line-height: 1.02;
}

.ugc-card-overlay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 7px;
  padding: 0 18px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  pointer-events: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.ugc-card-overlay-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.ugc-card-overlay-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.32);
}

.ugc-work-card.is-overlay-active .ugc-card-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ugc-work-card.is-overlay-active .ugc-card-overlay-button {
  pointer-events: auto;
}

.ugc-work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ugc-work-brand {
  color: #111;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1;
}

.ugc-work-logo,
.ugc-work-country {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
}

.ugc-work-logo {
  width: 38px;
}

.ugc-work-country {
  width: auto;
  padding: 0 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
}

.ugc-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  margin-top: 18px;
  justify-self: center;
}

.ugc-mobile-sticky-actions {
  display: none;
}

.ugc-mobile-sticky-actions[hidden] {
  display: none !important;
}

.ugc-cta-button {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
  font-weight: 700;
}

.ugc-cta-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.ugc-cta-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ugc-order-button .ugc-cta-icon {
  background: rgba(255, 255, 255, 0.12);
}

.ugc-pricing-button {
  background: #f1f1f1;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.ugc-pricing-button .ugc-cta-icon {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.ugc-back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin: 14px auto 0;
  padding: 0 4px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.ugc-back-link:hover {
  color: rgba(17, 17, 17, 0.72);
  transform: translateX(-1px);
}

.ugc-back-link:focus-visible {
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 0 3px var(--focus);
}

.site-footer {
  width: min(100%, 1760px);
  margin: clamp(18px, 2.4vw, 34px) auto 0;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.ugc-page > .site-footer,
.contact-page > .site-footer,
.brand-ads-page > .site-footer,
.pricing-page > .site-footer,
.terms-page > .site-footer,
.not-found-page > .site-footer,
.region-page > .site-footer,
.about-page > .site-footer {
  margin-top: auto;
}

.about-shell,
.contact-shell,
.brand-ads-shell,
.not-found-shell,
.terms-shell,
.region-shell,
.ugc-page > .ugc-cta-row {
  margin-bottom: clamp(44px, 5.2vh, 76px);
}

.pricing-shell {
  margin-bottom: clamp(58px, 7vh, 92px);
}

.site-footer-rule {
  width: 100%;
  height: 1px;
  background: rgba(17, 17, 17, 0.07);
}

.site-footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(8px, 1.6vw, 18px);
  padding-top: 14px;
}

.site-footer-copy,
.site-footer-credit {
  margin: 0;
  white-space: nowrap;
  min-width: 0;
}

.site-footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.site-footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  justify-self: end;
  color: rgba(17, 17, 17, 0.38);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.site-footer-credit span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-footer-lava-logo {
  display: block;
  width: 56px;
  height: auto;
  opacity: 0.9;
}

.site-footer-terms {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  min-height: 20px;
  border-radius: 5px;
  color: rgba(17, 17, 17, 0.64);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer-terms:hover {
  color: #111;
}

.site-footer-terms:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.has-site-footer-main .content-intent {
  bottom: clamp(70px, 7vh, 88px);
}

.site-footer--main {
  position: absolute;
  right: var(--page-x);
  bottom: calc(env(safe-area-inset-bottom) + 14px);
  left: var(--page-x);
  width: auto;
  margin: 0;
}

.contact-page {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: max(100svh, var(--app-height));
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    calc(env(safe-area-inset-top) + 132px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
  overscroll-behavior-y: contain;
  scroll-padding-top: calc(env(safe-area-inset-top) + 112px);
  scroll-padding-bottom: 42vh;
  -webkit-overflow-scrolling: touch;
}

.contact-page.has-contact-input-focus {
  min-height: 100svh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 18px);
}

.contact-page.has-contact-input-focus .contact-shell {
  margin-bottom: 18px;
}

.contact-page.has-contact-input-focus > .site-footer,
.contact-page.has-contact-input-focus .contact-back-link {
  display: none;
}

.contact-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.contact-shell {
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  gap: 20px;
  flex: 0 0 auto;
  min-height: 0;
  width: min(100%, 720px);
  margin: 0 auto;
}

.contact-page > .site-footer {
  flex: 0 0 auto;
}

.contact-hero {
  grid-row: 1;
}

.contact-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-methods {
  grid-row: 2;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(10px, 1.6vw, 20px);
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: start;
  gap: 16px;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.contact-method-copy {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
}

.contact-method-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-method-secondary .contact-method-icon {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.contact-method-icon svg,
.contact-select-arrow svg,
.contact-additional-arrow svg,
.contact-comment-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-icon .whatsapp-mark {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.contact-method-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
}

.contact-method-primary {
  background: #111;
  color: #fff;
  box-shadow: 0 11px 23px rgba(0, 0, 0, 0.12);
}

.contact-method-secondary {
  background: #f1f1f1;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.contact-method:hover {
  transform: translateY(-1px);
}

.contact-method:hover .contact-method-arrow,
.contact-method:focus-visible .contact-method-arrow {
  transform: rotate(45deg);
}

.contact-method-primary:hover .contact-method-arrow,
.contact-method-primary:focus-visible .contact-method-arrow {
  transform: rotate(-45deg);
}

.contact-method:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.contact-additional summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.contact-form-panel {
  grid-row: 3;
  width: 100%;
  margin: 8px auto 0;
}

.contact-form-panel[hidden] {
  display: none;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-field {
  display: grid;
  gap: 8px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: #f1f1f1;
  color: #111;
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.2;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.contact-phone-wrap {
  position: relative;
  display: block;
}

.contact-phone-wrap input {
  transition: padding-left 160ms ease;
}

.contact-phone-wrap.has-country input {
  padding-left: 118px;
}

.contact-country-pill {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 92px;
  height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: #111;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.075),
    0 8px 18px rgba(0, 0, 0, 0.055);
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-country-pill[hidden],
.contact-other-field[hidden] {
  display: none;
}

.contact-country-flag {
  font-size: 15px;
  line-height: 1;
}

.contact-country-code {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.contact-select-wrap {
  position: relative;
  display: block;
}

.contact-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
}

.contact-select-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #111;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-field textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.09),
    0 0 0 3px var(--focus);
}

.contact-additional {
  border-radius: 8px;
  background: #f8f8f8;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.contact-additional summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 18px 14px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

.contact-additional summary::-webkit-details-marker {
  display: none;
}

.contact-additional-copy {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.contact-additional-arrow {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: rgba(17, 17, 17, 0.58);
  transition: transform 180ms ease;
}

.contact-comment-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: rgba(17, 17, 17, 0.7);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.contact-additional[open] .contact-additional-arrow {
  transform: rotate(90deg);
}

.contact-additional .contact-field {
  padding: 0 12px 12px;
}

.contact-submit {
  min-height: 56px;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
}

.contact-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-status {
  margin: 0;
  color: rgba(17, 17, 17, 0.52);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
}

.contact-status[data-status-state="success"] {
  color: #177245;
}

.contact-status[data-status-state="error"] {
  color: #b42348;
}

.contact-back-link {
  grid-row: 4;
  align-self: end;
  margin-top: 0;
}

.brand-ads-page {
  display: flex;
  flex-direction: column;
  min-height: var(--app-height);
  height: auto;
  padding:
    calc(env(safe-area-inset-top) + 132px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
}

.brand-ads-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.brand-ads-shell {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
}

.brand-ads-hero {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.brand-ads-hero h1 {
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.brand-ads-intro {
  max-width: 680px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 650;
  line-height: 1.16;
}

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

.brand-ads-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: clamp(260px, 24vw, 420px);
  border-radius: 8px;
  padding: 10px;
  background: #f1f1f1;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.brand-ads-card:hover {
  background: #e9e9e9;
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 14px 30px rgba(0, 0, 0, 0.06);
}

.brand-ads-card:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px var(--focus),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.brand-ads-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

.brand-ads-card-media img,
.brand-ads-card-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-ads-sponsored-media {
  background: #111;
}

.brand-ads-sponsored-image {
  transform-origin: 17% 6.5%;
  animation: sponsored-zoom-focus 13s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  will-change: transform;
}

.brand-ads-card-index {
  padding: 0 clamp(8px, 1vw, 14px);
  color: rgba(17, 17, 17, 0.38);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.brand-ads-card h2 {
  margin: 0;
  padding: 0 clamp(8px, 1vw, 14px);
  color: #111;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.brand-ads-card p {
  margin: 0;
  padding: 0 clamp(8px, 1vw, 14px) clamp(8px, 1vw, 14px);
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 650;
  line-height: 1.18;
}

.brand-ads-cta {
  min-height: 58px;
  font-size: 16px;
  font-weight: 700;
}

.brand-ads-cta-row {
  margin-top: 18px;
}

.pricing-page {
  display: flex;
  flex-direction: column;
  min-height: calc(var(--app-height) + clamp(32px, 4vh, 54px));
  height: auto;
  padding:
    calc(env(safe-area-inset-top) + 120px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 28px);
}

.pricing-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.pricing-shell {
  display: grid;
  gap: clamp(18px, 2.4vw, 34px);
  width: min(100%, 1420px);
  margin: 0 auto clamp(58px, 7vh, 92px);
}

.pricing-hero {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.pricing-hero h1 {
  margin: 0;
  color: #101010;
  font-size: clamp(32px, 2.65vw, 50px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.pricing-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 650;
  line-height: 1.12;
}

.region-page {
  display: flex;
  flex-direction: column;
  min-height: var(--app-height);
  height: auto;
  padding:
    calc(env(safe-area-inset-top) + 120px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
}

.region-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.region-shell {
  display: grid;
  gap: clamp(22px, 2.6vw, 38px);
  width: min(100%, 1120px);
  margin: 0 auto clamp(44px, 5.2vh, 76px);
}

.region-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 800;
}

.region-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.region-breadcrumbs a:hover,
.region-breadcrumbs a:focus-visible {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.region-hero {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.region-kicker {
  width: fit-content;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #e981a7;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.region-hero h1 {
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
}

.region-hero p,
.region-answer-panel p,
.region-detail-grid li,
.region-faq p {
  margin: 0;
  color: rgba(17, 17, 17, 0.65);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 650;
  line-height: 1.34;
}

.region-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

.region-visual {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 5 / 4;
  background: #f3f3f3;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.region-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--region-image-focus, 50% 0%);
}

.region-visual figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
}

.region-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 14px);
}

.region-card {
  display: grid;
  gap: 13px;
  min-height: 172px;
  border-radius: 8px;
  padding: clamp(18px, 1.5vw, 24px);
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.region-card:hover,
.region-card:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.12),
    0 18px 36px rgba(17, 17, 17, 0.08);
}

.region-card span {
  color: #f18bad;
  font-size: 15px;
  font-weight: 900;
}

.region-card strong {
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 1.04;
}

.region-card em {
  align-self: end;
  color: rgba(17, 17, 17, 0.56);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.region-answer-panel,
.region-detail-grid > section,
.region-faq {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  padding: clamp(18px, 1.8vw, 26px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.region-answer-panel h2,
.region-detail-grid h2,
.region-faq h2 {
  margin: 0;
  color: #111;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 800;
  line-height: 1.02;
}

.region-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
}

.region-detail-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.15em;
}

.region-detail-grid li::marker {
  color: #f18bad;
}

.region-faq details {
  border-radius: 8px;
  background: #fafafa;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.region-faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: start;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 17px 18px;
  color: #111;
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 900;
  line-height: 1.18;
}

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

.region-faq summary::marker {
  content: "";
}

.region-faq summary::after {
  content: "";
  justify-self: end;
  width: 9px;
  height: 9px;
  margin-top: 0.2em;
  border-right: 2px solid rgba(17, 17, 17, 0.62);
  border-bottom: 2px solid rgba(17, 17, 17, 0.62);
  transform: rotate(45deg);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.region-faq details[open] summary::after {
  border-color: #f18bad;
  transform: translateY(3px) rotate(225deg);
}

.region-faq summary:hover::after,
.region-faq summary:focus-visible::after {
  border-color: #f18bad;
}

.region-faq summary:focus-visible {
  border-radius: 6px;
  outline: 2px solid rgba(241, 139, 173, 0.44);
  outline-offset: -4px;
}

.region-faq p {
  padding: 0 18px 20px;
}

.region-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-service-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 15px;
  background: #fff;
  color: rgba(17, 17, 17, 0.68);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.07);
}

.region-service-links a:hover,
.region-service-links a:focus-visible {
  background: #111;
  color: #f18bad;
}

.region-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 360px));
  justify-content: center;
  gap: 14px;
}

.region-actions .button {
  width: 100%;
}

.region-secondary-button {
  min-height: 58px;
  border-radius: 8px;
  background: #f1f1f1;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.07);
}

.region-secondary-button:hover,
.region-secondary-button:focus-visible {
  background: #e8e8e8;
  color: #111;
}

.pricing-hub-shell {
  gap: clamp(16px, 2vw, 28px);
}

@media (min-width: 1100px) {
  .pricing-hub-page .pricing-hub-shell {
    grid-template-columns: minmax(0, 720px) minmax(420px, 760px);
    align-items: end;
    justify-content: space-between;
  }

  .pricing-hub-page .pricing-hub-hero {
    grid-column: 1;
  }

  .pricing-hub-page .pricing-hub-tabs {
    grid-column: 2;
    justify-self: end;
    width: min(100%, 760px);
  }

  .pricing-hub-page .pricing-hub-panels {
    grid-column: 1 / -1;
  }

  .catalog-pricing-only-panels .pricing-panel {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 640px);
    align-items: end;
  }

  .catalog-pricing-only-panels .catalog-pricing-tabs {
    grid-column: 2;
    justify-self: end;
    width: 100%;
  }

  .catalog-pricing-only-panels .pricing-package-group {
    grid-column: 1 / -1;
  }
}

.pricing-hub-tabs {
  display: grid;
  grid-template-columns: 0.72fr 0.88fr 1.7fr;
  align-items: center;
  gap: 7px;
  width: min(100%, 920px);
  max-width: 100%;
  padding: 4px;
  border-radius: 8px;
  background: #f4f4f4;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pricing-hub-tabs::-webkit-scrollbar {
  display: none;
}

.pricing-hub-tab {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  padding: 8px 17px;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  font: inherit;
  font-size: clamp(13px, 0.96vw, 15px);
  font-weight: 800;
  line-height: 1.06;
  white-space: normal;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.pricing-hub-tab:hover {
  color: #111;
}

.pricing-hub-tab.is-active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
}

.pricing-hub-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.pricing-hub-panels {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

.pricing-panel[hidden] {
  display: none;
}

.pricing-panel {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

.catalog-pricing-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
  width: min(100%, 760px);
  padding: 4px;
  border-radius: 10px;
  background: #f4f4f4;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.catalog-pricing-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  font: inherit;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.catalog-pricing-tab.is-active {
  background: #111;
  color: #ff9fbe;
  box-shadow:
    0 12px 26px rgba(17, 17, 17, 0.16),
    inset 0 0 0 1px rgba(255, 159, 190, 0.36);
}

.catalog-pricing-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.pricing-package-group[hidden] {
  display: none;
}

.pricing-package-group {
  display: grid;
  gap: 12px;
}

.pricing-package-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.pricing-package-heading p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 650;
  line-height: 1.14;
}

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

.pricing-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 14px;
  min-height: 0;
  border-radius: 8px;
  padding: clamp(18px, 2vw, 28px);
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.pricing-card-standard {
  background: #111;
  color: #fff;
}

.pricing-card-label {
  width: max-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.pricing-card-standard .pricing-card-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 3.6vw, 64px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.pricing-price-wrap {
  display: grid;
  gap: 2px;
  align-content: start;
  width: max-content;
}

.pricing-old-price {
  width: max-content;
  color: #ff8caf;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  line-height: 1;
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 126, 166, 0.9);
  text-shadow: 0 0 20px rgba(255, 126, 166, 0.38);
}

.pricing-current-price {
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-shadow 180ms ease;
}

.pricing-price-wrap.is-updating .pricing-current-price {
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 126, 166, 0.24);
  transform: translateY(-1px);
}

.pricing-rights-toggle {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 430px);
  min-height: 46px;
  padding: 4px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 126, 166, 0.14), rgba(255, 255, 255, 0.08), rgba(255, 126, 166, 0.14)),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.pricing-rights-toggle::before {
  content: "";
  position: absolute;
  inset: 4px auto 4px 4px;
  z-index: -1;
  width: calc(50% - 4px);
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 126, 166, 0.94), rgba(255, 196, 214, 0.96) 48%, rgba(255, 126, 166, 0.86)),
    #ff8caf;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 28px rgba(255, 126, 166, 0.34);
  transition: transform 220ms ease;
}

.pricing-rights-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 12%, rgba(255, 255, 255, 0.32), transparent 55%);
  transform: translateX(-65%);
  animation: pricingRightsSheen 3.8s ease-in-out infinite;
}

.pricing-rights-toggle[data-rights-state="ads"]::before {
  transform: translateX(100%);
}

.pricing-rights-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font: inherit;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.pricing-rights-option:hover,
.pricing-rights-option:focus-visible {
  color: #fff;
}

.pricing-rights-option:focus-visible {
  outline: 2px solid rgba(255, 196, 214, 0.9);
  outline-offset: 2px;
}

.pricing-rights-option.is-active {
  color: #111;
  transform: translateY(-1px);
}

@keyframes pricingRightsSheen {
  0%,
  42% {
    transform: translateX(-65%);
  }

  68%,
  100% {
    transform: translateX(62%);
  }
}

.pricing-card-intro,
.pricing-card li span {
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 650;
  line-height: 1.14;
}

.pricing-card-standard .pricing-card-intro,
.pricing-card-standard li span {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-card-intro {
  max-width: 620px;
  margin: 0;
}

.pricing-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 0;
  padding: 11px 14px 11px 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.035);
}

.pricing-card-standard li {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.pricing-card-standard li.pricing-feature-highlight {
  border: 1px solid rgba(255, 126, 166, 0.76);
  background:
    linear-gradient(135deg, rgba(255, 126, 166, 0.14), rgba(255, 255, 255, 0.075) 58%),
    rgba(255, 255, 255, 0.075);
  box-shadow:
    0 14px 34px rgba(255, 126, 166, 0.12),
    inset 0 0 0 1px rgba(255, 196, 214, 0.16);
}

.pricing-card li strong {
  color: #111;
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 800;
  line-height: 1.08;
}

.pricing-card-standard li strong {
  color: #fff;
}

.pricing-card li span {
  display: block;
}

.pricing-card li span span {
  display: inline;
}

.pricing-card li .pricing-feature-copy {
  display: grid;
  gap: 3px;
}

.pricing-card li .pricing-feature-copy span {
  display: block;
}

.pricing-card-standard .pricing-rights-highlight {
  display: block;
  color: #ff9fbe;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 126, 166, 0.26);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #111;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.13);
  transform: translateY(-50%);
}

.pricing-card-standard li::before {
  background: #fff;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.pricing-card li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-62%) rotate(-45deg);
}

.pricing-card-standard li::after {
  border-color: #111;
}

.pricing-order-button {
  width: min(100%, 280px);
  min-height: 48px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
}

.pricing-card-standard .pricing-order-button {
  background: #fff;
  color: #111;
  filter: none;
}

.pricing-card-standard .pricing-order-button:hover,
.pricing-card-standard .pricing-order-button:focus-visible {
  background: #fff;
  color: #111;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.pricing-card-standard .pricing-order-button:active {
  background: #f2f2f2;
  color: #111;
}

.pricing-custom-button {
  background: #111;
  color: #fff;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pricing-custom-button:hover,
.pricing-custom-button:focus-visible {
  background: #111;
  color: #fff;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.pricing-custom-button:active {
  background: #202020;
  color: #fff;
}

.terms-page {
  display: flex;
  flex-direction: column;
  min-height: var(--app-height);
  height: auto;
  padding:
    calc(env(safe-area-inset-top) + 132px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
}

.terms-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.terms-shell {
  display: grid;
  gap: clamp(26px, 3.2vw, 46px);
  width: min(100%, 980px);
  margin: 0 auto clamp(30px, 4vh, 58px);
}

.terms-copy {
  display: grid;
  gap: clamp(24px, 2.6vw, 36px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.terms-copy h1 {
  max-width: 800px;
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.terms-copy p {
  max-width: 820px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 650;
  line-height: 1.38;
}

.terms-intro {
  max-width: 850px;
}

.terms-updated {
  color: rgba(17, 17, 17, 0.43);
  font-size: clamp(13px, 0.95vw, 15px);
}

.terms-section {
  display: grid;
  gap: 14px;
}

.terms-section h2 {
  margin: 0;
  color: #101010;
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.terms-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  margin-top: 6px;
}

.terms-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 8px;
  color: #111;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.terms-action:hover,
.terms-action:focus-visible {
  transform: translateY(-1px);
}

.terms-action-primary {
  background: #111;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
}

.terms-action-primary:hover,
.terms-action-primary:focus-visible {
  background: #1f1f1f;
  color: #fff;
}

.terms-action-secondary {
  background: #f1f1f1;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.terms-action-secondary:hover,
.terms-action-secondary:focus-visible {
  background: #e9e9e9;
  color: #111;
}

.not-found-page {
  display: flex;
  flex-direction: column;
  min-height: var(--app-height);
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    calc(env(safe-area-inset-top) + 132px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
}

.not-found-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.not-found-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(26px, 4.8vw, 86px);
  width: min(100%, 1280px);
  min-height: min(680px, calc(var(--app-height) - 230px));
  margin: 0 auto;
}

.not-found-copy {
  display: grid;
  gap: clamp(18px, 2.1vw, 28px);
  align-content: center;
}

.not-found-kicker {
  width: max-content;
  margin: 0;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 136, 176, 0.13);
  color: #e85b91;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.02em;
}

.not-found-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #101010;
  font-size: clamp(54px, 7vw, 118px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
}

.not-found-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 680;
  line-height: 1.22;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.not-found-primary,
.not-found-secondary {
  min-height: 54px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 850;
}

.not-found-secondary {
  border-radius: 8px;
  background: #f1f1f1;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.not-found-secondary:hover,
.not-found-secondary:focus-visible {
  background: #e9e9e9;
  color: #111;
}

.not-found-media {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: #f1f1f1;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.13),
    inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.not-found-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 30%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 42%);
}

.not-found-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 640px);
  justify-self: center;
}

.about-insights-section {
  display: grid;
  gap: 16px;
  width: 100%;
}

.about-insights-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.about-insights-head > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.about-insights-head h2,
.insights-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #111;
  font-size: clamp(28px, 2.6vw, 48px);
  font-weight: 740;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-insights-link,
.insights-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  background: #f1f1f1;
  color: #111;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.about-insights-link:hover,
.about-insights-link:focus-visible,
.insights-secondary-button:hover,
.insights-secondary-button:focus-visible {
  background: #111;
  color: #f18bad;
  transform: translateY(-1px);
}

.about-insights-link span,
.insights-secondary-button .button-arrow {
  display: inline-flex;
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
}

.about-insights-link:hover span,
.about-insights-link:focus-visible span,
.insights-secondary-button:hover .button-arrow,
.insights-secondary-button:focus-visible .button-arrow {
  transform: rotate(45deg);
}

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

.insight-card {
  display: grid;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f1f1;
  color: #111;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.055);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.insight-card[hidden] {
  display: none;
}

.insight-card:hover,
.insight-card:focus-visible {
  background: #ededed;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.07),
    0 18px 42px rgba(17, 17, 17, 0.09);
  transform: translateY(-2px);
}

.insight-card:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.07),
    0 0 0 3px var(--focus);
}

.insight-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #e7e7e7;
}

.insight-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.insight-card-media-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card-media-split img {
  min-width: 0;
}

.insight-card:hover .insight-card-media img,
.insight-card:focus-visible .insight-card-media img {
  transform: scale(1.035);
}

.insight-card-body {
  display: grid;
  gap: 10px;
  padding: clamp(14px, 1.45vw, 22px);
}

.insight-card-tag {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.insight-card strong {
  color: #111;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 780;
  line-height: 1;
}

.insight-card h2 {
  margin: 0;
  color: #111;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
}

.insight-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 650;
  line-height: 1.28;
}

.insight-card-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(13px, 0.88vw, 15px);
  font-weight: 650;
  line-height: 1.22;
}

.insight-card-list li::marker {
  color: #f18bad;
}

.insight-card-body > span:last-child {
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 650;
  line-height: 1.25;
}

.insight-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.insight-card-body > .insight-card-actions:last-child {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.insight-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 0 12px;
  background: #111;
  color: #f18bad;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(241, 139, 173, 0.35);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.insight-mini-button:hover,
.insight-mini-button:focus-visible {
  background: #252525;
  color: #fff;
  transform: translateY(-1px);
}

.insight-mini-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.insight-mini-button-muted {
  background: #fff;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.insight-mini-button-muted:hover,
.insight-mini-button-muted:focus-visible {
  background: #111;
  color: #f18bad;
}

.insight-card-media-logo {
  display: grid;
  place-items: center;
  padding: 28px;
}

.insight-card-media-logo img {
  width: min(70%, 170px);
  height: auto;
  object-fit: contain;
}

.about-cta-stack > .button {
  width: 100%;
  min-width: 0;
}

.about-pricing-cta {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  padding: 0 20px;
  background: #f1f1f1;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.about-pricing-cta:hover,
.about-pricing-cta:focus-visible {
  background: #e9e9e9;
  color: #111;
  transform: translateY(-1px);
}

.about-page {
  display: flex;
  flex-direction: column;
  min-height: var(--app-height);
  height: auto;
  padding:
    calc(env(safe-area-inset-top) + 132px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
}

.insights-page {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: var(--app-height);
  height: auto;
  padding:
    calc(env(safe-area-inset-top) + 132px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 36px);
}

.insights-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.insights-shell {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  width: 100%;
}

.insights-top {
  display: grid;
  grid-template-columns: minmax(0, 900px) minmax(420px, 760px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 96px);
  width: 100%;
}

.insights-hero {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.insights-hero p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 650;
  line-height: 1.18;
}

.insights-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-self: end;
  width: min(100%, 760px);
  overflow: visible;
  scrollbar-width: none;
  border-radius: 10px;
  padding: 5px;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.insights-tabs::-webkit-scrollbar {
  display: none;
}

.insights-page .insights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  align-items: stretch;
  gap: clamp(14px, 1.45vw, 22px);
  width: 100%;
}

.insights-tab {
  display: inline-flex;
  flex: 1 1 132px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: transparent;
  color: rgba(17, 17, 17, 0.56);
  font: inherit;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.insights-tab.is-active {
  background: #111;
  color: #f18bad;
  box-shadow:
    0 12px 28px rgba(17, 17, 17, 0.14),
    inset 0 0 0 1px rgba(241, 139, 173, 0.5);
}

.insights-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.insight-card-large {
  grid-column: auto;
  grid-row: auto;
}

.insight-card-large .insight-card-media {
  aspect-ratio: 1.38 / 1;
}

.insight-card-large .insight-card-body {
  padding: clamp(16px, 1.45vw, 24px);
}

.insight-card-large strong {
  max-width: 100%;
  font-size: clamp(19px, 1.45vw, 25px);
}

.insight-card-large h2 {
  max-width: 100%;
  font-size: clamp(19px, 1.45vw, 25px);
}

.insight-card-large p {
  max-width: 100%;
}

.insights-page .insight-card:not(.insight-card-large) .insight-card-body {
  min-height: 100%;
}

.insights-page .insight-card-journal:nth-child(6) {
  grid-column: auto;
}

.insights-page .insight-card-journal:nth-child(6) .insight-card-media {
  aspect-ratio: 1.38 / 1;
}

.about-page .site-header {
  position: fixed;
  z-index: 10;
  background: linear-gradient(#fff 72%, rgba(255, 255, 255, 0));
  padding-bottom: 34px;
}

.about-shell {
  display: grid;
  gap: clamp(24px, 3.4vw, 46px);
  width: min(100%, 1760px);
}

.about-hero {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.about-kicker,
.about-section-label {
  width: max-content;
  margin: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f1f1f1;
  color: rgba(17, 17, 17, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.about-hero h1 {
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-intro {
  max-width: 680px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 650;
  line-height: 1.16;
}

.about-choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.65fr);
  gap: 12px;
}

.about-choice-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: clamp(220px, 22vw, 340px);
  border-radius: 8px;
  padding: clamp(18px, 2vw, 28px);
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.about-choice-card-info,
.about-choice-card-map,
.about-choice-card-reviews {
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.about-choice-card-info:hover,
.about-choice-card-map:hover,
.about-choice-card-reviews:hover {
  background: #ededed;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.055),
    0 18px 40px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

.about-choice-card-info:focus-visible,
.about-choice-card-map:focus-visible,
.about-choice-card-reviews:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.055),
    0 0 0 3px var(--focus);
}

.about-open-label [aria-hidden="true"] {
  display: inline-flex;
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
}

.about-choice-card-info:hover .about-open-label [aria-hidden="true"],
.about-choice-card-info:focus-visible .about-open-label [aria-hidden="true"],
.about-choice-card-map:hover .about-open-label [aria-hidden="true"],
.about-choice-card-reviews:hover .about-open-label [aria-hidden="true"],
.about-choice-card-map:focus-visible .about-open-label [aria-hidden="true"],
.about-choice-card-reviews:focus-visible .about-open-label [aria-hidden="true"] {
  transform: rotate(45deg);
}

.about-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.about-choice-index {
  color: rgba(17, 17, 17, 0.38);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.about-open-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.about-card-copy {
  display: grid;
  gap: 10px;
}

.about-choice-card h2 {
  margin: 0;
  color: #111;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-choice-card p {
  max-width: 380px;
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 650;
  line-height: 1.18;
}

.about-choice-card:nth-child(3) .about-card-copy p {
  max-width: 520px;
}

.about-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  min-height: 190px;
  margin-top: auto;
  border-radius: 7px;
  object-fit: cover;
  background: #e7e7e7;
}

.about-card-video {
  width: 100%;
  margin-top: auto;
  border-radius: 7px;
}

.about-card-video .ugc-video-preview-frame {
  aspect-ratio: 1 / 0.82;
  min-height: 190px;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.about-info-insights {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  align-self: start;
  gap: 14px;
  min-height: 0;
  border-radius: 8px;
  padding: 18px;
  background: #f1f1f1;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.06),
    0 14px 34px rgba(17, 17, 17, 0.045);
}

.about-info-insights-label {
  grid-column: 1 / -1;
  width: max-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: rgba(17, 17, 17, 0.54);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.about-info-insights-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.about-info-insights h2 {
  max-width: 680px;
  margin: 0;
  color: #111;
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
}

.about-info-insights p {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 650;
  line-height: 1.24;
}

.about-info-insights-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 16px;
  background: #111;
  color: #f18bad;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.about-info-insights-link:hover,
.about-info-insights-link:focus-visible {
  background: #252525;
  color: #fff;
  transform: translateY(-1px);
}

.about-info-insights-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.about-info-insights-link span {
  display: inline-flex;
  transform-origin: 50% 50%;
  transition: transform 180ms ease;
}

.about-info-insights-link:hover span,
.about-info-insights-link:focus-visible span {
  transform: rotate(45deg);
}

.about-world-map {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  min-height: 190px;
  margin-top: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-world-map-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.88;
  filter: none;
}

.about-map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
}

.about-map-pin::before,
.about-map-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  animation: about-map-pulse 2.6s ease-out infinite;
}

.about-map-pin::before {
  background: rgba(255, 126, 166, 0.24);
}

.about-map-pin::after {
  inset: -9px;
  border: 1px solid rgba(255, 126, 166, 0.34);
  animation-delay: 0.45s;
}

.about-map-core {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ff9fbe;
  box-shadow:
    0 0 0 5px rgba(255, 188, 208, 0.38),
    0 8px 20px rgba(255, 119, 160, 0.35);
}

.about-map-core::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transform: translate(-50%, -50%);
}

.about-map-label {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(17, 17, 17, 0.62);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
}

.about-map-pin-usa {
  top: 47%;
  left: 25%;
}

.about-map-pin-europe {
  top: 42%;
  left: 52%;
}

.about-map-pin-uae {
  top: 53%;
  left: 59%;
}

.about-info-modal {
  position: fixed;
  inset: 0;
  z-index: 74;
  display: grid;
  place-items: stretch;
  padding: 0;
  background: #fff;
}

.about-info-modal[hidden] {
  display: none;
}

.about-info-backdrop {
  display: none;
}

.about-info-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: clamp(18px, 2vw, 30px);
  width: 100%;
  min-height: var(--app-height);
  max-height: var(--app-height);
  border-radius: 0;
  padding:
    calc(env(safe-area-inset-top) + 30px)
    var(--page-x)
    calc(env(safe-area-inset-bottom) + 24px);
  background: #fff;
  box-shadow: none;
  overflow-y: auto;
}

.about-info-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1760px);
  margin: 0 auto;
}

.about-info-brand {
  flex: 0 0 auto;
}

.about-info-heading {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  border-radius: 8px;
  padding: clamp(22px, 2.2vw, 34px);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.055),
    0 16px 36px rgba(17, 17, 17, 0.045);
}

.about-info-title {
  color: #111;
  font-size: clamp(30px, 3.2vw, 56px);
  font-weight: 760;
  line-height: 0.96;
}

.about-info-heading p,
.about-info-copy p {
  max-width: 980px;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(14px, 1.08vw, 18px);
  font-weight: 650;
  line-height: 1.3;
}

.about-info-close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #f18bad;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.about-info-close:hover,
.about-info-close:focus-visible {
  background: #252525;
  color: #fff;
  transform: translateY(-1px);
}

.about-info-close:focus-visible,
.about-region-modal-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.about-info-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 1.4vw, 18px);
  align-content: start;
  width: min(100%, 1500px);
  min-height: 0;
  margin: 0 auto;
  overflow: visible;
  padding-right: 0;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.about-info-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  border-radius: 8px;
  padding: clamp(22px, 2.2vw, 34px);
  background: #f7f7f7;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.055),
    0 16px 36px rgba(17, 17, 17, 0.04);
}

.about-info-copy h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 750;
  line-height: 1;
}

.about-region-modal-links {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 14px;
  min-height: 0;
  border-radius: 8px;
  padding: clamp(18px, 1.8vw, 26px);
  background: #f7f7f7;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.055),
    0 16px 36px rgba(17, 17, 17, 0.04);
}

.about-region-modal-links p {
  margin: 0;
  color: rgba(17, 17, 17, 0.54);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.about-region-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.about-region-modal-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 88px;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.055),
    0 14px 32px rgba(17, 17, 17, 0.045);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.about-region-modal-card:hover,
.about-region-modal-card:focus-visible {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(241, 139, 173, 0.45),
    0 18px 42px rgba(17, 17, 17, 0.12);
}

.about-region-flag {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 23px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.055);
}

.about-region-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.about-region-copy strong {
  color: inherit;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 850;
  line-height: 1.05;
}

.about-region-copy em {
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.18;
}

.about-region-modal-card:hover .about-region-copy em,
.about-region-modal-card:focus-visible .about-region-copy em {
  color: rgba(255, 255, 255, 0.72);
}

.about-info-cta {
  min-width: min(100%, 300px);
}

.about-info-action-card {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  min-height: 100%;
  border-radius: 8px;
  padding: clamp(18px, 1.8vw, 26px);
  background: #111;
  box-shadow:
    inset 0 0 0 1px rgba(241, 139, 173, 0.24),
    0 18px 42px rgba(17, 17, 17, 0.12);
}

.about-info-action-card .about-info-cta {
  background: #fff;
  color: #111;
  box-shadow: none;
}

.about-info-action-card .about-info-cta:hover,
.about-info-action-card .about-info-cta:focus-visible {
  background: #fff;
  color: #111;
  box-shadow:
    0 12px 30px rgba(255, 255, 255, 0.16),
    0 0 0 3px rgba(241, 139, 173, 0.42);
  transform: translateY(-1px);
}

.about-info-footer {
  width: min(100%, 1760px);
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

body.has-about-info-open {
  overflow: hidden;
}

.about-locations-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.about-locations-modal[hidden] {
  display: none;
}

.about-locations-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.about-locations-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: clamp(16px, 1.8vw, 24px);
  width: min(100%, 1180px);
  height: min(100%, 980px);
  max-height: calc(var(--app-height) - clamp(28px, 6vw, 68px));
  border-radius: 10px;
  padding: clamp(20px, 2.5vw, 36px);
  background: #f4f4f4;
  box-shadow:
    0 34px 90px rgba(17, 17, 17, 0.18),
    inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.about-locations-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.about-locations-heading {
  max-width: min(100%, 720px);
}

.about-locations-title {
  display: block;
  color: #111;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 750;
  line-height: 0.95;
}

.about-locations-intro {
  max-width: 640px;
  margin: clamp(8px, 1.2vw, 14px) 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 650;
  line-height: 1.3;
}

.about-locations-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 25px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
}

.about-locations-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.about-locations-city-carousel {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(100%, 760px);
  overflow: hidden;
  border-radius: 999px;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.about-locations-city-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: about-city-carousel 24s linear infinite;
}

.about-locations-city-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: clamp(15px, 1.28vw, 19px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.04);
}

.about-locations-map {
  position: relative;
  display: block;
  justify-self: center;
  align-self: start;
  margin-top: clamp(-18px, -1vw, -8px);
  width: min(100%, 960px, calc((var(--app-height) - 330px) * 1.333333));
  aspect-ratio: 1448 / 1086;
  min-height: 0;
  overflow: visible;
}

.about-locations-map .about-map-pin {
  width: clamp(30px, 4vw, 44px);
  height: clamp(30px, 4vw, 44px);
}

.about-locations-map .about-map-core {
  width: clamp(15px, 1.6vw, 20px);
  height: clamp(15px, 1.6vw, 20px);
}

.about-locations-map .about-map-label {
  top: calc(100% + 5px);
  padding: 6px 10px;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(11px, 1vw, 14px);
}

.about-locations-map-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
}

.about-location-city {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 0;
  height: 0;
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center;
  animation: location-city-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay);
}

.about-location-label {
  position: absolute;
  left: var(--label-x, 14px);
  top: var(--label-y, 0px);
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 14px 32px rgba(17, 17, 17, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  transform: translateY(-50%);
}

.about-location-city[data-label-side="left"] .about-location-label {
  left: auto;
  right: var(--label-x-left, 14px);
}

.about-location-city[data-label-side="center"] .about-location-label {
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-location-city::before,
.about-location-city::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  pointer-events: none;
}

.about-location-city::before {
  width: 13px;
  height: 13px;
  background: #ff9fbe;
  box-shadow:
    0 0 0 5px rgba(255, 188, 208, 0.42),
    0 10px 24px rgba(255, 119, 160, 0.36);
  transform: translate(-50%, -50%);
}

.about-location-city::after {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 126, 166, 0.38);
  transform: translate(-50%, -50%) scale(0.66);
  animation: about-location-pulse 2.4s ease-out infinite;
  animation-delay: calc(var(--delay) + 280ms);
}

.about-location-miami {
  --x: 29.6%;
  --y: 45.7%;
  --label-x-left: 14px;
  --label-y: 0px;
  z-index: 5;
}

.about-location-new-york {
  --x: 24.2%;
  --y: 34.4%;
  --label-x-left: 14px;
  --label-y: 0px;
}

.about-location-lisbon {
  --x: 42.8%;
  --y: 47.2%;
  --label-x: -128px;
  --label-y: 32px;
}

.about-location-paris {
  --x: 45.2%;
  --y: 42.5%;
  --label-x: 14px;
  --label-y: -32px;
}

.about-location-rome {
  --x: 46.8%;
  --y: 47.4%;
  --label-x: -66px;
  --label-y: 48px;
}

.about-location-tirana {
  --x: 48.7%;
  --y: 46.3%;
  --label-x: 14px;
  --label-y: 0px;
}

.about-location-athens {
  --x: 49.2%;
  --y: 49.3%;
  --label-x: 14px;
  --label-y: 32px;
}

.about-location-dubai {
  --x: 57.4%;
  --y: 55.2%;
  --label-x: 14px;
  --label-y: 42px;
}

.about-location-seoul {
  --x: 85.2%;
  --y: 42.4%;
  --label-x-left: 14px;
  --label-y: 0px;
}

.about-location-lisbon .about-location-label,
.about-location-rome .about-location-label,
.about-location-athens .about-location-label,
.about-location-dubai .about-location-label {
  top: var(--label-y, 20px);
}

.about-locations-cta {
  position: relative;
  z-index: 4;
  justify-self: center;
  min-width: min(100%, 340px);
}

body.has-locations-map-open {
  overflow: hidden;
}

.about-reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 72;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.about-reviews-modal[hidden] {
  display: none;
}

.about-reviews-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.about-reviews-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
  width: min(100%, 1120px);
  height: min(100%, 820px);
  max-height: calc(var(--app-height) - clamp(28px, 6vw, 68px));
  border-radius: 10px;
  padding: clamp(14px, 2vw, 24px);
  background: #f4f4f4;
  box-shadow:
    0 34px 90px rgba(17, 17, 17, 0.18),
    inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.about-reviews-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.about-reviews-heading {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.about-reviews-title {
  color: #111;
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 750;
  line-height: 0.95;
}

.about-reviews-subtitle {
  max-width: 640px;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.2;
}

.about-reviews-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 25px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
}

.about-reviews-close:focus-visible,
.about-reviews-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.about-reviews-tabs {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding: 4px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
  scrollbar-width: none;
}

.about-reviews-tabs::-webkit-scrollbar {
  display: none;
}

.about-reviews-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  font: inherit;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.about-reviews-tab.is-active {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.14);
}

.about-reviews-scroll {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  overflow-y: auto;
  padding: 2px 6px 18px 2px;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.about-review-full-card {
  display: grid;
  align-content: start;
  gap: 13px;
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  border-radius: 8px;
  padding: clamp(16px, 1.5vw, 22px);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.055),
    0 14px 34px rgba(17, 17, 17, 0.055);
}

.about-review-full-card[hidden] {
  display: none;
}

.about-review-full-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.about-review-full-author {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.about-review-full-author strong {
  overflow: hidden;
  color: #111;
  font-size: clamp(16px, 1.18vw, 20px);
  font-weight: 820;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-review-full-author em {
  overflow: hidden;
  color: rgba(17, 17, 17, 0.48);
  font-size: clamp(11px, 0.82vw, 13px);
  font-style: normal;
  font-weight: 720;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-review-full-card p {
  max-width: none;
  margin: 0;
  color: #111;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 720;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.about-review-full-card p + p {
  margin-top: -3px;
}

.about-review-platform-dot {
  display: grid;
  place-items: center;
  width: clamp(34px, 2.6vw, 42px);
  height: clamp(34px, 2.6vw, 42px);
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 850;
  line-height: 1;
}

.about-review-full-card-empty {
  background:
    linear-gradient(135deg, rgba(255, 159, 190, 0.16), rgba(255, 255, 255, 0) 38%),
    #fff;
}

body.has-reviews-modal-open {
  overflow: hidden;
}

.about-review-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2.8fr) minmax(132px, 0.78fr);
  gap: 12px;
  height: clamp(320px, 20vw, 390px);
  min-height: 0;
  margin-top: auto;
}

.about-review-carousel,
.about-logo-vertical {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.about-review-carousel {
  display: grid;
}

.about-review-logos {
  position: absolute;
  top: clamp(14px, 1.8vw, 24px);
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  pointer-events: none;
}

.about-review-source {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 36px;
  border-radius: 7px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.045),
    0 8px 18px rgba(17, 17, 17, 0.045);
}

.about-review-logo {
  display: block;
  width: 100%;
  max-width: 82px;
  height: 18px;
  object-fit: contain;
}

.about-review-logo-google {
  max-width: 64px;
}

.about-review-logo-bilo {
  max-width: 78px;
  height: 19px;
}

.about-review-logo-colabst {
  max-width: 76px;
}

.about-review-slide {
  display: grid;
  align-content: end;
  gap: 8px;
  grid-area: 1 / 1;
  min-width: 0;
  padding: clamp(70px, 4.8vw, 86px) clamp(16px, 1.5vw, 24px) clamp(18px, 1.8vw, 28px);
  opacity: 0;
  animation: about-review-fade 25s ease-in-out infinite;
}

.about-review-slide:nth-of-type(2) {
  animation-delay: 5s;
}

.about-review-slide:nth-of-type(3) {
  animation-delay: 10s;
}

.about-review-slide:nth-of-type(4) {
  animation-delay: 15s;
}

.about-review-slide:nth-of-type(5) {
  animation-delay: 20s;
}

.about-review-person {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.about-review-avatar {
  display: grid;
  place-items: center;
  width: clamp(30px, 2.4vw, 38px);
  height: clamp(30px, 2.4vw, 38px);
  border-radius: 50%;
  color: #fff;
  font-size: clamp(14px, 1.12vw, 18px);
  font-weight: 800;
  line-height: 1;
}

.about-review-avatar-green {
  background: #005843;
}

.about-review-avatar-lime {
  background: #6aa43b;
}

.about-review-avatar-slate {
  background: #78909c;
}

.about-review-avatar-light {
  color: #111;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.1);
}

.about-review-author {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.about-review-author strong {
  overflow: hidden;
  color: #111;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 800;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-review-author span {
  overflow: hidden;
  color: rgba(17, 17, 17, 0.48);
  font-size: clamp(10px, 0.74vw, 12px);
  font-weight: 720;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.about-review-rating span {
  color: #f0aa2f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.about-review-rating em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 6px;
  padding: 2px 8px;
  color: #145b2d;
  background: #c8f1d1;
  font-size: clamp(10px, 0.74vw, 12px);
  font-style: normal;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.about-review-slide p {
  max-width: 640px;
  color: #111;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: clamp(14px, 1.04vw, 18px);
  font-weight: 720;
  line-height: 1.18;
}

.about-review-meta {
  color: rgba(17, 17, 17, 0.5);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.about-reviews-modal .about-review-full-card p {
  display: block;
  max-width: none;
  margin: 0;
  overflow: visible;
  color: #111;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 720;
  line-height: 1.28;
  overflow-wrap: anywhere;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}

.about-logo-vertical::before,
.about-logo-vertical::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  height: 38px;
  pointer-events: none;
}

.about-logo-vertical::before {
  top: 0;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
}

.about-logo-vertical::after {
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}

.about-logo-stack {
  display: grid;
  gap: 8px;
  padding: 10px;
  animation: about-logo-vertical 32s linear infinite;
}

.about-logo-item {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.035),
    0 8px 18px rgba(17, 17, 17, 0.035);
}

.about-logo-item img {
  display: block;
  width: 86%;
  height: 76%;
  object-fit: contain;
  filter: saturate(0) contrast(1.08);
}

.about-logo-section {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.about-logo-section h2,
.about-section-heading h2,
.about-google-card h2,
.about-info-card h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  padding: 12px 0;
  background: #f4f4f4;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.about-logo-marquee::before,
.about-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: min(12vw, 120px);
  pointer-events: none;
}

.about-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f4f4f4, rgba(244, 244, 244, 0));
}

.about-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f4f4f4, rgba(244, 244, 244, 0));
}

.about-logo-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: about-logo-marquee 26s linear infinite;
}

.about-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(128px, 13vw, 184px);
  min-height: 48px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.about-google-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 32px);
  background: #111;
  color: #fff;
}

.about-google-card h2 {
  margin-top: 14px;
  color: #fff;
}

.about-google-card p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 650;
  line-height: 1.18;
}

.about-google-card .about-section-label {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.about-rating {
  display: grid;
  justify-items: center;
  min-width: 150px;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: #111;
}

.about-rating-score {
  font-size: 44px;
  font-weight: 700;
  line-height: 0.9;
}

.about-rating-stars {
  margin-top: 8px;
  color: #111;
  font-size: 14px;
  letter-spacing: 0;
}

.about-rating-copy {
  margin-top: 7px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.about-section,
.about-section-heading {
  display: grid;
  gap: 16px;
}

.about-review-grid,
.about-team-grid,
.about-location-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-location-socials {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-review,
.about-info-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 190px;
  border-radius: 8px;
  padding: clamp(18px, 2vw, 26px);
  background: #f1f1f1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045);
}

.about-review p,
.about-info-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 650;
  line-height: 1.18;
}

.about-review p {
  color: #111;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.05;
}

.about-review span,
.about-info-card > span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.about-info-card h3 {
  margin: 0;
  color: #111;
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-location-card,
.about-social-card {
  min-height: 260px;
}

.about-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.about-social-links a,
.about-social-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 7px;
  padding: 0 12px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
}

.about-social-links span {
  color: rgba(17, 17, 17, 0.56);
  cursor: default;
}

.about-social-links a {
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.about-social-links a:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.075),
    0 10px 20px rgba(0, 0, 0, 0.07);
}

.about-social-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

.about-cta {
  width: min(100%, 520px);
  min-height: 58px;
  justify-self: center;
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 900px) {
  .contact-shell {
    justify-self: center;
    justify-items: center;
    width: min(100%, 860px);
  }

  .contact-hero {
    justify-self: center;
    width: min(100%, 860px);
  }

  .contact-hero h1 {
    max-width: 780px;
    text-align: center;
  }

  .contact-methods,
  .contact-form-panel {
    justify-self: center;
    width: min(100%, 860px);
    margin-inline: auto;
  }

  .contact-form-panel {
    align-self: center;
  }

  .brand-ads-hero {
    display: grid;
    grid-template-columns: minmax(0, 860px) minmax(320px, 1fr);
    align-items: end;
    gap: clamp(48px, 8vw, 160px);
    max-width: none;
  }

  .ugc-hero h1,
  .brand-ads-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(27px, 2.48vw, 46px);
  }

  .brand-ads-intro {
    align-self: end;
    max-width: 620px;
    padding-bottom: 4px;
  }

  .ugc-page {
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(360px, 1fr);
    grid-template-rows: auto auto auto auto;
    align-items: start;
    gap: clamp(22px, 3vw, 38px) clamp(48px, 8vw, 160px);
  }

  .ugc-hero {
    grid-column: 1;
    grid-row: 1;
    max-width: 760px;
    margin: 0;
  }

  .ugc-work {
    display: contents;
  }

  .ugc-category-tabs {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    max-width: 100%;
    margin-inline: 0;
  }

  .ugc-work-list {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .ugc-work-card {
    min-width: 0;
    gap: 10px;
    padding: 10px;
  }

  .ugc-work-meta {
    gap: 10px;
  }

  .ugc-work-brand {
    min-width: 0;
    font-size: clamp(14px, 1vw, 17px);
  }

  .ugc-work-logo,
  .ugc-work-country {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 7px;
    font-size: 13px;
  }

  .ugc-work-country {
    width: auto;
    padding: 0 8px;
  }

  .ugc-cta-row {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
  }

  .ugc-page > .ugc-cta-row {
    margin-bottom: clamp(22px, 2.4vh, 34px);
  }

  .ugc-back-link {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-self: center;
    display: none;
  }

  .ugc-page > .ugc-back-link {
    display: none;
  }

  .ugc-page > .site-footer {
    grid-column: 1 / -1;
    grid-row: 4;
    align-self: end;
    margin-top: 0;
  }

  .contact-page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .contact-shell {
    margin-top: 0;
  }

  .brand-ads-shell {
    margin-top: clamp(10px, 3vh, 48px);
  }
}

@keyframes about-logo-marquee {
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

@keyframes about-logo-vertical {
  to {
    transform: translateY(calc(-50% - 4px));
  }
}

@keyframes about-review-fade {
  0%,
  16% {
    opacity: 1;
  }

  20%,
  100% {
    opacity: 0;
  }
}

@keyframes about-map-pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.66);
  }

  72% {
    opacity: 0;
    transform: scale(1.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

@keyframes about-location-pulse {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.66);
  }

  72% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.72);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.72);
  }
}

@keyframes location-city-in {
  to {
    opacity: 1;
  }
}

@keyframes about-city-carousel {
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

@keyframes explore-border-sweep {
  to {
    --explore-border-angle: 360deg;
  }
}

@keyframes sponsored-zoom-focus {
  0%,
  12% {
    transform: scale(1);
  }

  28%,
  66% {
    transform: scale(3.25);
  }

  84%,
  100% {
    transform: scale(1);
  }
}

@keyframes preloader-logo-in {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloader-line-pass {
  to {
    transform: translateX(260%);
  }
}

@keyframes content-rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-preloader,
  .canvas {
    transition: none;
  }

  .preloader-logo,
  .preloader-line::after,
  body.is-loaded .site-header,
  body.is-loaded .content-intent h1,
  body.is-loaded .content-option {
    animation: none;
  }

  .content-option-explore {
    animation: none;
  }

  .about-logo-track {
    animation: none;
  }

  .about-logo-stack {
    animation: none;
  }

  .about-map-pin::before,
  .about-map-pin::after,
  .about-locations-city-track,
  .about-location-city,
  .about-location-city::after,
  .ugc-video-play::before,
  .ugc-video-play::after,
  .avatar-social-wrap::before,
  .avatar-social-wrap::after,
  .pricing-rights-toggle::after,
  .button-primary::after {
    animation: none;
  }

  .ugc-mobile-sticky-actions {
    transition: none;
  }

  .about-location-city {
    opacity: 1;
  }

  .about-review-slide {
    animation: none;
    opacity: 0;
  }

  .about-review-slide:first-child {
    opacity: 1;
  }

  .language-switcher-panel {
    transition: none;
  }

  .brand-ads-sponsored-image {
    animation: none;
  }
}

.button-primary:hover {
  background: var(--surface-hover);
  transform: translateY(-1px);
}

.button-primary:active {
  transform: translateY(0);
}

@media (max-width: 720px) {
  .region-page {
    padding-top: calc(env(safe-area-inset-top) + 104px);
  }

  .region-shell {
    gap: 22px;
  }

  .region-hero h1 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1;
  }

  .region-hero p,
  .region-answer-panel p,
  .region-detail-grid li,
  .region-faq p {
    font-size: 15px;
    line-height: 1.36;
  }

  .region-card-grid,
  .region-visual-grid,
  .region-detail-grid,
  .region-actions {
    grid-template-columns: 1fr;
  }

  .region-card {
    min-height: 150px;
  }

  .region-actions {
    justify-content: stretch;
  }

  .ugc-mobile-sticky-actions {
    position: fixed;
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom) + 10px);
    left: 14px;
    z-index: 28;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.16),
      inset 0 0 0 1px rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(calc(100% + 24px));
    pointer-events: none;
    transition:
      opacity 190ms ease,
      transform 190ms ease;
  }

  .ugc-mobile-sticky-actions.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .ugc-mobile-sticky-actions .ugc-cta-button {
    min-height: 46px;
    border-radius: 9px;
    padding: 0 12px;
    font-size: 13px;
  }

  .ugc-mobile-sticky-actions .ugc-pricing-button {
    background: #111;
    color: #fff;
    box-shadow: 0 11px 23px rgba(0, 0, 0, 0.12);
  }

  .ugc-mobile-sticky-actions .ugc-pricing-button .ugc-cta-icon {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  .region-page {
    padding:
      calc(env(safe-area-inset-top) + 92px)
      14px
      calc(env(safe-area-inset-bottom) + 26px);
  }

  .region-breadcrumbs {
    font-size: 12px;
  }

  .region-hero {
    gap: 13px;
  }

  .region-kicker {
    font-size: 12px;
  }

  .region-answer-panel,
  .region-detail-grid > section,
  .region-faq {
    padding: 17px;
  }

  .region-answer-panel h2,
  .region-detail-grid h2,
  .region-faq h2 {
    font-size: 21px;
  }

  .region-service-links a {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .about-region-seo-grid {
    grid-template-columns: 1fr;
  }

  .about-region-seo-grid a {
    min-height: 40px;
  }

  .site-header {
    gap: 12px;
    padding-right: 14px;
    padding-left: 14px;
    padding-top: calc(env(safe-area-inset-top) + 22px);
  }

  .brand-logo {
    width: clamp(86px, 25vw, 104px);
  }

  .consultation-cluster {
    gap: 9px;
  }

  .consultation-button {
    gap: 7px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }

  .button-arrow {
    width: 13px;
    height: 13px;
    font-size: 13px;
  }

  .consultation-avatar {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .avatar-social-wrap {
    width: 36px;
    height: 36px;
  }

  .avatar-social-link {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .avatar-social-link svg {
    width: 16px;
    height: 16px;
  }

  .language-switcher {
    top: calc(env(safe-area-inset-top) + clamp(92px, 13.3vh, 124px));
  }

  .language-switcher-toggle {
    width: 30px;
    height: 34px;
    border-radius: 7px 0 0 7px;
    font-size: 10px;
  }

  .language-switcher-panel {
    right: 34px;
    width: 142px;
    padding: 7px;
  }

  .language-option {
    min-height: 28px;
    padding: 0 7px;
  }

  .language-option-name {
    font-size: 11px;
  }

  .content-intent {
    top: calc(env(safe-area-inset-top) + 105px);
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom) + 14px);
    left: 14px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 18px;
  }

  .content-intent h1 {
    grid-column: auto;
    grid-row: auto;
    max-width: 280px;
    font-size: 25px;
    line-height: 1;
  }

  .content-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 7px;
    min-height: 0;
  }

  .content-options .content-option:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .content-option {
    grid-template-columns: minmax(0, 1fr) 20px;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
    height: 100%;
    gap: 8px 8px;
    padding: 8px;
  }

  .option-media {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .option-title {
    font-size: 12px;
    line-height: 1.05;
  }

  .mobile-label-break {
    display: block;
  }

  .option-arrow {
    width: 16px;
    height: 16px;
    font-size: 16px;
    font-weight: 500;
  }

  .content-option-explore {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    place-items: center;
    align-content: center;
    min-height: 0;
    color: #111;
    gap: 10px;
    padding: 12px;
    box-shadow: none;
  }

  .content-option-explore:hover {
    box-shadow: none;
  }

  .content-option-explore:focus-visible {
    box-shadow: none;
  }

  .content-option-explore .option-title {
    max-width: 118px;
    color: #111;
    font-size: 14px;
    line-height: 1;
  }

  .option-monogram {
    width: 34px;
    filter: brightness(0);
  }

  .option-subtitle {
    max-width: 118px;
    color: rgba(17, 17, 17, 0.55);
    font-size: 11px;
    line-height: 1.05;
  }

  .ugc-page {
    padding:
      calc(env(safe-area-inset-top) + 102px)
      14px
      calc(env(safe-area-inset-bottom) + 18px);
  }

  .about-shell,
  .contact-shell,
  .brand-ads-shell,
  .pricing-shell,
  .not-found-shell,
  .terms-shell,
  .ugc-page > .ugc-cta-row {
    margin-bottom: 30px;
  }

  .ugc-page > .ugc-cta-row {
    margin-bottom: 0;
  }

  .ugc-page > .ugc-back-link {
    margin-bottom: 30px;
  }

  .site-footer {
    margin-top: 22px;
    padding-bottom: calc(env(safe-area-inset-bottom) + 14px);
    font-size: 10px;
  }

  .site-footer-row {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 7px;
    padding-top: 13px;
  }

  .site-footer-copy {
    min-width: 0;
    font-size: clamp(7.5px, 2.15vw, 10px);
    line-height: 1;
  }

  .site-footer-terms {
    min-height: 18px;
    font-size: clamp(8px, 2.35vw, 10px);
  }

  .site-footer-credit {
    justify-self: end;
    align-self: center;
    min-height: 18px;
    gap: 4px;
    font-size: clamp(7px, 1.9vw, 9px);
  }

  .site-footer-lava-logo {
    width: clamp(48px, 12vw, 58px);
  }

  .site-footer--main {
    right: 14px;
    bottom: calc(env(safe-area-inset-bottom) + 9px);
    left: 14px;
  }

  .has-site-footer-main .content-intent {
    bottom: calc(env(safe-area-inset-bottom) + 64px);
  }

  .terms-page {
    padding:
      calc(env(safe-area-inset-top) + 102px)
      14px
      calc(env(safe-area-inset-bottom) + 18px);
  }

  .pricing-page {
    padding:
      calc(env(safe-area-inset-top) + 102px)
      14px
      calc(env(safe-area-inset-bottom) + 18px);
  }

  .not-found-page {
    padding:
      calc(env(safe-area-inset-top) + 102px)
      14px
      calc(env(safe-area-inset-bottom) + 18px);
  }

  .ugc-page .site-header {
    padding-bottom: 26px;
  }

  .pricing-page .site-header,
  .terms-page .site-header,
  .not-found-page .site-header {
    padding-bottom: 26px;
  }

  .pricing-shell {
    gap: 18px;
    width: 100%;
  }

  .pricing-hero {
    gap: 9px;
  }

  .pricing-hero h1 {
    max-width: 310px;
    font-size: 25px;
    line-height: 1;
  }

  .pricing-hero p {
    max-width: 350px;
    font-size: 14px;
    line-height: 1.12;
  }

  .pricing-hub-tabs {
    width: 100%;
    margin-inline: 0;
    grid-template-columns: 0.66fr 0.78fr 1.56fr;
    gap: 4px;
  }

  .pricing-hub-tab {
    min-height: 44px;
    padding: 8px 8px;
    font-size: 12px;
    line-height: 1.05;
  }

  .catalog-pricing-tabs {
    width: 100%;
    gap: 5px;
    padding: 4px;
  }

  .catalog-pricing-tab {
    min-height: 48px;
    padding: 8px 9px;
    font-size: 12px;
    line-height: 1.07;
  }

  .pricing-package-heading {
    gap: 7px;
  }

  .pricing-package-heading p {
    font-size: 13px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-card {
    min-height: 0;
    gap: 13px;
    padding: 18px;
  }

  .pricing-card-label {
    padding: 7px 10px;
    font-size: 11px;
  }

  .pricing-card h2 {
    font-size: 36px;
    line-height: 0.96;
  }

  .pricing-old-price {
    font-size: 14px;
  }

  .pricing-rights-toggle {
    width: 100%;
    min-height: 44px;
    padding: 4px;
  }

  .pricing-rights-option {
    min-height: 36px;
    padding: 0 8px;
    font-size: 11px;
    line-height: 1.08;
  }

  .pricing-card-intro,
  .pricing-card li span {
    font-size: 13px;
    line-height: 1.2;
  }

  .pricing-card ul {
    gap: 7px;
  }

  .pricing-card li {
    min-height: 0;
    padding: 10px 11px 10px 44px;
  }

  .pricing-card li strong {
    font-size: 13px;
    line-height: 1.08;
  }

  .pricing-card li::before {
    left: 12px;
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }

  .pricing-card li::after {
    left: 18px;
    width: 8px;
    height: 5px;
  }

  .pricing-order-button {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }

  .not-found-shell {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 18px;
    width: 100%;
    min-height: 0;
    margin: 0 auto 30px;
  }

  .not-found-copy {
    gap: 14px;
  }

  .not-found-kicker {
    padding: 7px 11px;
    font-size: 12px;
  }

  .not-found-copy h1 {
    max-width: 360px;
    font-size: 48px;
    line-height: 0.92;
  }

  .not-found-copy p {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.18;
  }

  .not-found-actions {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .not-found-primary,
  .not-found-secondary {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }

  .not-found-media {
    justify-self: stretch;
    width: 100%;
    max-height: 330px;
    aspect-ratio: 16 / 11;
  }

  .about-cta-stack {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
  }

  .about-pricing-cta {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
  }

  .terms-shell {
    gap: 22px;
    width: 100%;
    margin: 0 auto 30px;
  }

  .terms-copy {
    gap: 20px;
    padding: 0;
  }

  .terms-copy h1 {
    font-size: 25px;
  }

  .terms-copy p {
    font-size: 13px;
    line-height: 1.36;
  }

  .terms-updated {
    font-size: 12px;
  }

  .terms-section {
    gap: 12px;
  }

  .terms-section h2 {
    font-size: 18px;
  }

  .terms-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 2px;
  }

  .terms-action {
    min-height: 50px;
    padding: 0 16px;
    font-size: 14px;
  }

  .ugc-hero {
    margin-bottom: 24px;
  }

  .ugc-hero h1 {
    max-width: 270px;
    font-size: 22px;
    line-height: 1.02;
  }

  .ugc-work {
    gap: 12px;
  }

  .ugc-category-tabs {
    top: calc(env(safe-area-inset-top) + 78px);
    justify-self: start;
    width: max-content;
    max-width: calc(100vw - 32px);
    margin-inline: 0 auto;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.08),
      inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
  }

  .ugc-category-tab {
    min-height: 34px;
    padding: 0 13px;
    font-size: 13px;
  }

  .ugc-work-list {
    gap: 10px;
  }

  .ugc-work-card {
    gap: 10px;
    padding: 8px;
  }

  .ugc-work-meta {
    gap: 12px;
  }

  .ugc-work-brand {
    font-size: 15px;
  }

  .ugc-work-logo,
  .ugc-work-country {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 7px;
    font-size: 14px;
  }

  .ugc-work-country {
    width: auto;
    padding: 0 8px;
    font-size: 12px;
  }

  .ugc-cta-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .ugc-cta-button {
    min-height: 48px;
    font-size: 14px;
  }

  .ugc-cta-icon {
    width: 28px;
    height: 28px;
  }

  .contact-page {
    padding:
      calc(env(safe-area-inset-top) + 102px)
      14px
      calc(env(safe-area-inset-bottom) + 8px);
    scroll-padding-top: calc(env(safe-area-inset-top) + 86px);
    scroll-padding-bottom: 46vh;
  }

  .contact-page .site-header {
    padding-bottom: 26px;
  }

  .contact-shell {
    align-content: start;
    gap: 16px;
    min-height: 0;
    margin-bottom: 22px;
  }

  .contact-hero h1 {
    max-width: 300px;
    font-size: 28px;
    line-height: 1;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 6px;
  }

  .contact-method {
    min-height: 52px;
    padding: 0 16px;
    font-size: 15px;
  }

  .contact-method-copy {
    gap: 9px;
  }

  .contact-method-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .contact-method-arrow {
    font-size: 19px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 15px;
  }

  .contact-submit {
    min-height: 50px;
    font-size: 15px;
  }

  .brand-ads-page {
    padding:
      calc(env(safe-area-inset-top) + 102px)
      14px
      calc(env(safe-area-inset-bottom) + 18px);
  }

  .brand-ads-page .site-header {
    padding-bottom: 26px;
  }

  .brand-ads-shell {
    gap: 18px;
  }

  .brand-ads-hero {
    gap: 12px;
  }

  .brand-ads-hero h1 {
    max-width: 340px;
    font-size: 25px;
    line-height: 1;
  }

  .brand-ads-intro {
    max-width: 340px;
    font-size: 13px;
    line-height: 1.16;
  }

  .brand-ads-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brand-ads-card {
    position: relative;
    grid-template-columns: minmax(106px, 34vw) minmax(0, 1fr);
    grid-template-rows: min-content min-content 1fr;
    align-items: center;
    column-gap: 14px;
    min-height: 0;
    padding: 8px 42px 8px 8px;
  }

  .brand-ads-card-media {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: stretch;
    width: 100%;
    height: clamp(144px, 37vw, 178px);
    aspect-ratio: auto;
  }

  .brand-ads-card::after {
    content: "↗";
    position: absolute;
    right: 16px;
    top: 50%;
    color: #111;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
  }

  .brand-ads-card-index,
  .brand-ads-card h2 {
    grid-column: 2;
    padding: 0;
  }

  .brand-ads-card h2 {
    font-size: 17px;
    line-height: 1;
  }

  .brand-ads-card p {
    grid-column: 2;
    padding: 0;
    font-size: 12px;
    line-height: 1.16;
  }

  .brand-ads-cta {
    min-height: 50px;
    font-size: 15px;
  }

  .about-page {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: var(--app-height);
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    padding:
      calc(env(safe-area-inset-top) + 94px)
      14px
      calc(env(safe-area-inset-bottom) + 22px);
  }

  .about-page .site-header {
    padding-bottom: 22px;
  }

  .about-shell {
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    grid-template-rows: auto auto auto;
    overflow: visible;
  }

  .about-hero {
    gap: 9px;
  }

  .about-kicker,
  .about-section-label {
    padding: 7px 10px;
    font-size: 12px;
  }

  .about-hero h1 {
    max-width: 330px;
    font-size: 25px;
    line-height: 1;
  }

  .about-intro {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.12;
  }

  .about-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-height: 0;
    overflow: visible;
  }

  .about-choice-card {
    min-width: 0;
    min-height: 0;
    gap: 9px;
    padding: 13px;
    align-content: start;
    overflow: hidden;
  }

  .about-card-topline {
    gap: 8px;
  }

  .about-choice-index {
    font-size: 12px;
  }

  .about-open-label {
    font-size: 9px;
  }

  .about-card-copy {
    gap: 8px;
  }

  .about-choice-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .about-choice-card h2 {
    overflow-wrap: anywhere;
    font-size: 20px;
    line-height: 1;
  }

  .about-choice-card p {
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.13;
  }

  .about-card-photo {
    aspect-ratio: 1 / 1.02;
    min-height: 0;
    margin-top: 4px;
  }

  .about-card-video {
    margin-top: 4px;
  }

  .about-card-video .ugc-video-preview-frame {
    aspect-ratio: 1 / 1.02;
    min-height: 0;
  }

  .about-world-map {
    aspect-ratio: 1 / 1.02;
    min-height: 0;
    margin-top: 4px;
  }

  .about-world-map-image {
    width: 112%;
    max-width: none;
  }

  .about-map-pin {
    width: 23px;
    height: 23px;
  }

  .about-map-core {
    width: 12px;
    height: 12px;
    box-shadow:
      0 0 0 4px rgba(255, 188, 208, 0.38),
      0 7px 16px rgba(255, 119, 160, 0.32);
  }

  .about-map-label {
    padding: 3px 5px;
    font-size: 8px;
  }

  .about-locations-modal {
    padding: 10px;
  }

  .about-locations-panel {
    height: min(100%, 680px);
    max-height: calc(var(--app-height) - 20px);
    gap: 12px;
    padding: 18px;
  }

  .about-locations-title {
    max-width: 230px;
    font-size: 27px;
  }

  .about-locations-intro {
    max-width: 310px;
    font-size: 12px;
    line-height: 1.28;
  }

  .about-locations-close {
    width: 38px;
    height: 38px;
  }

  .about-locations-city-carousel {
    width: 100%;
    padding: 2px 0;
  }

  .about-locations-city-track {
    gap: 8px;
    animation-duration: 20s;
  }

  .about-locations-city-chip {
    min-height: 34px;
    padding: 0 14px;
    font-size: 14px;
  }

  .about-locations-map-image {
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .about-location-city {
    transform: scale(1);
  }

  .about-location-label {
    min-height: 25px;
    padding: 0 8px;
    font-size: 10px;
    box-shadow:
      0 10px 24px rgba(17, 17, 17, 0.11),
      inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  }

  .about-location-city::before {
    width: 9px;
    height: 9px;
    box-shadow:
      0 0 0 3px rgba(255, 188, 208, 0.38),
      0 8px 18px rgba(255, 119, 160, 0.32);
  }

  .about-location-city::after {
    width: 20px;
    height: 20px;
    border-color: rgba(255, 126, 166, 0.28);
  }

  .about-location-miami {
    --x: 29.6% !important;
    --y: 48.3% !important;
    --label-x-left: 12px !important;
    --label-y: 0px !important;
  }

  .about-location-new-york {
    --label-x-left: 12px !important;
    --label-y: 0px !important;
  }

  .about-location-lisbon {
    --label-x: -126px !important;
    --label-y: 32px !important;
  }

  .about-location-paris {
    --label-x: 11px !important;
    --label-y: -32px !important;
  }

  .about-location-rome {
    --label-x: -46px !important;
    --label-y: 48px !important;
  }

  .about-location-tirana {
    --label-x: 11px !important;
    --label-y: 0px !important;
  }

  .about-location-athens {
    --label-x: 11px !important;
    --label-y: 32px !important;
  }

  .about-location-dubai {
    --label-x: 11px !important;
    --label-y: 42px !important;
  }

  .about-location-seoul {
    --label-x-left: 12px !important;
    --label-y: 0px !important;
  }

  .about-locations-cta {
    width: 100%;
    min-width: 0;
  }

  .about-reviews-modal {
    padding: 10px;
  }

  .about-reviews-panel {
    height: min(100%, 680px);
    max-height: calc(var(--app-height) - 20px);
    gap: 12px;
    padding: 12px;
  }

  .about-reviews-title {
    font-size: 28px;
  }

  .about-reviews-subtitle {
    max-width: 280px;
    font-size: 12px;
  }

  .about-reviews-close {
    width: 38px;
    height: 38px;
  }

  .about-reviews-tabs {
    border-radius: 18px;
    padding: 4px;
  }

  .about-reviews-tab {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .about-reviews-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 2px;
    padding-bottom: 14px;
  }

  .about-review-full-card {
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
    gap: 10px;
    overflow: visible;
    padding: 14px;
  }

  .about-review-full-author strong {
    font-size: 16px;
  }

  .about-review-full-author em {
    font-size: 11px;
  }

  .about-reviews-modal .about-review-full-card p {
    display: block;
    overflow: visible;
    font-size: 15px;
    line-height: 1.26;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .about-review-showcase {
    grid-template-columns: minmax(0, 2fr) minmax(92px, 1fr);
    gap: 8px;
    height: 210px;
    min-height: 0;
    margin-top: 2px;
  }

  .about-review-slide {
    gap: 7px;
    padding: 56px 12px 12px;
  }

  .about-review-logos {
    top: 12px;
    left: 14px;
    right: 14px;
    gap: 6px;
  }

  .about-review-source {
    min-height: 34px;
    padding: 7px 5px;
  }

  .about-review-logo {
    max-width: 58px;
    height: 15px;
  }

  .about-review-logo-bilo {
    max-width: 66px;
    height: 16px;
  }

  .about-review-logo-colabst {
    max-width: 64px;
  }

  .about-review-person {
    gap: 7px;
  }

  .about-review-avatar {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .about-review-author strong {
    font-size: 13px;
  }

  .about-review-author span {
    font-size: 10px;
  }

  .about-review-rating {
    gap: 6px;
  }

  .about-review-rating span {
    font-size: 12px;
    letter-spacing: 0.4px;
  }

  .about-review-rating em {
    min-height: 20px;
    padding: 2px 7px;
    font-size: 10px;
  }

  .about-review-slide p {
    -webkit-line-clamp: 4;
    font-size: 13px;
    line-height: 1.15;
  }

  .about-review-meta {
    font-size: 10px;
  }

  .about-logo-stack {
    gap: 6px;
    padding: 8px;
  }

  .about-logo-item {
    min-height: 34px;
  }

  .about-logo-item img {
    width: 88%;
    height: 78%;
  }

  .about-cta {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
  }

  .about-logo-section {
    gap: 11px;
  }

  .about-logo-section h2,
  .about-section-heading h2,
  .about-google-card h2,
  .about-info-card h2 {
    font-size: 24px;
  }

  .about-logo-marquee {
    margin-right: -14px;
    margin-left: -14px;
    border-radius: 0;
  }

  .about-logo {
    min-width: 126px;
    min-height: 42px;
    font-size: 13px;
  }

  .about-google-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .about-google-card h2 {
    margin-top: 12px;
  }

  .about-google-card p {
    font-size: 14px;
    line-height: 1.16;
  }

  .about-rating {
    justify-items: start;
    width: 100%;
    min-width: 0;
    padding: 16px;
  }

  .about-rating-score {
    font-size: 38px;
  }

  .about-review-grid,
  .about-team-grid,
  .about-location-socials {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-review,
  .about-info-card,
  .about-location-card,
  .about-social-card {
    min-height: 0;
    gap: 10px;
    padding: 16px;
  }

  .about-review p {
    font-size: 19px;
    line-height: 1.06;
  }

  .about-info-card h3 {
    font-size: 22px;
  }

  .about-review p,
  .about-info-card p {
    font-size: 14px;
    line-height: 1.16;
  }

  .about-social-links {
    gap: 7px;
  }

  .about-social-links a,
  .about-social-links span {
    min-height: 36px;
    font-size: 13px;
  }

  .about-cta {
    min-height: 50px;
    font-size: 15px;
  }
}

@media (min-width: 561px) and (max-width: 760px) {
  .brand-ads-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brand-ads-card {
    position: relative;
    grid-template-columns: minmax(132px, 32vw) minmax(0, 1fr);
    grid-template-rows: min-content min-content 1fr;
    align-items: center;
    column-gap: 16px;
    min-height: 0;
    padding: 10px 48px 10px 10px;
  }

  .brand-ads-card-media {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: stretch;
    width: 100%;
    height: clamp(164px, 34vw, 210px);
    aspect-ratio: auto;
  }

  .brand-ads-card::after {
    content: "↗";
    position: absolute;
    right: 18px;
    top: 50%;
    color: #111;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
  }

  .brand-ads-card-index,
  .brand-ads-card h2,
  .brand-ads-card p {
    grid-column: 2;
    padding: 0;
  }

  .brand-ads-card h2 {
    font-size: 18px;
    line-height: 1;
  }

  .brand-ads-card p {
    font-size: 12px;
    line-height: 1.16;
  }
}

@media (max-width: 560px) and (max-height: 640px) {
  .site-header {
    padding-top: calc(env(safe-area-inset-top) + 16px);
  }

  .brand-logo {
    width: clamp(78px, 24vw, 92px);
  }

  .consultation-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .avatar-social-wrap {
    width: 32px;
    height: 32px;
  }

  .avatar-social-link {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .consultation-button {
    min-height: 32px;
    padding: 0 9px;
    font-size: 10px;
  }

  .content-intent {
    top: calc(env(safe-area-inset-top) + 88px);
    bottom: calc(env(safe-area-inset-bottom) + 10px);
    gap: 12px;
  }

  .content-intent h1 {
    max-width: 250px;
    font-size: 22px;
  }

  .content-options {
    gap: 6px;
  }

  .content-option {
    gap: 6px;
    padding: 7px;
  }

  .option-media {
    height: 100%;
  }

  .option-title {
    font-size: 11px;
  }

  .option-arrow {
    width: 15px;
    height: 15px;
    font-size: 15px;
  }

  .content-option-explore {
    gap: 8px;
    padding: 10px;
  }

  .content-option-explore .option-title {
    max-width: 110px;
    font-size: 13px;
  }

  .option-monogram {
    width: 30px;
  }

  .option-subtitle {
    max-width: 110px;
    font-size: 10px;
  }

  .ugc-page {
    padding-top: calc(env(safe-area-inset-top) + 84px);
  }

  .ugc-hero h1 {
    font-size: 21px;
  }

  .about-hero h1 {
    font-size: 21px;
  }

  .ugc-category-tabs {
    max-width: calc(100vw - 24px);
    padding: 7px;
  }

  .ugc-category-tab {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .insights-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .insights-tabs {
    justify-self: start;
    flex-wrap: nowrap;
    width: min(100%, 1040px);
    overflow-x: auto;
  }

  .insights-tab {
    flex: 0 0 auto;
  }

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

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

  .about-region-modal-grid {
    grid-template-columns: 1fr;
  }

  .insight-card-large {
    grid-column: 1 / -1;
  }

  .insights-page .insight-card-journal:nth-child(6) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .about-insights-section {
    gap: 12px;
  }

  .about-insights-head {
    display: grid;
    align-items: start;
    gap: 12px;
  }

  .about-insights-head h2,
  .insights-hero h1 {
    font-size: 26px;
  }

  .about-insights-link {
    width: 100%;
    min-height: 44px;
  }

  .about-insights-grid,
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .insights-page .insights-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .insight-card-media,
  .insight-card-large .insight-card-media {
    aspect-ratio: 1.3 / 1;
  }

  .insight-card-large strong {
    font-size: 23px;
  }

  .insight-card-large h2 {
    font-size: 23px;
  }

  .insight-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .insight-mini-button {
    width: 100%;
  }

  .about-info-insights {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .about-info-insights h2 {
    font-size: 23px;
  }

  .about-info-insights-link {
    width: 100%;
  }

  .about-info-modal {
    padding: 0;
  }

  .about-info-panel {
    display: flex;
    flex-direction: column;
    min-height: var(--app-height);
    max-height: var(--app-height);
    gap: 14px;
    padding:
      calc(env(safe-area-inset-top) + 22px)
      14px
      calc(env(safe-area-inset-bottom) + 18px);
  }

  .about-info-topbar {
    width: 100%;
  }

  .about-info-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .about-info-heading,
  .about-info-copy,
  .about-info-insights,
  .about-region-modal-links,
  .about-info-action-card {
    flex: 0 0 auto;
    min-height: 0;
    padding: 14px;
  }

  .about-info-title {
    font-size: 28px;
  }

  .about-info-heading p,
  .about-info-copy p {
    font-size: 13px;
    line-height: 1.24;
  }

  .about-info-close {
    min-width: 70px;
    min-height: 38px;
  }

  .about-info-copy h2 {
    font-size: 23px;
  }

  .about-region-modal-card {
    min-height: 78px;
    padding: 12px;
  }

  .about-region-flag {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .about-region-copy strong {
    font-size: 15px;
  }

  .about-info-cta {
    width: 100%;
  }

  .about-info-footer {
    flex: 0 0 auto;
    width: 100%;
    padding-bottom: calc(env(safe-area-inset-bottom) + 4px);
    font-size: 10px;
  }

  .insights-page {
    max-width: 100vw;
    overflow-x: hidden;
    padding:
      calc(env(safe-area-inset-top) + 100px)
      14px
      calc(env(safe-area-inset-bottom) + 26px);
  }

  .insights-shell {
    gap: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .insights-hero {
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .insights-top {
    gap: 14px;
  }

  .insights-hero h1 {
    font-size: 24px;
    line-height: 1;
  }

  .insights-hero h1,
  .insights-hero p:last-child {
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .insights-hero p:last-child {
    font-size: 14px;
    line-height: 1.18;
  }

  .insights-tabs {
    display: flex;
    width: 100%;
    border-radius: 10px;
  }

  .insights-tab {
    flex-basis: auto;
    min-height: 42px;
    font-size: 13px;
  }

}

@media (max-width: 560px) {
  .insights-page .site-header {
    max-width: 100vw;
    overflow: visible;
  }
}
