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

:root {
  --bg: #f6f6f4;
  --bg-alt: #ffffff;
  --text: #121212;
  --muted: #5c5c5c;
  --accent: #121212;
  --accent-light: #f6f6f4;
  --border: rgba(18, 18, 18, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 246, 244, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-mark {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 17px;
}

.logo-accent {
  color: #c1121f;
}

.logo-sub {
  font-size: 5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 400;
  line-height: 1;
  margin-top: -3px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-cta {
  padding: 8px 14px;
  min-height: 36px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  font-weight: 700;
}

.nav a {
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  padding: 12px 22px;
  border-radius: 0;
  font-weight: 600;
  border: 1px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-light);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: #f6f6f4;
  border-color: #f6f6f4;
}

.btn-ghost:hover {
  background: #f6f6f4;
  color: #121212;
  border-color: #f6f6f4;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-embed {
  position: absolute;
  inset: -10% -10%;
  width: 120%;
  height: 120%;
  border: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 18, 18, 0.35), rgba(18, 18, 18, 0.08));
  transition: background 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 0 140px;
  color: #f6f6f4;
  text-align: center;
  min-height: 72vh;
  display: grid;
  align-items: center;
}

.hero-intro {
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 3;
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-intro[aria-hidden="true"] {
  visibility: hidden;
}

.hero-intro[aria-hidden="false"] {
  visibility: visible;
}

.hero h1 {
  text-transform: uppercase;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.15;
}

.hero-eyebrow-top {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
}

.hero-eyebrow-bottom {
  margin-bottom: 22px;
}

.hero-intro .hero-eyebrow-top,
.hero-intro h1,
.hero-intro .hero-eyebrow-bottom {
  transform: translateY(-14px);
}

.hero-intro .hero-actions {
  transform: translateY(6px);
}

.lead {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-primary-cta {
  min-width: min(640px, 86vw);
  padding: 9px 18px;
  min-height: 46px;
  border-width: 2px;
  background: #f6f6f4;
  color: #121212;
  border-color: #f6f6f4;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.hero-primary-cta:hover {
  background: transparent;
  color: #f6f6f4;
  border-color: #f6f6f4;
}

.hero-deck {
  position: absolute;
  inset: 44px 0 56px;
  z-index: 1;
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-deck[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-deck[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 4;
}

.hero-deck-frame {
  height: 100%;
  border: 1px solid rgba(246, 246, 244, 0.7);
  padding: clamp(22px, 4vw, 38px);
  padding-top: clamp(56px, 6.2vw, 74px);
  display: grid;
  grid-template-rows: 1fr;
  position: relative;
  background: rgba(6, 6, 6, 0.2);
}

.hero-deck-screen {
  grid-row: 1;
  grid-column: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  align-self: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-deck-screen.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-deck-kicker {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 14px;
}

.hero-deck h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.hero-deck-screen[data-hero-screen="topic"] h2 {
  font-size: clamp(17px, 2.1vw, 22px);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  opacity: 0.9;
  text-align: center;
}

.hero-deck-screen[data-hero-screen="topic"] {
  max-width: none;
  width: 100%;
  align-self: start;
  margin-top: -10px;
  text-align: left;
}

.hero-deck-lead {
  max-width: 700px;
  margin: 0 auto 22px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(246, 246, 244, 0.9);
}

.hero-deck-screen[data-hero-screen="menu"] .hero-deck-kicker,
.hero-deck-screen[data-hero-screen="menu"] h2,
.hero-deck-screen[data-hero-screen="menu"] .hero-deck-lead {
  transform: translateY(-34px);
}

.hero-deck-choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-choice-btn {
  border: 1px solid rgba(246, 246, 244, 0.72);
  background: transparent;
  color: #f6f6f4;
  padding: 10px 16px;
  min-width: 190px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.6s ease,
    color 0.6s ease,
    border-color 0.6s ease;
}

.hero-choice-btn:hover {
  background: #f6f6f4;
  color: #121212;
  border-color: #f6f6f4;
}

.hero-topic-list {
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: none;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 2;
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-topic-list li {
  border-bottom: 1px solid rgba(246, 246, 244, 0.22);
  padding-bottom: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(246, 246, 244, 0.95);
  cursor: pointer;
  padding-top: 5px;
  padding-right: 6px;
  padding-left: 4px;
  border-left: 1px solid transparent;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    border-color 0.45s ease,
    color 0.45s ease;
}

.hero-topic-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-topic-list li:hover,
.hero-topic-list li:focus,
.hero-topic-list li.is-active {
  outline: none;
  background: rgba(246, 246, 244, 0.08);
  border-left-color: rgba(246, 246, 244, 0.72);
  color: #f6f6f4;
}

.hero-topic-list strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
  color: #f6f6f4;
}

.hero-topic-left {
  position: relative;
  min-height: 330px;
}

.hero-topic-list.is-deep-transition li.is-dimmed {
  opacity: 0;
}

.hero-topic-list.is-deep-transition li.is-lifted-out {
  opacity: 0;
  transform: translateY(-28px);
}

.hero-topic-list.is-hidden-for-deep {
  opacity: 0;
  pointer-events: none;
}

.hero-deep-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  border-left: 0;
  padding-left: 8px;
  margin-top: 2px;
  text-align: left;
}

.hero-deep-card.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-deep-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f6f6f4;
  text-align: left;
}

.hero-deep-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(246, 246, 244, 0.95);
  text-align: left;
}

.hero-deep-text p {
  margin: 0 0 10px;
}

.hero-deep-text p:last-child {
  margin-bottom: 0;
}

.hero-deep-quote {
  margin: 4px 0 12px;
  border-left: 2px solid rgba(246, 246, 244, 0.72);
  padding-left: 12px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: #f6f6f4;
}

.hero-deep-relaxed {
  line-height: 1.72 !important;
}

.hero-deep-strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-deep-emphasis {
  font-weight: 500;
}

.hero-deep-note {
  border: 1px solid rgba(246, 246, 244, 0.36);
  background: rgba(246, 246, 244, 0.08);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #f6f6f4;
}

.hero-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 44%);
  gap: 18px;
  align-items: start;
}

.hero-deck-screen[data-hero-screen="topic"] .hero-topic-layout {
  margin-left: -8px;
}

.hero-topic-visual {
  display: grid;
  gap: 8px;
}

.hero-topic-visual-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(246, 246, 244, 0.78);
}

.hero-topic-visual-frame {
  border: 1px solid rgba(246, 246, 244, 0.62);
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 16px;
  display: grid;
  align-content: start;
  background: rgba(0, 0, 0, 0.14);
}

#heroTopicVisualText {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(246, 246, 244, 0.94);
}

.hero-deck-actions {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 36px;
  z-index: 3;
  pointer-events: none;
}

.hero-deck-link {
  border: 1px solid rgba(246, 246, 244, 0.72);
  background: transparent;
  color: #f6f6f4;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
  padding: 7px 12px;
  transition: color 0.6s ease, border-color 0.6s ease, background 0.6s ease;
  pointer-events: auto;
}

.hero-deck-link:hover {
  background: #f6f6f4;
  color: #121212;
  border-color: #f6f6f4;
}

.hero-deck-link--back {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.hero-deck-link--close {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.hero-deck-link--exit {
  left: 0;
  right: auto;
}

.hero-deck .hero-deck-link[data-role="hero-back"] {
  opacity: 0;
  pointer-events: none;
  border-color: rgba(246, 246, 244, 0);
}

.hero-deck .hero-deck-link[data-role="hero-close"] {
  opacity: 0;
  pointer-events: none;
  border-color: rgba(246, 246, 244, 0);
}

.hero-deck .hero-deck-link[data-role="hero-exit"] {
  opacity: 1;
  pointer-events: auto;
}

.hero-deck.hero-deck--topic .hero-deck-link[data-role="hero-back"] {
  opacity: 1;
  pointer-events: auto;
  border-color: rgba(246, 246, 244, 0.5);
}

.hero-deck.hero-deck--topic .hero-deck-link[data-role="hero-close"] {
  opacity: 1;
  pointer-events: auto;
  border-color: rgba(246, 246, 244, 0.5);
}

.hero-deck.hero-deck--topic .hero-deck-link[data-role="hero-exit"] {
  opacity: 0;
  pointer-events: none;
}

.hero-deck.hero-deck--topic.hero-deck--topic-deep .hero-deck-link[data-role="hero-back"] {
  opacity: 1;
  pointer-events: auto;
}

.hero--deck-open .hero-overlay {
  background: linear-gradient(120deg, rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0.54));
}

.hero--deck-open .hero-intro {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  pointer-events: none;
}

.hero--deck-open .hero-deck {
  z-index: 4;
}

.section {
  padding: 90px 0;
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
}

.section-trusted .eyebrow {
  font-size: 13px;
  font-weight: 500;
}

.section-different .eyebrow,
.section-bts .eyebrow {
  font-size: 18px;
  letter-spacing: 0.3em;
  font-weight: 500;
  opacity: 0.9;
}

.section-bts {
  padding-top: 66px;
}

.section-bts .section-head {
  margin-bottom: 22px;
}

.section-bts .eyebrow {
  font-size: 16px;
  letter-spacing: 0.26em;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

.section-head .eyebrow {
  color: var(--text);
}

.section-different .section-head {
  text-align: left;
}

.section-different .section-head p {
  margin: 0;
  max-width: none;
}

.logo-strip {
  border: 1px solid var(--border);
  padding: 26px;
  background: #fff;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}

.logo-item {
  position: relative;
  display: inline-flex;
  z-index: 1;
}

.logo-grid img {
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 66px;
  object-fit: contain;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  filter: none;
  opacity: 1;
  transition: transform 0.35s ease;
}

.logo-item:hover img {
  transform: scale(1.05);
}

.logo-item:hover {
  z-index: 42;
}

.logo-item:nth-child(3n) img {
  max-height: 58px;
}

.logo-item:nth-child(4n) img {
  max-height: 72px;
}

.logo-item:nth-child(5n) img {
  max-width: 136px;
}

.logo-item:nth-child(6n) img {
  margin-top: -3px;
}

.logo-item:nth-child(7n) img {
  margin-top: 5px;
}

.logo-grid img[src*="mincult.jpg"] {
  max-height: 82px;
  max-width: 178px;
}

.logo-tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: min(270px, 80vw);
  background: rgba(255, 255, 255, 0.9);
  color: #121212;
  border: 1px solid rgba(18, 18, 18, 0.45);
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
  display: grid;
  gap: 4px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  z-index: 120;
}

.logo-tooltip strong {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 2px;
  color: #121212;
}

.logo-tooltip span {
  display: block;
  color: rgba(18, 18, 18, 0.92);
}

.logo-item:hover .logo-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.section.section-examples {
  background: #0b0b0b;
  color: #f6f6f4;
}

.section-examples .eyebrow {
  color: #f6f6f4;
  opacity: 0.9;
  font-size: 18px;
  letter-spacing: 0.3em;
}

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

.examples-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  width: 100%;
}

.films-more-btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 44px;
  padding-right: 44px;
  background: rgba(246, 246, 244, 0.14);
  border-color: rgba(246, 246, 244, 0.88);
  color: #f6f6f4;
}

.films-more-btn > span:first-child {
  display: block;
  text-align: center;
}

.films-more-btn.is-hidden {
  display: none;
}

.films-more-btn:disabled {
  cursor: default;
  opacity: 0.92;
}

.films-mini-loader {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(246, 246, 244, 0.42);
  border-top-color: #f6f6f4;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.films-more-btn:hover .films-mini-loader {
  border-color: rgba(18, 18, 18, 0.28);
  border-top-color: #121212;
}

.films-more-btn.is-loading .films-mini-loader {
  opacity: 1;
  animation: btsMiniSpin 0.75s linear infinite;
}

.film-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: inherit;
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.film-card:hover img {
  transform: scale(1.03);
}

.film-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.film-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.film-sub {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.85;
}

.case-block {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-video {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: #141414;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.case-frame {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.case-notes {
  padding: 22px;
  color: #f6f6f4;
}

.case-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.case-notes h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.case-list {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.case-list strong {
  font-weight: 600;
}

.section-services .eyebrow {
  font-size: 18px;
  letter-spacing: 0.3em;
  font-weight: 500;
  opacity: 0.9;
}

.section-risk .eyebrow {
  font-size: 16px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-risk .section-head {
  text-align: left;
}

.section-risk .section-head p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.risk-timeline {
  margin-top: 6px;
  border-left: 1px solid rgba(18, 18, 18, 0.2);
  padding-left: 18px;
}

.risk-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 8px 0 14px;
}

.risk-step::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 17px;
  width: 10px;
  height: 10px;
  border: 1px solid #121212;
  background: #fff;
}

.risk-step-index {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.2;
  padding-top: 4px;
}

.risk-step-body {
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.risk-step-body h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.risk-step-body p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
}

.risk-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

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

.services-principles {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.services-principles-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px 18px;
}

.services-principles-card .services-principles-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.services-principles-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.service-item {
  display: grid;
  gap: 10px;
  place-items: center;
  text-align: center;
}

.service-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-item p:not(.service-desc) {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.service-desc {
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
  max-width: 180px;
}

.different-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.different-eyebrow {
  margin-bottom: 14px;
}

.different-text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}

.different-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.different-points li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.different-points li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.different-points strong {
  font-weight: 500;
  color: var(--text);
}

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

.awards-grid img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px;
}

.awards-note {
  font-size: 12px;
  color: var(--muted);
}

.festival-strip {
  min-height: auto;
}

.festival-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 16px;
}

.festival-logo-grid .logo-item {
  height: 86px;
  align-items: center;
}

.festival-logo-grid .logo-item img {
  max-width: 186px !important;
  max-height: 68px !important;
  margin-top: 0 !important;
}

.festival-logo-grid .logo-tooltip {
  width: min(300px, 88vw);
}

.festival-fallback-badge {
  width: auto;
  min-width: 132px;
  max-width: 200px;
  height: 68px;
  border: 1px solid rgba(18, 18, 18, 0.22);
  background:
    linear-gradient(170deg, #ffffff 0%, #f3f3f1 100%);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 8px 10px;
  text-align: center;
}

.festival-fallback-title {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
}

.festival-fallback-meta {
  font-size: 10px;
  line-height: 1.2;
  color: #606060;
}

.media-fallback {
  background: linear-gradient(140deg, #1e1e1e 0%, #2f2f2f 55%, #3a3a3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.showreel {
  position: relative;
}

.showreel video {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}

.showreel-fallback {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(150deg, #111 0%, #252525 58%, #1a1a1a 100%);
  color: rgba(255, 255, 255, 0.9);
  place-items: center;
  text-align: center;
  padding: 24px;
  font-size: 14px;
  line-height: 1.45;
}

.showreel.is-fallback video {
  display: none;
}

.showreel.is-fallback .showreel-fallback {
  display: grid;
}

.showreel-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-top: 8px;
  color: var(--muted);
}

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

.shot {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #eaeaea;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.shot-btn {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shot:hover img {
  transform: scale(1.03);
}

.bts-grid .shot {
  border: 0;
  aspect-ratio: 16 / 9;
}

.bts-wrap {
  width: 100%;
}

.bts-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 18px;
  width: 100%;
}

.bts-more-btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 44px;
  padding-right: 44px;
  background: #f6f6f4;
  border-color: #121212;
  color: #121212;
}

.bts-more-btn > span:first-child {
  display: block;
  text-align: center;
}

.bts-more-btn.is-hidden {
  display: none;
}

.bts-more-btn:disabled {
  cursor: default;
  opacity: 0.92;
}

.bts-mini-loader {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(18, 18, 18, 0.26);
  border-top-color: #121212;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bts-more-btn:hover {
  background: #121212;
  border-color: #121212;
  color: #f6f6f4;
}

.bts-more-btn:hover .bts-mini-loader {
  border-color: rgba(246, 246, 244, 0.34);
  border-top-color: #f6f6f4;
}

.bts-more-btn.is-loading .bts-mini-loader {
  opacity: 1;
  animation: btsMiniSpin 0.75s linear infinite;
}

@keyframes btsMiniSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.section-why-doc .section-head h2 {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
}

.section-why-doc .why-doc-sub {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 2px;
  margin-left: 0;
}

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

.why-doc-col {
  border: 1px solid var(--border);
  background: #fff;
  padding: 20px;
  transform: perspective(900px) translateY(0) rotateX(0deg);
  transform-origin: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  cursor: default;
}

.why-doc-col:hover {
  transform: perspective(900px) translateY(-6px) rotateX(1.5deg);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(18, 18, 18, 0.42);
}

.why-doc-col h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.why-doc-col ul {
  list-style: none;
  display: grid;
  gap: 0;
}

.why-doc-col li {
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
  padding: 10px 0;
}

.why-doc-col li:not(:last-child) {
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
}

.why-doc-col li strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 2px;
}

.why-doc-col li::before {
  content: none;
}

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

.card {
  border: 1px solid var(--border);
  padding: 24px;
  background: #fff;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.card p {
  font-weight: 400;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-weight: 400;
}

.card ul li::before {
  content: "— ";
  font-weight: 600;
}

.card.big {
  padding: 32px;
  font-size: 18px;
}

.section-price .price-wrap {
  display: grid;
  gap: 36px;
}

.price-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
}

.price {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.price-note {
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
}

.price-proof {
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
}

.tariff-scroll {
  border: 1px solid var(--border);
  background: #fff;
  overflow-x: auto;
}

.tariff-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
}

.tariff-table th,
.tariff-table td {
  border-bottom: 1px solid rgba(18, 18, 18, 0.14);
  padding: 6px 8px;
  text-align: center;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.2;
}

.tariff-table th + th,
.tariff-table td + td {
  border-left: 1px solid rgba(18, 18, 18, 0.18);
}

.tariff-table thead th {
  background: #f9f9f8;
  padding: 10px 8px;
}

.tariff-table thead th[data-col] {
  cursor: pointer;
  user-select: none;
}

.tariff-table tbody td:nth-child(n + 2) {
  cursor: pointer;
}

.tariff-table .param-col {
  width: 26%;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tariff-table thead th[data-col],
.tariff-table tbody td:nth-child(n + 2) {
  width: 18.5%;
}

.tariff-table.hide-plan-2 th:nth-child(2),
.tariff-table.hide-plan-2 td:nth-child(2) {
  display: none;
}

.tariff-table.hide-plan-2 thead th[data-col],
.tariff-table.hide-plan-2 tbody td:nth-child(n + 2) {
  width: 24.6%;
}

.tariff-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tariff-table tbody tr:nth-child(even) {
  background: #fcfcfb;
}

.tariff-table tbody tr {
  height: 35px;
}

.tariff-table tbody td:nth-child(n + 2) {
  white-space: nowrap;
}

.tariff-table .yes {
  color: #0f5f2e;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.tariff-table .no {
  color: #8b8b8b;
  font-weight: 600;
}

.plan-card {
  border: 1px solid rgba(18, 18, 18, 0.22);
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 3px;
  transform: perspective(900px) translateY(0) rotateX(0deg) rotateY(0deg);
  transform-origin: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.tariff-table thead th:hover .plan-card {
  transform: perspective(900px) translateY(-6px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(18, 18, 18, 0.45);
}

.tariff-table.hover-col-2 th:nth-child(2) .plan-card,
.tariff-table.hover-col-3 th:nth-child(3) .plan-card,
.tariff-table.hover-col-4 th:nth-child(4) .plan-card,
.tariff-table.hover-col-5 th:nth-child(5) .plan-card {
  transform: perspective(900px) translateY(-6px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  border-color: rgba(18, 18, 18, 0.45);
}

.plan-card.featured {
  border-color: rgba(18, 18, 18, 0.22);
  box-shadow: none;
}

.plan-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.plan-price {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.plan-note {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tariff-table.selected-col-2 th:nth-child(2),
.tariff-table.selected-col-2 td:nth-child(2),
.tariff-table.selected-col-3 th:nth-child(3),
.tariff-table.selected-col-3 td:nth-child(3),
.tariff-table.selected-col-4 th:nth-child(4),
.tariff-table.selected-col-4 td:nth-child(4),
.tariff-table.selected-col-5 th:nth-child(5),
.tariff-table.selected-col-5 td:nth-child(5) {
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}

.tariff-table.selected-col-2 tbody tr:nth-child(odd) td:nth-child(2),
.tariff-table.selected-col-3 tbody tr:nth-child(odd) td:nth-child(3),
.tariff-table.selected-col-4 tbody tr:nth-child(odd) td:nth-child(4),
.tariff-table.selected-col-5 tbody tr:nth-child(odd) td:nth-child(5) {
  background: #fbfbfa;
}

.tariff-table.selected-col-2 tbody tr:nth-child(even) td:nth-child(2),
.tariff-table.selected-col-3 tbody tr:nth-child(even) td:nth-child(3),
.tariff-table.selected-col-4 tbody tr:nth-child(even) td:nth-child(4),
.tariff-table.selected-col-5 tbody tr:nth-child(even) td:nth-child(5) {
  background: #f4f4f2;
}

.tariff-table.selected-col-2 th:nth-child(2) .plan-card,
.tariff-table.selected-col-3 th:nth-child(3) .plan-card,
.tariff-table.selected-col-4 th:nth-child(4) .plan-card,
.tariff-table.selected-col-5 th:nth-child(5) .plan-card {
  background: #fff;
  border-color: rgba(18, 18, 18, 0.45);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.1);
  transform: perspective(900px) translateY(-4px) rotateX(2deg) rotateY(-1deg);
}

.tariff-table.selected-col-2 th:nth-child(2) .plan-note,
.tariff-table.selected-col-3 th:nth-child(3) .plan-note,
.tariff-table.selected-col-4 th:nth-child(4) .plan-note,
.tariff-table.selected-col-5 th:nth-child(5) .plan-note {
  color: var(--muted);
}

.tariff-table.selected-col-2 th:nth-child(2) .plan-name,
.tariff-table.selected-col-3 th:nth-child(3) .plan-name,
.tariff-table.selected-col-4 th:nth-child(4) .plan-name,
.tariff-table.selected-col-5 th:nth-child(5) .plan-name {
  font-size: 11px;
  font-weight: 700;
}

.tariff-table.selected-col-2 th:nth-child(2) .plan-price,
.tariff-table.selected-col-3 th:nth-child(3) .plan-price,
.tariff-table.selected-col-4 th:nth-child(4) .plan-price,
.tariff-table.selected-col-5 th:nth-child(5) .plan-price {
  font-size: 19px;
  font-weight: 700;
}

.tariff-table.selected-col-2 th:nth-child(2) .plan-note,
.tariff-table.selected-col-3 th:nth-child(3) .plan-note,
.tariff-table.selected-col-4 th:nth-child(4) .plan-note,
.tariff-table.selected-col-5 th:nth-child(5) .plan-note {
  font-size: 11px;
}

.tariff-table.selected-col-2 td:nth-child(2).yes,
.tariff-table.selected-col-3 td:nth-child(3).yes,
.tariff-table.selected-col-4 td:nth-child(4).yes,
.tariff-table.selected-col-5 td:nth-child(5).yes {
  color: #0f5f2e;
  font-weight: 800;
  font-size: 18px;
}

.tariff-table.selected-col-2 td:nth-child(2).no,
.tariff-table.selected-col-3 td:nth-child(3).no,
.tariff-table.selected-col-4 td:nth-child(4).no,
.tariff-table.selected-col-5 td:nth-child(5).no {
  color: #696969;
  font-weight: 700;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 7px;
  font-size: 13px;
  line-height: 1.35;
}

.price-result-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 7px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
}

.price-result-list li::marker {
  font-weight: 700;
}

.price-list li::before {
  content: "• ";
  font-weight: 600;
}

.price-footnote {
  font-size: 12px;
  color: var(--muted);
}

.price-extras {
  border: 1px solid var(--border);
  background: #fff;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.price-extras h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-extras p {
  font-size: 13px;
  color: var(--muted);
}

.section-contact {
  background: #0b0b0b !important;
  color: #f6f6f4;
}

.section-contact .contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(246, 246, 244, 0.35);
  padding: 32px;
  background: #1b1b1b;
  color: #f6f6f4;
}

.section-contact .contact p {
  color: rgba(246, 246, 244, 0.78);
}

.contact-cta {
  display: grid;
  gap: 10px;
  justify-items: end;
  min-width: 320px;
}

.contact-cta .btn {
  min-width: 260px;
}

.contact-mail {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(246, 246, 244, 0.72);
  border-bottom: 1px solid rgba(246, 246, 244, 0.42);
  padding-bottom: 2px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.contact-mail:hover {
  color: #f6f6f4;
  border-color: #f6f6f4;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.logo.small .logo-mark {
  font-size: 25px;
  font-weight: 600;
}

.logo.small .logo-icon {
  width: 34px;
  height: 34px;
}

.logo.small .logo-sub {
  font-size: 8px;
  letter-spacing: 0.16em;
  margin-top: -3px;
}

.footer-brand {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
}

.footer-brand-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand-mark {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.footer-brand-sub {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 400;
  line-height: 1;
}

.footer-note {
  color: var(--muted);
  font-weight: 400;
  text-align: center;
}

.footer-col {
  display: grid;
  gap: 8px;
  min-width: 180px;
  font-size: 13px;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-col a,
.footer-col span {
  color: var(--muted);
  font-weight: 400;
}

.footer-col a:hover {
  color: var(--text);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.12s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
}

.modal-card {
  width: min(980px, 92vw);
  background: #0b0b0b;
  border: 1px solid #ffffff;
  padding: 24px;
  position: relative;
  z-index: 1;
  color: #f6f6f4;
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.992);
  transition:
    opacity 1.12s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.12s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.modal[aria-hidden="false"] .modal-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

#caseModal {
  transition: opacity 1.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}

#caseModal .modal-card {
  opacity: 0;
  transform: scale(0.994);
  transition:
    opacity 1.45s cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 1.45s cubic-bezier(0.2, 0.9, 0.2, 1);
}

#caseModal[aria-hidden="false"] .modal-card {
  opacity: 1;
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #f6f6f4;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.modal-video .case-frame {
  background: #111;
  padding: 120px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

#modalVideo {
  width: 100%;
  height: 320px;
  border: 0;
  display: none;
}

.modal.has-video #modalVideo {
  display: block;
}

.modal.has-video .case-frame {
  display: none;
}

.modal-text h3 {
  margin: 8px 0 12px;
}

.photo-modal-card {
  width: auto;
  max-width: 96vw;
  background: transparent;
  border: 0;
  padding: 0;
}

.photo-modal-content {
  display: grid;
  place-items: center;
  min-height: auto;
}

#photoModalImage {
  width: auto;
  height: auto;
  max-width: 96vw;
  max-height: 78vh;
  object-fit: contain;
  cursor: pointer;
}

.photo-modal-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.request-modal-card {
  width: min(760px, 92vw);
  background: #0b0b0b;
  border: 1px solid #ffffff;
  color: #f6f6f4;
}

.request-head {
  margin-bottom: 14px;
}

.request-head h3 {
  font-size: 22px;
  font-weight: 600;
}

.request-form {
  display: grid;
  gap: 10px;
}

.request-form label {
  display: grid;
  gap: 6px;
}

.request-form label span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 246, 244, 0.78);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 246, 244, 0.36);
  background: transparent;
  color: #f6f6f4;
  padding: 10px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  border-radius: 0;
}

.request-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(246, 246, 244, 0.85) 50%),
    linear-gradient(135deg, rgba(246, 246, 244, 0.85) 50%, transparent 50%),
    linear-gradient(to right, rgba(246, 246, 244, 0.24), rgba(246, 246, 244, 0.24));
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px),
    calc(100% - 32px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 16px;
  background-repeat: no-repeat;
}

.request-form select::-ms-expand {
  display: none;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(246, 246, 244, 0.45);
}

.request-form select option {
  color: #121212;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: #f6f6f4;
}

.request-actions {
  margin-top: 6px;
  display: flex;
  justify-content: center;
}

#requestSubmitBtn:disabled {
  opacity: 0.7;
  cursor: default;
}

.request-status {
  min-height: 20px;
  margin-top: 6px;
  font-size: 12px;
  text-align: center;
  color: rgba(246, 246, 244, 0.8);
}

.request-status.is-success {
  color: #9ee0ae;
}

.request-status.is-error {
  color: #ffb2b2;
}

.followup-modal-card {
  width: min(860px, 92vw);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.08), transparent 48%),
    #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: #f6f6f4;
}

.followup-head {
  margin-bottom: 12px;
  display: grid;
  gap: 8px;
}

.followup-head h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.followup-question {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(246, 246, 244, 0.9);
  max-width: 720px;
}

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

.followup-step {
  display: none;
}

.followup-step.is-active {
  display: block;
}

.followup-form label {
  display: grid;
  gap: 8px;
}

.followup-form label span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 246, 244, 0.78);
}

.followup-intents {
  margin: 0;
  border: 1px solid rgba(246, 246, 244, 0.24);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.followup-intents legend {
  padding: 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 246, 244, 0.78);
}

.followup-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.followup-intent {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(246, 246, 244, 0.26);
  background: rgba(0, 0, 0, 0.28);
  padding: 10px;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
}

.followup-intent input[type="checkbox"] {
  margin: 0;
  inline-size: 15px;
  block-size: 15px;
  accent-color: #f6f6f4;
}

.followup-form textarea {
  width: 100%;
  min-height: 180px;
  border: 1px solid rgba(246, 246, 244, 0.42);
  background: rgba(0, 0, 0, 0.36);
  color: #f6f6f4;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
}

.followup-form textarea::placeholder {
  color: rgba(246, 246, 244, 0.46);
}

.followup-form textarea:focus {
  outline: none;
  border-color: #f6f6f4;
}

.followup-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.followup-actions .btn {
  min-width: 220px;
}

#requestFollowupSubmitBtn:disabled {
  opacity: 0.72;
  cursor: default;
}

.followup-status {
  min-height: 20px;
  margin-top: 2px;
  font-size: 12px;
  text-align: center;
  color: rgba(246, 246, 244, 0.8);
}

.followup-status.is-success {
  color: #9ee0ae;
}

.followup-status.is-error {
  color: #ffb2b2;
}

@media (max-width: 900px) {
  .followup-intent-grid {
    grid-template-columns: 1fr;
  }
}

.request-modal-card .request-head > *,
.request-modal-card .request-form > * {
  opacity: 0;
  transition: opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.modal[aria-hidden="false"] .request-modal-card .request-head > *:nth-child(1) {
  transition-delay: 120ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-head > *:nth-child(2) {
  transition-delay: 320ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(1) {
  transition-delay: 560ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(2) {
  transition-delay: 840ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(3) {
  transition-delay: 1160ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(4) {
  transition-delay: 1520ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(5) {
  transition-delay: 1920ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(6) {
  transition-delay: 2360ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(7) {
  transition-delay: 2840ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-form > *:nth-child(8) {
  transition-delay: 3360ms;
}

.modal[aria-hidden="false"] .request-modal-card .request-head > *,
.modal[aria-hidden="false"] .request-modal-card .request-form > * {
  opacity: 1;
}

.request-modal-card .request-actions .btn {
  opacity: 0;
  transition: opacity 1800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 3400ms;
  will-change: opacity;
}

.modal[aria-hidden="false"] .request-modal-card .request-actions .btn {
  opacity: 1;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 22px;
  --reveal-scale: 0.992;
  --reveal-blur: 5px;
  --reveal-duration: 820ms;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease),
    filter calc(var(--reveal-duration) * 0.9) ease;
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal[data-reveal="left"] {
  --reveal-x: -26px;
  --reveal-y: 0px;
}

.reveal[data-reveal="right"] {
  --reveal-x: 26px;
  --reveal-y: 0px;
}

.reveal[data-reveal="up-soft"] {
  --reveal-y: 16px;
  --reveal-scale: 0.996;
  --reveal-blur: 3px;
}

.reveal[data-reveal="zoom"] {
  --reveal-y: 0px;
  --reveal-scale: 0.97;
  --reveal-blur: 4px;
}

.reveal[data-reveal="fade-jitter"] {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
  --reveal-blur: 0px;
  --reveal-duration: 2600ms;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  transition-property: opacity;
}

.reveal[data-reveal="fade-jitter"].is-visible {
  animation: none;
}

@keyframes reveal-fade-jitter {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 0.06;
  }
  24% {
    opacity: 0.14;
  }
  33% {
    opacity: 0.12;
  }
  47% {
    opacity: 0.3;
  }
  58% {
    opacity: 0.28;
  }
  73% {
    opacity: 0.58;
  }
  86% {
    opacity: 0.78;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .featured-grid,
  .services-grid,
  .services-principles,
  .why-doc-grid,
  .bts-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .risk-timeline {
    border-left: 0;
    padding-left: 0;
  }

  .risk-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 6px 0 10px;
  }

  .risk-step::before {
    display: none;
  }

  .risk-step-index {
    padding-top: 0;
  }

  .case-block,
  .different-wrap {
    grid-template-columns: 1fr;
  }

  .case-video {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    justify-items: center;
    min-width: 0;
  }

  .section-contact .contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .contact-cta .btn {
    min-width: min(100%, 360px);
  }

  .hero-deck {
    inset: 30px 0 34px;
  }

  .festival-logo-grid {
    gap: 12px 14px;
  }

  .festival-strip {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    padding: 8px 0;
  }

  .logo {
    gap: 8px;
    min-width: 0;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  .logo-mark {
    font-size: 17px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .logo-sub {
    display: none;
  }

  .header-cta {
    padding: 7px 11px;
    min-height: 31px;
    font-size: 9px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    min-height: 90svh;
    padding: 92px 0 56px;
  }

  .hero-primary-cta {
    min-width: min(92vw, 420px);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-deck {
    inset: 18px 0 24px;
  }

  .hero-deck-frame {
    padding: 16px;
    padding-top: 54px;
  }

  .hero-deck-actions {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .hero-topic-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-deck-screen[data-hero-screen="topic"] {
    margin-top: 14px;
  }

  .hero-topic-visual {
    display: none;
  }

  .hero-topic-left {
    min-height: 260px;
  }

  .hero-topic-visual-frame {
    min-height: 150px;
  }

  .hero-deck-link--close {
    font-size: 24px;
  }

  .festival-logo-grid {
    gap: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
