:root {
  --ink: #111111;
  --ink-soft: #262626;
  --paper: #f3f0ea;
  --paper-deep: #e8e3da;
  --white: #fffdf8;
  --red: #c81018;
  --red-dark: #9f0b12;
  --red-bright: #ff666b;
  --muted: #6f6c66;
  --line: rgba(17, 17, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --radius: 24px;
  --container: 1440px;
  --gutter: clamp(20px, 4.2vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dark-top {
  background-color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  background: var(--red);
  color: white;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: -1px 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding-inline: var(--gutter);
  border-bottom: 1px solid transparent;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    min-height 0.35s var(--ease),
    background 0.35s,
    border-color 0.35s;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-color: var(--line);
  background: var(--paper);
}

/* Headerul întunecat trebuie să fie opac. Dacă rămâne transparent, restaurarea
   unei pagini din istoricul browserului poate expune pentru un cadru fundalul
   deschis al elementului html înainte ca hero-ul negru să fie redesenat. */
body.dark-top:not(.menu-open) .site-header:not(.is-scrolled) {
  background: var(--ink);
}

.brand {
  position: relative;
  z-index: 2;
  width: clamp(142px, 13vw, 190px);
}

.brand img {
  width: 100%;
  height: auto;
}

.dark-top .site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 38px);
}

.nav-menu a {
  position: relative;
  padding-block: 12px;
  color: rgba(17, 17, 17, 0.67);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--ink);
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 46px;
  padding: 0 8px 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 0.25s,
    color 0.25s;
}

.header-cta span:last-child {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  transition: transform 0.3s var(--ease);
}

.header-cta:hover {
  background: var(--ink);
  color: white;
}

.header-cta:hover span:last-child {
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
}

@media (min-width: 1181px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: clamp(20px, 2vw, 30px);
  }

  .nav-menu {
    justify-self: end;
    gap: clamp(15px, 1.65vw, 26px);
  }

  .nav-menu a {
    font-size: 10.5px;
    letter-spacing: 0.085em;
  }
}

.dark-top .site-header:not(.is-scrolled) .nav-menu a {
  color: rgba(255, 255, 255, 0.72);
}

.dark-top .site-header:not(.is-scrolled) .nav-menu a:hover,
.dark-top .site-header:not(.is-scrolled) .nav-menu a[aria-current="page"] {
  color: white;
}

.dark-top .site-header:not(.is-scrolled) .header-cta {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow--light::before {
  background: var(--red);
}

.display {
  margin-bottom: 0;
  font-size: clamp(56px, 8.9vw, 156px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.display em {
  color: var(--red);
  font-style: normal;
}

.dark-hero .display em,
.contact-hero .display em,
.social-takeover__steps li > span,
.tv-spot__scene--split p span:nth-child(2),
.tv-spot__scene--cascade p span:nth-child(2),
.tv-spot__scene--brand p span:first-child {
  color: var(--red-bright);
}

.section-title {
  max-width: 1100px;
  margin-bottom: 0;
  font-size: clamp(42px, 6.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.section-title--small {
  font-size: clamp(38px, 4.6vw, 76px);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.48;
}

.lead strong {
  color: var(--ink);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 11px 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s;
}

.button span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  font-size: 18px;
  transition: transform 0.3s var(--ease);
}
.button:hover {
  transform: translateY(-2px);
}

.button:hover span:last-child {
  transform: rotate(45deg);
}

.button--red {
  background: var(--red);
  color: white;
}

.button--line {
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--red);
  transition: transform 0.25s;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.inline-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(237, 28, 36, 0.55);
  text-underline-offset: 4px;
}

/* Home */
.home-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding: 150px 0 56px;
  overflow: hidden;
  background: var(--paper);
}

.home-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 18%;
  width: 1px;
  height: 100%;
  background: var(--line);
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: end;
}

.home-hero__copy {
  align-self: center;
}

.home-hero__copy .display {
  max-width: 1180px;
}

.home-hero__service-subtitle {
  max-width: 860px;
  margin: clamp(18px, 2.5vw, 30px) 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(24px, 3vw, 43px);
  font-weight: 560;
  letter-spacing: -0.038em;
  line-height: 1.05;
}

.home-hero__service-subtitle a {
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.home-hero__service-subtitle a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.home-hero__service-subtitle a:hover::after,
.home-hero__service-subtitle a:focus-visible::after {
  transform: scaleX(1);
}

.home-hero__bottom {
  display: grid;
  grid-template-columns: minmax(260px, 560px) auto;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-top: 46px;
}

.home-hero__bottom .lead {
  margin: 0;
}

.signal-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--red);
  color: white;
}

.signal-marquee__viewport {
  width: 100%;
  overflow: hidden;
}

.signal-marquee__track {
  display: flex;
  width: max-content;
  animation: signal-scroll 54s linear infinite;
}

.signal-marquee:hover .signal-marquee__track,
.signal-marquee:focus-within .signal-marquee__track {
  animation-play-state: paused;
}

.signal-marquee__viewport.is-dragging {
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}


.signal-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.signal-marquee__group span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 23px 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-marquee__group span::after {
  content: "✦";
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.signal-marquee__group span.signal-marquee__social {
  background: var(--ink);
  box-shadow:
    inset 1px 0 rgba(255, 255, 255, 0.11),
    inset -1px 0 rgba(255, 255, 255, 0.11);
}

.signal-marquee__group span.signal-marquee__social::after {
  content: "→";
  color: var(--red);
  font-size: 14px;
}

@keyframes signal-scroll {
  to {
    transform: translateX(-50%);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero-card {
  position: relative;
  display: flex;
  min-height: min(67vh, 680px);
  padding: 28px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  color: white;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.hero-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.hero-card:hover .hero-card__image {
  transform: scale(1);
}

.hero-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.hero-card__top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card__metric strong {
  display: block;
  font-size: clamp(70px, 8vw, 128px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.hero-card__metric span {
  display: block;
  max-width: 180px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.tv-spot {
  position: relative;
  padding: clamp(58px, 8vw, 108px) 0 clamp(18px, 2.4vw, 34px);
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    var(--paper) 34%,
    var(--paper-deep) 100%
  );
}

.tv-spot .container {
  position: relative;
  padding: clamp(7px, 1vw, 14px);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: clamp(20px, 2.5vw, 36px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 227, 218, 0.88));
  box-shadow:
    0 28px 78px rgba(17, 17, 17, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.84);
}

.tv-spot .container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  z-index: 2;
  width: 4px;
  height: 27%;
  border-radius: 0 999px 999px 0;
  background: var(--red);
  box-shadow: 0 0 24px rgba(237, 28, 36, 0.34);
  transform: translateY(-50%);
  pointer-events: none;
}

.tv-spot__screen {
  position: relative;
  isolation: isolate;
  min-height: clamp(410px, 52vw, 700px);
  padding: clamp(22px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: clamp(14px, 1.8vw, 25px);
  background: var(--ink);
  color: white;
  box-shadow:
    0 18px 52px rgba(17, 17, 17, 0.22),
    inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.tv-spot__screen::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -30%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(860px) rotateX(55deg);
  animation: tv-grid 36s linear infinite;
}

.tv-spot__screen::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 52%, rgba(237, 28, 36, 0.17), transparent 28%),
    repeating-linear-gradient(to bottom, transparent 0 7px, rgba(255, 255, 255, 0.015) 8px);
}

.tv-spot__meta,
.tv-spot__footer {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4vw, 56px);
  left: clamp(22px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tv-spot__meta {
  top: clamp(22px, 4vw, 48px);
}

.tv-spot__meta i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(237, 28, 36, 0.13);
  animation: tv-live 1.2s ease-in-out infinite;
}

.tv-spot__scenes {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tv-spot__scene {
  position: absolute;
  inset: clamp(78px, 9vw, 128px) clamp(22px, 7vw, 112px) clamp(72px, 8vw, 112px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 52px);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.99);
  transition:
    opacity 0.14s linear,
    visibility 0s linear 0.14s,
    transform 0.25s var(--ease);
}

.tv-spot__scene.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s var(--ease) 0.14s,
    visibility 0s linear,
    transform 0.9s var(--ease) 0.14s;
}

.tv-spot__scene > span {
  align-self: start;
  padding-top: 0.55em;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.tv-spot__scene p {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(48px, 7.6vw, 124px);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.9;
  text-wrap: balance;
}

.tv-spot__scene p > span {
  position: relative;
}

.tv-spot__scene--type p {
  display: grid;
  justify-items: start;
  text-wrap: nowrap;
}

.tv-spot__scene--type p span {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}

.tv-spot__scene--type p span::after {
  content: "";
  position: absolute;
  top: 0.08em;
  right: 0;
  bottom: 0.08em;
  width: 3px;
  background: var(--red);
  opacity: 0;
}

.tv-spot__scene--type.is-active p span:nth-child(1) {
  animation: tv-type 0.8s steps(12, end) 0.45s forwards;
}

.tv-spot__scene--type.is-active p span:nth-child(2) {
  animation: tv-type 0.8s steps(11, end) 1.35s forwards;
}

.tv-spot__scene--type.is-active p span:nth-child(3) {
  animation: tv-type 0.9s steps(16, end) 2.25s forwards;
}

.tv-spot__scene--type.is-active p span::after {
  animation: tv-cursor 0.48s steps(1, end) 0.2s 4;
}

.tv-spot__scene--fall p {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.22em;
  row-gap: 0.02em;
}

.tv-spot__scene--fall p span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-170%) rotate(calc((var(--word) - 2) * 4deg));
}

.tv-spot__scene--fall p span:nth-child(1) { --word: 0; }
.tv-spot__scene--fall p span:nth-child(2) { --word: 1; }
.tv-spot__scene--fall p span:nth-child(3) { --word: 2; }
.tv-spot__scene--fall p span:nth-child(4) { --word: 3; }
.tv-spot__scene--fall p span:nth-child(5) { --word: 4; }
.tv-spot__scene--fall p span:nth-child(6) { --word: 5; }

.tv-spot__scene--fall.is-active p span {
  animation: tv-fall 1.05s var(--ease) calc(0.35s + (var(--word) * 0.16s)) forwards;
}

.tv-spot__scene--split p {
  display: grid;
  justify-items: start;
}

.tv-spot__scene--split p span {
  display: block;
  opacity: 0;
  transform: translateX(-28px) skewX(-3deg);
}

.tv-spot__scene--split p span:nth-child(even) {
  transform: translateX(28px) skewX(3deg);
}

.tv-spot__scene--split.is-active p span {
  animation: tv-split 1.1s var(--ease) calc(0.35s + (var(--line, 0) * 0.32s)) forwards;
}

.tv-spot__scene--split p span:first-child {
  color: white;
}

.tv-spot__scene--split.is-active p span:first-child {
  opacity: 1;
  transform: translateX(0) skewX(0);
  animation: none;
}

.tv-spot__scene--split p span:nth-child(2) {
  --line: 1;
  color: var(--red);
}

.tv-spot__scene--split p span:nth-child(3) {
  --line: 2;
}

.tv-spot__scene--budget p {
  position: relative;
  display: grid;
  justify-items: start;
  font-size: clamp(28px, 3vw, 50px);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.tv-budget-intro,
.tv-budget-outro {
  display: block;
  color: rgba(255, 255, 255, 0.64);
}

.tv-budget-target {
  display: block;
  color: var(--red-bright);
  font-size: clamp(82px, 12vw, 190px);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.78;
}

.tv-spot__scene--budget p > i {
  position: absolute;
  z-index: 2;
  top: 48%;
  right: -35%;
  color: white;
  font-size: 24px;
  font-style: normal;
  opacity: 0;
  text-shadow: 0 0 18px white;
}

.tv-spot__scene--budget p > strong {
  position: absolute;
  z-index: 3;
  top: 18%;
  right: 8%;
  color: white;
  font-size: clamp(50px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.08em;
  opacity: 0;
  transform: rotate(-12deg) scale(0);
}

.tv-spot__scene--budget.is-active p > i {
  animation: tv-budget-shot 0.62s cubic-bezier(0.7, 0, 0.84, 0) 0.72s forwards;
}

.tv-spot__scene--budget.is-active .tv-budget-target {
  animation: tv-budget-hit 0.5s ease-out 1.3s both;
}

.tv-spot__scene--budget.is-active p > strong {
  animation: tv-budget-poc 0.72s var(--ease) 1.28s both;
}

.tv-spot__scene--cascade p {
  display: grid;
  justify-items: start;
}

.tv-spot__scene--cascade p span {
  display: block;
  opacity: 0;
  transform: translateY(70px) rotateX(-38deg);
  transform-origin: center top;
}

.tv-spot__scene--cascade.is-active p span {
  animation: tv-cascade 1s var(--ease) calc(0.35s + (var(--line, 0) * 0.32s)) forwards;
}

.tv-spot__scene--cascade p span:nth-child(2) {
  --line: 1;
  color: var(--red);
}

.tv-spot__scene--cascade p span:nth-child(3) {
  --line: 2;
}

.tv-spot__scene--brand p {
  display: grid;
  width: min(100%, 1160px);
  grid-column: 1 / -1;
  justify-self: center;
  justify-items: center;
  color: white;
  text-align: center;
}

.tv-spot__scene--brand > span {
  position: absolute;
  top: 0;
  left: 0;
}

.tv-spot__scene--brand p span {
  display: block;
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.18);
}

.tv-spot__scene--brand p span:first-child {
  color: var(--red);
}

.tv-spot__scene--brand.is-active p span {
  animation: tv-brand-focus 1s var(--ease) calc(0.35s + (var(--line, 0) * 0.32s)) forwards;
}

.tv-spot__scene--brand p span:nth-child(2) {
  --line: 1;
}

.tv-spot__scene--brand p span:nth-child(3) {
  --line: 2;
}

.tv-spot__footer {
  bottom: clamp(20px, 3.2vw, 40px);
}

.tv-spot__footer strong {
  color: white;
  font-size: inherit;
}

.tv-spot__progress {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.tv-spot__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  animation: tv-progress 36s linear infinite;
}

@keyframes tv-grid {
  to {
    background-position: 70px 70px, -70px 70px;
    transform: perspective(860px) rotateX(55deg) translateY(38px);
  }
}

@keyframes tv-live {
  50% {
    opacity: 0.45;
  }
}

@keyframes tv-progress {
  to {
    width: 100%;
  }
}

@keyframes tv-type {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes tv-cursor {
  0%,
  49% {
    opacity: 1;
  }

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

@keyframes tv-fall {
  0% {
    opacity: 0;
    transform: translateY(-170%) rotate(-8deg);
  }

  70% {
    opacity: 1;
    transform: translateY(12%) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes tv-split {
  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

@keyframes tv-budget-shot {
  0% {
    right: -35%;
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    right: 43%;
    opacity: 0;
  }
}

@keyframes tv-budget-hit {
  20% {
    transform: translateX(-16px) rotate(-2deg);
    filter: blur(0);
  }

  45% {
    transform: translateX(12px) rotate(1.5deg);
    filter: blur(1px);
  }

  75% {
    transform: translateX(-5px);
  }
}

@keyframes tv-budget-poc {
  45% {
    opacity: 1;
    transform: rotate(-12deg) scale(1.18);
  }

  100% {
    opacity: 0.84;
    transform: rotate(-8deg) scale(1);
  }
}

@keyframes tv-cascade {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes tv-brand-focus {
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.social-takeover {
  padding: clamp(18px, 2.4vw, 34px) 0 clamp(82px, 10vw, 152px);
  background: linear-gradient(
    180deg,
    var(--paper-deep) 0%,
    var(--paper) 24%,
    var(--paper) 100%
  );
}

.social-takeover__panel {
  position: relative;
  isolation: isolate;
  padding: clamp(34px, 5.8vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(18px, 2.2vw, 32px);
  background: #090909;
  box-shadow: 0 40px 110px rgba(17, 17, 17, 0.18);
  color: white;
}

.social-takeover__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.68;
}

.social-takeover__panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -55%;
  bottom: -55%;
  left: -46%;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent 0 48.5%,
    rgba(237, 28, 36, 0.72) 49.7%,
    rgba(237, 28, 36, 0.16) 50%,
    transparent 51.5% 100%
  );
  transform: rotate(10deg);
  animation: social-takeover-scan 9s ease-in-out infinite;
}

.social-takeover__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.social-takeover__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.social-takeover__copy h2 {
  max-width: 820px;
  margin: 24px 0 28px;
  font-size: clamp(50px, 6.2vw, 102px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.social-takeover__copy h2 span,
.social-takeover__copy h2 em {
  display: block;
}

.social-takeover__copy h2 em {
  margin-top: 0.13em;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.social-takeover__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}

.social-takeover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.social-takeover .button--line {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.social-takeover__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-takeover__steps li {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.45s var(--ease);
}

.social-takeover__steps li:nth-child(2n) {
  transform: translateY(28px);
}

.social-takeover__steps li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.social-takeover__steps li:hover {
  border-color: rgba(237, 28, 36, 0.48);
  background: rgba(237, 28, 36, 0.11);
  transform: translateY(-5px);
}

.social-takeover__steps li:nth-child(2n):hover {
  transform: translateY(23px);
}

.social-takeover__steps li:hover::after {
  transform: scaleX(1);
}

.social-takeover__steps li > span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.social-takeover__steps strong {
  display: block;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.social-takeover__steps p {
  max-width: 250px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

@keyframes social-takeover-scan {
  0%,
  18% {
    left: -46%;
  }

  70%,
  100% {
    left: 112%;
  }
}

.stats-band {
  background: var(--red);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: clamp(34px, 5vw, 72px) clamp(20px, 4vw, 60px);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat[href] {
  transition: background 0.3s, transform 0.35s var(--ease);
}

.stat[href]:hover,
.stat[href]:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.stat span {
  display: block;
  max-width: 250px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visibility-manifesto {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 12vw, 190px) 0;
  background: var(--ink);
  color: white;
}

.visibility-manifesto::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 84% 36%, rgba(200, 16, 24, 0.22), transparent 35%);
  background-size: 72px 72px, 72px 72px, auto;
}

.visibility-manifesto__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1.68fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.visibility-manifesto__label {
  max-width: 210px;
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 2px solid var(--red-bright);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.visibility-manifesto__title {
  max-width: 1180px;
  margin: 0;
  scroll-margin-top: 110px;
  font-size: clamp(46px, 5.9vw, 96px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.97;
  text-wrap: balance;
}

.visibility-manifesto__title em {
  color: var(--red-bright);
  font-style: normal;
}

.manifesto {
  padding: clamp(100px, 14vw, 220px) 0;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(40px, 8vw, 130px);
}

.manifesto__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.manifesto__aside p {
  max-width: 260px;
  color: var(--muted);
  font-size: 13px;
}

.manifesto__aside > p:not(.eyebrow) {
  max-width: 430px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.42;
}

.manifesto__quote {
  margin: 0;
  font-size: clamp(46px, 6.5vw, 108px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.manifesto__quote em {
  color: var(--red);
  font-style: normal;
}

.reasons {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 11vw, 170px) 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.reasons::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  animation: reason-grid-drift 18s linear infinite;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.section-head .lead {
  justify-self: end;
  max-width: 540px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.6);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
  perspective: 1200px;
}

.reason {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.35s,
    background 0.35s,
    transform 0.45s var(--ease),
    box-shadow 0.35s;
}

.reason:hover {
  z-index: 2;
  border-color: rgba(237, 28, 36, 0.8);
  background: rgba(237, 28, 36, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-7px) rotateX(2deg);
}

.reason:nth-child(1),
.reason:nth-child(6),
.reason:nth-child(11),
.reason:nth-child(16) {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.07);
}

.reason:nth-child(6),
.reason:nth-child(16) {
  background: var(--red);
}

.reason::after {
  display: none;
}

.reason span {
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.reason h3 {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  margin: 0;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

@keyframes reason-grid-drift {
  to {
    background-position: 72px 72px, -72px 72px;
  }
}

.home-services {
  padding: clamp(100px, 13vw, 200px) 0;
}

.service-list {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.35s var(--ease),
    color 0.25s;
}

.service-row:hover {
  padding-inline: 18px;
  color: var(--red);
}

.service-row > span:first-child {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 50px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.service-row > span:last-child {
  font-size: 24px;
}

.home-story {
  padding: 0 0 clamp(100px, 13vw, 190px);
}

.story-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 660px;
  overflow: hidden;
  background: var(--red);
  color: white;
}

.story-panel__image {
  min-height: 520px;
  background: url("assets/team/eusuntlupu-17.jpeg") center / cover;
}

.story-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 6vw, 88px);
}

.story-panel__copy h2 {
  max-width: 610px;
  margin-bottom: 40px;
  font-size: clamp(42px, 5.8vw, 86px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.story-panel__copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.story-panel__copy .button--line {
  border-color: white;
  background: white;
  color: var(--ink);
}

.story-panel__copy .button--line:hover {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

/* Inner pages */
.page-hero {
  padding: clamp(150px, 17vw, 230px) 0 clamp(80px, 10vw, 150px);
  border-bottom: 1px solid var(--line);
}

.page-hero__meta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 50px;
  align-items: end;
}

.page-hero .display {
  max-width: 1180px;
}

.page-hero .lead {
  justify-self: end;
  margin-bottom: 8px;
}

.dark-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.dark-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -18%;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.42;
  transform: perspective(900px) rotateX(54deg) translateY(5%);
  transform-origin: center bottom;
  -webkit-mask-image: radial-gradient(ellipse at 65% 46%, #000 0, transparent 68%);
  mask-image: radial-gradient(ellipse at 65% 46%, #000 0, transparent 68%);
  animation: hero-grid-drift 18s linear infinite;
}

.dark-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    112deg,
    transparent 0 170px,
    rgba(255, 255, 255, 0.035) 171px 172px
  );
  background-size: 220px 220px;
  opacity: 0.72;
  animation: hero-line-drift 24s linear infinite;
}

.dark-hero > .container,
.contact-hero > .container {
  position: relative;
  z-index: 1;
}

@keyframes hero-grid-drift {
  to {
    background-position: 64px 64px, -64px 64px;
    transform: perspective(900px) rotateX(54deg) translateY(11%);
  }
}

@keyframes hero-line-drift {
  to {
    background-position: 440px 220px;
  }
}

.dark-hero .lead {
  color: rgba(255, 255, 255, 0.62);
}

.dark-hero .lead strong {
  color: white;
}

.portrait-section {
  padding: var(--gutter) 0 clamp(100px, 13vw, 190px);
  background: var(--ink);
  color: white;
}

.portrait {
  position: relative;
  min-height: min(72vw, 960px);
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: min(72vw, 960px);
  object-fit: cover;
  object-position: center;
}

.portrait__caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  background: rgba(17, 17, 17, 0.75);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.story {
  padding: clamp(100px, 13vw, 190px) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(40px, 8vw, 130px);
}

.story-index {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-copy {
  max-width: 980px;
}

.story-copy p {
  margin-bottom: 28px;
  font-size: clamp(20px, 2.1vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.story-copy p:first-child {
  font-size: clamp(30px, 4vw, 60px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.people-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: var(--gutter);
  align-items: end;
  margin-top: clamp(70px, 10vw, 150px);
}

.people-grid figure {
  margin: 0;
}

.people-grid figure:first-child {
  max-width: 560px;
}

.people-grid figure:last-child {
  justify-self: end;
  width: min(100%, 760px);
}

.people-grid img {
  width: 100%;
  height: clamp(520px, 62vw, 820px);
  object-fit: cover;
}

.people-grid figure:last-child img {
  height: clamp(360px, 45vw, 600px);
}

.people-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-band {
  padding: clamp(90px, 13vw, 180px) 0;
  background: var(--red);
  color: white;
}

.quote-band blockquote {
  max-width: 1260px;
  margin: 0;
  font-size: clamp(46px, 7.2vw, 120px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.quote-band p {
  max-width: 720px;
  margin: 42px 0 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.6vw, 24px);
}

.industries {
  padding: clamp(100px, 13vw, 190px) 0;
}

.industries__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: end;
}

.industries__intro .lead {
  justify-self: end;
}

.industry-explorer {
  position: relative;
  isolation: isolate;
  margin-top: clamp(52px, 7vw, 96px);
  min-height: 700px;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: var(--ink);
  color: white;
  box-shadow: 0 40px 100px rgba(17, 17, 17, 0.16);
}

.industry-explorer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -38%;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(237, 28, 36, 0.18), transparent 18%),
    repeating-radial-gradient(circle at center, transparent 0 62px, rgba(255, 255, 255, 0.045) 63px 64px);
  opacity: 0.92;
  animation: industry-orbit 22s linear infinite;
}

.industry-explorer::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: -210px;
  bottom: -260px;
  pointer-events: none;
  border: 1px solid rgba(237, 28, 36, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(237, 28, 36, 0.025),
    0 0 0 104px rgba(255, 255, 255, 0.018);
  animation: industry-pulse 7s var(--ease) infinite;
}

.industry-toolbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-light);
}

.industry-console-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industry-console-label > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237, 28, 36, 0.14);
  animation: industry-led 1.8s ease-in-out infinite;
}

.industry-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s,
    transform 0.25s var(--ease);
}

.industry-filters button:hover,
.industry-filters button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

.industry-count {
  display: grid;
  min-width: 92px;
  margin: 0;
  text-align: right;
}

.industry-count strong {
  color: var(--red-bright);
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.industry-count span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


@keyframes industry-orbit {
  to {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes industry-pulse {
  50% {
    opacity: 0.52;
    transform: scale(1.07);
  }
}

@keyframes industry-led {
  50% {
    opacity: 0.35;
  }
}

.services-intro {
  padding: clamp(90px, 11vw, 160px) 0;
}

.service-detail-hero {
  min-height: min(820px, 92svh);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: clamp(54px, 7vw, 94px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s;
}

.breadcrumbs a:hover {
  color: white;
}

.service-detail-hero .display {
  max-width: 1180px;
  font-size: clamp(58px, 8.7vw, 142px);
}

.service-detail-intro {
  padding: clamp(90px, 12vw, 180px) 0;
}

.service-detail-intro__grid,
.service-connections__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: start;
}

.service-detail-copy {
  max-width: 720px;
  justify-self: end;
}

.service-detail-copy p {
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 24px);
}

.service-detail-copy a:not(.text-link) {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(237, 28, 36, 0.55);
  text-underline-offset: 4px;
}

.service-deliverables {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 12vw, 170px) 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.service-deliverables::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  transform: perspective(900px) rotateX(50deg);
  animation: hero-grid-drift 20s linear infinite;
}

.service-deliverables__head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 110px);
}

.service-deliverables__head .section-title {
  max-width: 1040px;
  margin: 0;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverable-grid li {
  position: relative;
  min-height: 280px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.4s var(--ease);
}

.deliverable-grid li:hover {
  border-color: rgba(237, 28, 36, 0.78);
  background: rgba(237, 28, 36, 0.13);
  transform: translateY(-6px);
}

.deliverable-grid li > span {
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.deliverable-grid h3 {
  margin: 56px 0 16px;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.deliverable-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.service-connections {
  padding: clamp(90px, 12vw, 180px) 0;
}

.service-connections__grid {
  margin-bottom: clamp(70px, 9vw, 130px);
}

.related-title {
  margin-bottom: 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-services a {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: space-between;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s,
    color 0.3s;
}

.related-services a:hover {
  background: var(--red);
  color: white;
}

.related-services span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.related-services a:hover span {
  color: rgba(255, 255, 255, 0.68);
}

.related-services strong {
  max-width: 320px;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.related-services i {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--red);
  font-size: 22px;
  font-style: normal;
}

.related-services a:hover i {
  color: white;
}

.services-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(40px, 8vw, 120px);
}

.services-intro__copy p {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 23px);
}

.direct-card {
  align-self: start;
  padding: clamp(30px, 4vw, 54px);
  background: var(--red);
  color: white;
}

.direct-card strong {
  display: block;
  margin-bottom: 34px;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.direct-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.services-cards {
  padding: 0 0 clamp(100px, 13vw, 190px);
}

.services-photo {
  margin: 0 0 clamp(70px, 9vw, 130px);
  overflow: hidden;
  background: var(--paper-deep);
}

.services-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.56);
  transition:
    border-color 0.3s,
    background 0.3s,
    color 0.3s,
    transform 0.45s var(--ease),
    box-shadow 0.3s;
}

.service-card--feature {
  grid-column: 1 / -1;
  min-height: 360px;
}

.service-card--feature .service-card__body {
  max-width: 780px;
}

.service-card::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--red);
  font-size: 24px;
  opacity: 0.42;
  transform: translate(-6px, 6px);
  transition:
    opacity 0.3s,
    transform 0.35s var(--ease);
}

.service-card:hover {
  z-index: 1;
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.18);
  color: white;
  transform: translateY(-7px);
}

.service-card:hover::after {
  opacity: 1;
  color: white;
  transform: translate(0, 0);
}

.service-card__number {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card:hover .service-card__number {
  color: white;
}

.service-card h2 {
  max-width: 590px;
  margin: clamp(60px, 8vw, 110px) 0 28px;
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-card__body {
  max-width: 650px;
  margin-top: auto;
}

.service-card__body p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 18px;
  transition: color 0.3s;
}

.service-card:hover .service-card__body p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card__body span {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.service-card:hover .service-card__body span {
  border-color: rgba(255, 255, 255, 0.36);
}

.collab-intro {
  padding: clamp(90px, 11vw, 170px) 0;
  scroll-margin-top: 110px;
}

.collab-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 8vw, 120px);
}

.collab-intro__copy p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
}

.time-card {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  align-self: start;
  padding: clamp(27px, 3vw, 40px);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.time-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -86px;
  right: -78px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0 45deg,
    rgba(237, 28, 36, 0.88) 46deg 80deg,
    transparent 81deg 205deg,
    rgba(255, 255, 255, 0.16) 206deg 220deg,
    transparent 221deg
  );
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 59%);
  mask: radial-gradient(circle, transparent 58%, #000 59%);
  animation: time-orbit 8s linear infinite;
}

.time-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(237, 28, 36, 0.85) 35%,
    transparent 100%
  );
  box-shadow: 0 0 22px rgba(237, 28, 36, 0.4);
  animation: time-scan 5.8s var(--ease) infinite;
}

.time-card__signal {
  position: absolute;
  top: clamp(28px, 3vw, 42px);
  right: clamp(28px, 3vw, 42px);
  display: flex;
  height: 38px;
  align-items: center;
  gap: 5px;
}

.time-card__signal span {
  display: block;
  width: 3px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(237, 28, 36, 0.7);
  animation: time-pulse 1.2s ease-in-out infinite alternate;
}

.time-card__signal span:nth-child(2) {
  animation-delay: -0.55s;
}

.time-card__signal span:nth-child(3) {
  animation-delay: -0.2s;
}

.time-card__signal span:nth-child(4) {
  animation-delay: -0.8s;
}

.time-card__signal span:nth-child(5) {
  animation-delay: -0.35s;
}

.time-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--red);
  font-size: clamp(68px, 7.6vw, 110px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.time-card h2 {
  position: relative;
  z-index: 1;
  margin: 20px 0 12px;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.time-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

@keyframes time-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes time-scan {
  0%,
  12% {
    transform: translateX(-10%);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  72% {
    opacity: 0.9;
  }

  88%,
  100% {
    transform: translateX(calc(100vw + 120px));
    opacity: 0;
  }
}

@keyframes time-pulse {
  from {
    height: 8px;
    opacity: 0.45;
  }

  to {
    height: 34px;
    opacity: 1;
  }
}

.online-strip {
  padding: 34px 0;
  background: var(--red);
  color: white;
}

.online-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.online-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.online-strip span::before {
  content: "✓";
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.steps {
  padding: clamp(100px, 13vw, 190px) 0;
  background: var(--ink);
  color: white;
}

.steps .section-head {
  margin-bottom: 70px;
}

.steps-list {
  border-top: 1px solid var(--line-light);
}

.step {
  display: grid;
  grid-template-columns: 90px minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-light);
}

.step__number {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.step h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.step h3 a {
  transition: color 0.25s;
}

.step h3 a:hover {
  color: var(--red);
}

.step p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
}

.selection {
  padding: clamp(100px, 13vw, 190px) 0;
}

.selection-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 8vw, 130px);
}

.selection-stat {
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

.selection-stat strong {
  display: block;
  color: var(--red);
  font-size: clamp(96px, 13vw, 200px);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.selection-stat span {
  display: block;
  max-width: 260px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.selection-copy h2 {
  margin-bottom: 36px;
}

.selection-copy p {
  max-width: 800px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 25px);
}

.selection-copy p strong {
  color: var(--ink);
}

.ethics-band {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 11vw, 160px) 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.ethics-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 75%);
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.ethics-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(46px, 9vw, 150px);
  align-items: center;
}

.ethics-mark {
  position: relative;
  display: flex;
  align-items: baseline;
  color: transparent;
  font-size: clamp(130px, 22vw, 330px);
  font-weight: 800;
  letter-spacing: -0.16em;
  line-height: 0.68;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
}

.ethics-mark span:last-of-type {
  color: var(--red);
  -webkit-text-stroke: 0;
}

.ethics-mark i {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.44em;
  font-style: normal;
  -webkit-text-stroke: 0;
}

.ethics-mark::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: -42px;
  width: 56%;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(237, 28, 36, 0.75);
}

.ethics-copy .section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.ethics-copy .section-title em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.ethics-lead {
  max-width: 830px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.65vw, 25px);
}

.ethics-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.ethics-values span {
  display: grid;
  min-height: 112px;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.ethics-values strong {
  color: var(--red);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(150px, 12vw, 190px) 0 clamp(70px, 7vw, 110px);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.contact-hero .display {
  max-width: 1000px;
}

.contact-hero__aside p {
  max-width: 470px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 1.6vw, 24px);
}

.contact-thumb {
  width: 100%;
  margin-top: 36px;
  height: clamp(260px, 32vw, 430px);
  object-fit: cover;
  object-position: center;
}

.contact-options {
  padding: clamp(70px, 9vw, 130px) 0 clamp(75px, 8vw, 120px);
  background: var(--ink);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: clamp(24px, 2.6vw, 38px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background 0.3s,
    color 0.3s;
}

.contact-card:hover {
  background: var(--red);
}

.contact-card__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: auto;
  overflow-wrap: anywhere;
  font-size: clamp(25px, 2.45vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.contact-card--email strong {
  font-size: clamp(20px, 1.9vw, 30px);
}

.contact-card__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 24px;
  transition: transform 0.3s var(--ease);
}

.contact-card:hover .contact-card__arrow {
  transform: translate(5px, -5px);
}

.fit-section {
  padding: clamp(100px, 13vw, 190px) 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-list div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.fit-list span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.fit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.project-form-section {
  padding: clamp(76px, 9vw, 130px) 0;
  scroll-margin-top: 84px;
  background:
    radial-gradient(circle at 92% 8%, rgba(237, 28, 36, 0.12), transparent 24%),
    var(--paper);
}

.project-form__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.project-form__head .section-title {
  max-width: 920px;
  margin-bottom: 0;
}

.project-form__head .lead {
  margin-bottom: 8px;
}

.contact-brief .project-form__head {
  align-items: start;
  margin-bottom: 0;
}

.contact-brief__copy {
  display: grid;
  justify-items: start;
  gap: 28px;
}

.contact-brief__copy .lead {
  margin: 0;
}

.project-form {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.project-form__main {
  display: grid;
  gap: 24px;
}

.form-block {
  min-inline-size: 0;
  margin: 0;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
}

.form-block legend,
.form-block__title {
  display: block;
  margin: 0 0 24px;
  padding: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.form-block legend {
  float: left;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.form-block legend + * {
  clear: both;
}

.form-block__title {
  width: 100%;
}

.form-block__hint {
  margin: -12px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

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

.service-choice {
  position: relative;
  cursor: pointer;
}

.service-choice input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.service-choice span {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s,
    transform 0.25s var(--ease);
  pointer-events: none;
}

.service-choice span::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 24px;
  font-weight: 400;
}

.service-choice:hover span {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.38);
}

.service-choice input:focus-visible + span {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.service-choice input:checked + span {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.service-choice input:checked + span::after {
  content: "✓";
  color: white;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  outline: 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-field input,
.form-field select {
  min-height: 58px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.form-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 17px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.form-consent a {
  color: var(--red-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

.form-consent:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.form-error {
  margin: 14px 0 0;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 700;
}

.form-trap {
  position: fixed;
  top: -10000px;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.project-form__summary {
  position: sticky;
  top: 94px;
  min-height: 560px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.project-form__summary::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 54px solid rgba(237, 28, 36, 0.64);
  border-radius: 50%;
}

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

.form-progress {
  margin-bottom: 50px;
}

.form-progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-progress__bar {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.form-progress__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width 0.45s var(--ease);
}

.summary-kicker {
  margin-bottom: 12px;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-form__summary h3 {
  margin-bottom: 28px;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.summary-list {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
}

.summary-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
}

.summary-list dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.summary-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 700;
}

.summary-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.email-submit-button {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.025em;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s var(--ease);
}

.email-submit-button:hover,
.email-submit-button:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
  transform: translateY(-2px);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.form-status.is-success {
  color: #7ee2a2;
  font-weight: 750;
}

.whatsapp-fallback-button,
.form-whatsapp-manual {
  display: inline-flex;
  min-height: 44px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.whatsapp-fallback-button:hover,
.whatsapp-fallback-button:focus-visible,
.form-whatsapp-manual:hover,
.form-whatsapp-manual:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
}

.form-whatsapp-manual[hidden] {
  display: none;
}

/* Studii de caz */
.case-hero .display {
  max-width: 1250px;
}

.case-intro {
  padding: clamp(100px, 13vw, 190px) 0;
}

.case-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(46px, 9vw, 140px);
  align-items: start;
}

.case-intro__copy {
  justify-self: end;
}

.case-intro__copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
}

.case-studies {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.case-studies::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
}

.case-studies > .container {
  position: relative;
}

.case-studies__head {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 110px);
}

.case-studies__head .section-title {
  max-width: 920px;
}

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

.case-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.35s,
    transform 0.45s var(--ease);
}

.case-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(237, 28, 36, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(237, 28, 36, 0.035);
  transition: transform 0.6s var(--ease);
}

.case-card:hover {
  z-index: 1;
  border-color: rgba(237, 28, 36, 0.86);
  transform: translateY(-6px);
}

.case-card:hover::before {
  transform: scale(1.22);
}

.case-card--red {
  border-color: var(--red);
  background: var(--red);
}

.case-card--red::before {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.055);
}

.case-card--feature {
  grid-column: 1 / -1;
  min-height: 390px;
  background:
    linear-gradient(100deg, rgba(237, 28, 36, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.035);
}

.case-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-card__top strong {
  color: white;
}

.case-card h3 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 36px 0 54px;
  font-size: clamp(30px, 3.7vw, 58px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.case-card__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 28px);
  align-items: end;
  margin-top: auto;
}

.case-card__metrics div {
  display: grid;
  align-content: end;
}

.case-card__metrics div:last-child {
  text-align: right;
}

.case-card__metrics small {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card__metrics strong {
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.case-card__metrics span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
}

.case-card__metrics i {
  align-self: center;
  color: var(--red);
  font-size: 26px;
  font-style: normal;
}

.case-card--red .case-card__metrics i {
  color: white;
}

.teamwork-statement {
  position: relative;
  isolation: isolate;
  padding: clamp(95px, 12vw, 180px) 0;
  overflow: hidden;
  background: var(--red);
  color: white;
}

.teamwork-statement::after {
  content: "TEAM";
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.19em;
  color: transparent;
  font-size: clamp(180px, 34vw, 520px);
  font-weight: 800;
  letter-spacing: -0.11em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.teamwork-statement h2 {
  max-width: 1350px;
  margin: 0;
  font-size: clamp(54px, 8vw, 124px);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 1.08;
}

.teamwork-statement h2 em {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.teamwork-statement > .container > p:last-child {
  max-width: 820px;
  margin: clamp(40px, 6vw, 82px) 0 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.65vw, 25px);
}

.performance-note {
  padding: clamp(100px, 13vw, 190px) 0;
  background: var(--paper);
}

.performance-note__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: center;
}

.performance-note__index {
  margin: 0;
  color: transparent;
  font-size: clamp(90px, 15vw, 220px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.75;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.3);
}

.performance-note .section-title {
  max-width: 900px;
  margin-bottom: 34px;
}

.performance-note .eyebrow {
  color: var(--red);
}

.performance-note__grid > div > p:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 25px);
}

.performance-note small {
  display: block;
  max-width: 780px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.cta-band {
  padding: clamp(80px, 11vw, 150px) 0;
  background: var(--red);
  color: white;
}

.cta-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 50px;
  align-items: end;
}

.cta-band h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(46px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.cta-band .button {
  border-color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.site-footer {
  position: relative;
  isolation: isolate;
  padding: clamp(74px, 9vw, 130px) 0 30px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -22% -12% -18%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    repeating-linear-gradient(
      112deg,
      transparent 0 164px,
      rgba(255, 255, 255, 0.025) 165px 166px
    );
  background-size:
    54px 54px,
    54px 54px,
    220px 220px;
  opacity: 0.58;
  transform: perspective(820px) rotateX(48deg) translateY(0);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 100%);
  animation: footer-matrix 13s linear infinite;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.page-author-byline {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.page-author-byline__inner {
  display: grid;
  grid-template-columns: 76px 150px minmax(260px, 1fr) auto;
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
  min-height: 76px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.page-author-byline__inner > img {
  display: block;
  width: 76px;
  height: auto;
  object-fit: contain;
}

.page-author-byline__credit {
  display: grid;
  gap: 5px;
}

.page-author-byline__credit > span {
  color: var(--red);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-author-byline__credit strong {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.page-author-byline__credit a,
.page-author-byline__link {
  transition: color 0.2s;
}

.page-author-byline__credit a:hover,
.page-author-byline__credit a:focus-visible,
.page-author-byline__link:hover,
.page-author-byline__link:focus-visible {
  color: var(--red);
}

.page-author-byline__inner > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.page-author-byline__link {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 10px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.page-author-byline__link i {
  font-size: 14px;
  font-style: normal;
  line-height: 1;
}

@media (max-width: 900px) {
  .page-author-byline__inner {
    grid-template-columns: 72px 140px minmax(0, 1fr) auto;
  }
}

@media (max-width: 620px) {
  .page-author-byline__inner {
    grid-template-columns: 66px minmax(0, 1fr) auto;
    gap: 8px 12px;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .page-author-byline__inner > img {
    width: 66px;
  }

  .page-author-byline__inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 10px;
  }

  .page-author-byline__link {
    grid-column: 3;
    grid-row: 1;
    min-height: 32px;
    padding: 6px 8px;
  }

  .page-author-byline__link span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@keyframes footer-matrix {
  to {
    background-position:
      0 54px,
      54px 0,
      110px 220px;
    transform: perspective(820px) rotateX(48deg) translateY(38px);
  }
}

.footer-quote {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  max-width: 1240px;
  margin: 0 0 clamp(70px, 9vw, 130px);
  font-size: clamp(42px, 6.2vw, 96px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.footer-quote > span {
  display: block;
}

.footer-quote em {
  color: var(--red-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.footer-quote cite {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.55fr) minmax(320px, 1.35fr) minmax(250px, 1fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: start;
  padding: clamp(50px, 6vw, 78px) 0;
  border-top: 1px solid var(--line-light);
}

.footer-brand {
  display: block;
  width: clamp(176px, 15vw, 220px);
  margin-bottom: 26px;
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-story p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.footer-services h2 {
  grid-column: 1 / -1;
}

.footer-services a:last-child {
  grid-column: 1 / -1;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-style: normal;
  transition: color 0.25s;
}

.footer-column a:hover {
  color: white;
}

.site-author-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(360px, 1.45fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 52px) 0;
  border-top: 1px solid var(--line-light);
  color: white;
}

.site-author-card__identity {
  display: grid;
  gap: 18px;
}

.site-author-card__identity > img {
  display: block;
  width: clamp(150px, 14vw, 205px);
  height: auto;
  object-fit: contain;
}

.site-author-card__identity > div {
  display: grid;
  gap: 6px;
}

.site-author-card__identity span {
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-author-card__identity h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1;
}

.site-author-card > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.65;
}

.site-author-card > a {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: white;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease);
}

.site-author-card > a:hover,
.site-author-card > a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

.site-author-card > a i {
  font-size: 17px;
  font-style: normal;
  line-height: 1;
}

.footer-budget-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(360px, 1.5fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid var(--line-light);
  color: white;
}

.footer-budget-note > div {
  display: grid;
  gap: 10px;
}

.footer-budget-note > div > span {
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-budget-note strong {
  max-width: 410px;
  color: white;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.footer-budget-note > p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.footer-budget-note__actions {
  display: grid;
  gap: 10px;
}

.footer-budget-note__actions a {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: white;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease);
}

.footer-budget-note__actions a:hover,
.footer-budget-note__actions a:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

.footer-budget-note__actions a:first-child {
  border-color: var(--red);
  background: var(--red);
}

.footer-budget-note__actions a:first-child:hover,
.footer-budget-note__actions a:first-child:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
}

.footer-budget-note__actions a i {
  font-size: 17px;
  font-style: normal;
  line-height: 1;
}

.footer-contact-links {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.anpc-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.anpc-banner {
  display: block;
  flex: 0 1 130px;
  width: 130px;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}

.anpc-banner img {
  display: block;
  width: 130px;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-author-card {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .site-author-card > a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-budget-note {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .footer-budget-note__actions {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-author-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-author-card > a {
    grid-column: auto;
    width: 100%;
  }

  .footer-budget-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-budget-note__actions {
    grid-column: auto;
    width: 100%;
  }

  .footer-budget-note__actions a {
    width: 100%;
  }
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

@media (scripting: enabled) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
  }

  .home-hero .reveal,
  .page-hero .reveal,
  .contact-hero .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 100px var(--gutter) 124px;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
      opacity 0.3s,
      visibility 0.3s,
      transform 0.4s var(--ease);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 10px 0;
    color: var(--ink);
    font-size: clamp(31px, 6vw, 58px);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
    text-transform: none;
    transition:
      color 0.25s,
      transform 0.3s var(--ease);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu > a:hover,
  .nav-menu > a:focus-visible,
  .nav-menu > a:active,
  .nav-menu > a[aria-current="page"] {
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 14px;
    background: rgba(237, 28, 36, 0.08);
    color: var(--red);
    transform: translateX(8px);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle:active {
    border-color: var(--red);
    background: rgba(237, 28, 36, 0.08);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    width: 19px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.3s var(--ease);
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .dark-top .site-header:not(.is-scrolled) .menu-toggle {
    border-color: rgba(255, 255, 255, 0.35);
  }

  .dark-top .site-header:not(.is-scrolled) .menu-toggle span:not(.sr-only) {
    background: white;
  }

  .dark-top.menu-open .site-header .brand img {
    filter: none;
  }

  .dark-top.menu-open .site-header .menu-toggle {
    border-color: var(--line);
  }

  .dark-top.menu-open .site-header .menu-toggle span:not(.sr-only) {
    background: var(--ink);
  }

  .dark-top.menu-open .site-header .nav-menu a {
    color: var(--ink);
  }

  .dark-top.menu-open .site-header .nav-menu > a:hover,
  .dark-top.menu-open .site-header .nav-menu > a:focus-visible,
  .dark-top.menu-open .site-header .nav-menu > a[aria-current="page"] {
    color: var(--red);
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 480px;
  }

  .home-hero::after {
    display: none;
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-panel {
    grid-template-columns: 1fr;
  }

  .story-panel__image {
    min-height: 700px;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }

  .site-header.is-scrolled {
    min-height: 64px;
  }

  .home-hero {
    padding-top: 120px;
  }

  .home-hero__bottom,
  .social-takeover__grid,
  .visibility-manifesto__grid,
  .manifesto__grid,
  .section-head,
  .page-hero__meta,
  .story-grid,
  .industries__intro,
  .services-intro__grid,
  .collab-intro__grid,
  .selection-grid,
  .ethics-grid,
  .contact-hero__grid,
  .project-form__head,
  .project-form,
  .fit-grid,
  .service-detail-intro__grid,
  .service-connections__grid,
  .service-deliverables__head,
  .case-intro__grid,
  .case-studies__head,
  .performance-note__grid,
  .cta-band__grid {
    grid-template-columns: 1fr;
  }

  .social-takeover__steps {
    margin-top: 8px;
  }

  .social-takeover__steps li:nth-child(2n),
  .social-takeover__steps li:nth-child(2n):hover {
    transform: none;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .people-grid figure:last-child {
    justify-self: start;
  }

  .people-grid img,
  .people-grid figure:last-child img {
    height: auto;
  }

  .section-head .lead,
  .page-hero .lead,
  .industries__intro .lead {
    justify-self: start;
  }

  .home-hero__bottom {
    margin-top: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .visibility-manifesto__grid {
    gap: 34px;
  }

  .visibility-manifesto__label {
    max-width: 280px;
  }

  .visibility-manifesto__title {
    font-size: clamp(42px, 10.5vw, 68px);
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .manifesto__aside {
    gap: 30px;
  }

  .reason {
    min-height: 210px;
  }

  .service-row {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .story-panel__image {
    min-height: 520px;
  }

  .page-hero__meta {
    align-items: start;
  }

  .industry-toolbar {
    grid-template-columns: 1fr;
  }

  .industry-count {
    grid-auto-flow: column;
    justify-content: start;
    align-items: baseline;
    gap: 10px;
    text-align: left;
  }

  .service-detail-copy {
    justify-self: start;
  }

  .related-services {
    grid-template-columns: 1fr;
  }

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

  .case-card--feature {
    grid-column: auto;
  }

  .case-intro__copy {
    justify-self: start;
  }

  .performance-note__index {
    writing-mode: horizontal-tb;
    transform: none;
  }

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

  .step {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .step p {
    grid-column: 2;
    justify-self: start;
  }

  .online-strip__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .online-strip span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 20px;
  }

  .online-strip span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .selection-stat {
    padding: 0 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ethics-mark {
    max-width: 420px;
  }

  .cta-band .button {
    justify-self: start;
  }

  .project-form__summary {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 150;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-contact-bar a {
    display: flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
    transition:
      background-color 0.2s,
      transform 0.2s var(--ease);
  }

  .mobile-contact-bar a::before,
  .mobile-contact-bar a::after {
    content: none;
    display: none;
  }

  .mobile-contact-bar a:first-child {
    background: rgba(17, 17, 17, 0.94);
  }

  .mobile-contact-bar a:last-child {
    background: #1f9f52;
  }

  .mobile-contact-bar a:hover,
  .mobile-contact-bar a:focus-visible {
    transform: translateY(-1px);
  }

  .mobile-contact-bar a:first-child:hover,
  .mobile-contact-bar a:first-child:focus-visible {
    background: var(--ink);
  }

  .mobile-contact-bar a:last-child:hover,
  .mobile-contact-bar a:last-child:focus-visible {
    background: #188343;
  }

  .mobile-contact-bar a:active {
    transform: scale(0.98);
  }

  .site-footer {
    padding-bottom: 78px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  .site-header {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }

  .nav-menu {
    padding-right: max(24px, env(safe-area-inset-right));
    padding-left: max(24px, env(safe-area-inset-left));
  }

  .brand {
    width: 144px;
  }

  .display {
    font-size: clamp(48px, 17vw, 76px);
    letter-spacing: -0.045em;
    line-height: 0.92;
  }

  .home-hero .display {
    max-width: 100%;
    font-size: clamp(43px, 14.5vw, 60px);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .home-hero__service-subtitle {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(22px, 7.5vw, 31px);
    line-height: 1.08;
  }

  .home-hero__copy,
  .home-hero__bottom,
  .home-hero__bottom .lead,
  .hero-card {
    width: 100%;
    min-width: 0;
  }

  .section-title {
    font-size: clamp(40px, 13vw, 66px);
    letter-spacing: -0.04em;
    line-height: 0.98;
  }

  .social-takeover__copy h2,
  .manifesto__quote,
  .quote-band blockquote,
  .story-panel__copy h2,
  .teamwork-statement h2,
  .cta-band h2,
  .footer-quote,
  .tv-spot__scene p {
    letter-spacing: -0.04em;
  }

  .service-card h2,
  .service-row h3,
  .reason h3,
  .time-card h2,
  .case-card h3,
  .project-form__summary h3 {
    letter-spacing: -0.025em;
    line-height: 1.08;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 32px;
  }

  .home-hero__grid {
    align-items: start;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    min-height: 410px;
  }

  .visibility-manifesto {
    padding: 76px 0;
  }

  .visibility-manifesto__grid {
    gap: 28px;
  }

  .visibility-manifesto__label {
    margin-top: 0;
  }

  .visibility-manifesto__title {
    max-width: 100%;
    font-size: clamp(36px, 10.8vw, 52px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .signal-marquee__group span {
    padding: 20px 24px;
    font-size: 12px;
  }

  .social-takeover__panel {
    padding: 30px 24px;
  }

  .social-takeover__copy h2 {
    max-width: 100%;
    font-size: clamp(26px, 9.8vw, 48px);
    line-height: 0.94;
  }

  .social-takeover__copy h2 span,
  .social-takeover__copy h2 em {
    max-width: 100%;
  }

  .social-takeover__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-takeover__steps {
    grid-template-columns: 1fr;
  }

  .social-takeover__steps li {
    min-height: 176px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .reason {
    min-height: 180px;
  }

  .reason:nth-child(1),
  .reason:nth-child(6),
  .reason:nth-child(11),
  .reason:nth-child(16) {
    grid-column: auto;
  }

  .service-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    min-height: 92px;
  }

  .story-panel__image {
    min-height: 390px;
    background-position: 40% center;
  }

  .story-panel__copy {
    min-height: 520px;
  }

  .portrait,
  .portrait img {
    min-height: 470px;
  }

  .portrait img {
    object-position: 58% center;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step p {
    grid-column: 1;
  }

  .contact-card {
    min-height: 142px;
    padding: 19px 18px;
  }

  .contact-card__label {
    padding-right: 42px;
    letter-spacing: 0.11em;
  }

  .contact-card strong {
    max-width: calc(100% - 28px);
    font-size: clamp(22px, 7.2vw, 30px);
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  .contact-card--email strong {
    font-size: clamp(18px, 5.8vw, 24px);
  }

  .contact-card__arrow {
    top: 16px;
    right: 16px;
    font-size: 19px;
  }

  .contact-options {
    padding: 44px 0 58px;
  }

  .case-card {
    min-height: 390px;
  }

  .case-card__metrics strong {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 0.95;
    overflow-wrap: anywhere;
  }

  .case-card__metrics {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .case-card__metrics div:last-child {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-align: left;
  }

  .case-card__metrics i {
    justify-self: start;
    font-size: 20px;
    line-height: 1;
    transform: rotate(90deg);
  }

  .ethics-values {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 380px;
  }

  .service-picker,
  .form-fields,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .tv-spot__scene {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 12px;
  }

  .tv-spot__screen {
    min-height: 500px;
  }

  .tv-spot__scene > span {
    padding-top: 0;
  }

  .tv-spot__scene p {
    font-size: clamp(38px, 11vw, 46px);
  }

  .tv-spot__scene--type p {
    text-wrap: balance;
  }

  .tv-spot__scene--type p span {
    width: auto;
    white-space: normal;
  }

  .tv-budget-target {
    font-size: clamp(50px, 14.8vw, 62px);
    letter-spacing: -0.08em;
  }

  .tv-spot__scene--budget p > strong {
    right: 0;
    font-size: clamp(42px, 14vw, 56px);
  }

  .tv-spot__scene--brand p {
    font-size: clamp(35px, 10.2vw, 42px);
  }

  .tv-spot__footer > span {
    max-width: 210px;
  }

  .form-block {
    padding: 24px 18px;
  }

  .summary-list div {
    grid-template-columns: 92px 1fr;
  }

  .quote-band blockquote,
  .footer-quote {
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 10.5vw, 44px);
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-align: center;
    text-wrap: balance;
  }

  .quote-band p {
    max-width: 320px;
    margin: 28px auto 0;
    font-size: 16px;
    text-align: center;
  }

  .footer-quote {
    gap: 16px;
    margin-bottom: 72px;
  }

  .footer-quote cite {
    text-align: center;
  }

  .service-detail-hero .display {
    font-size: clamp(43px, 13vw, 62px);
    letter-spacing: -0.045em;
    line-height: 0.94;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* v18: contrast verificat pentru textele secundare pe suprafețe roșii/închise. */
.reason span {
  color: rgba(255, 255, 255, 0.9);
}

.story-panel__copy p,
.story-panel__copy .eyebrow--light,
.quote-band p,
.direct-card p,
.teamwork-statement > .container > p:last-child {
  color: rgba(255, 255, 255, 0.94);
}

.quote-band .eyebrow--light,
.direct-card .eyebrow--light,
.teamwork-statement .eyebrow--light,
body.dark-top:not(.menu-open) .site-header:not(.is-scrolled) .nav-menu a {
  color: rgba(255, 255, 255, 0.9);
}

.case-card__top,
.case-card__metrics span {
  color: rgba(255, 255, 255, 0.94);
}

.ethics-lead,
.ethics-values span {
  color: rgba(255, 255, 255, 0.9);
}

.ethics-values strong {
  color: var(--red-bright);
}

@media (max-width: 760px) {
  .mobile-contact-bar a:last-child {
    background: #0b7037;
  }

  .mobile-contact-bar a:last-child:hover,
  .mobile-contact-bar a:last-child:focus-visible,
  .mobile-contact-bar a:last-child:active {
    background: #075a2b;
  }
}

/* v18: secțiunile editoriale deschise își declară fundalul explicit.
   Paginile cu hero întunecat folosesc body.dark-top, iar fără aceste fundaluri
   textul var(--ink) ajungea negru pe negru. */
.story,
.industries,
.services-intro,
.services-cards,
.service-detail-intro,
.service-connections,
.collab-intro,
.selection,
.fit-section,
.case-intro {
  background: var(--paper);
  color: var(--ink);
}

.services-cards .service-card {
  background: rgba(255, 253, 248, 0.72);
}

.services-cards .service-card:hover,
.services-cards .service-card:focus-visible {
  background: var(--red);
  color: white;
}

.services-cards .service-card:hover .service-card__body p,
.services-cards .service-card:focus-visible .service-card__body p {
  color: rgba(255, 255, 255, 0.92);
}

.services-cards .service-card:focus-visible .service-card__number,
.services-cards .service-card:focus-visible::after {
  color: white;
}

.services-cards .service-card:focus-visible .service-card__body span {
  border-color: rgba(255, 255, 255, 0.42);
}

.steps .step__number {
  color: var(--red-bright);
}

.tv-spot__scene--type p span {
  overflow: visible;
}

/* Ghid editorial extins pentru serviciul Google Business Profile. */
.service-guide {
  padding: clamp(86px, 10vw, 150px) 0;
  background: var(--paper-deep);
  color: var(--ink);
}

.service-guide__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(62px, 8vw, 105px);
}

.service-guide__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: calc(clamp(30px, 7vw, 110px) * -0.58);
}

.service-guide__header .section-title {
  max-width: 850px;
}

.service-guide__lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.55;
}

.service-guide__layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}

.service-guide__toc {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-guide__toc strong {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-guide__toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.service-guide__toc a:hover,
.service-guide__toc a:focus-visible {
  color: var(--red);
}

.service-guide__content {
  max-width: 920px;
}

.service-guide__content > section {
  padding-top: clamp(62px, 8vw, 96px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.service-guide__content > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-guide__content h2 {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: clamp(36px, 4.25vw, 64px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.service-guide__content p,
.service-guide__content li {
  color: #4f4d48;
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.75;
}

.service-guide__content p {
  margin: 0 0 26px;
}

.service-guide__checklist {
  margin: 34px 0 42px;
  padding: 0;
  list-style: none;
}

.service-guide__cases {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}

.service-guide__case {
  min-width: 0;
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-guide__case h3 {
  margin: 0 0 18px;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.service-guide__case .service-guide__metric {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.service-guide__case .service-guide__period {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.service-guide__case p:last-child {
  margin-bottom: 0;
}

.service-guide__checklist li {
  position: relative;
  margin: 0;
  padding: 17px 18px 17px 52px;
  border-top: 1px solid var(--line);
}

.service-guide__checklist li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.service-guide__note {
  margin: 42px 0 0;
  padding: clamp(26px, 4vw, 42px);
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.service-guide__note p:last-child {
  margin-bottom: 0;
}

.service-guide__resource-links {
  margin-top: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.service-guide__resource-links > strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-guide__resource-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-guide__resource-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-guide__resource-links a:hover,
.service-guide__resource-links a:focus-visible {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.service-city-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 38px 0 44px;
  padding: 0;
  list-style: none;
}

.service-city-list li {
  display: flex;
  min-height: 76px;
  padding: 22px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-city-list span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-city-list strong {
  color: var(--ink);
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.service-faq {
  margin-top: clamp(72px, 10vw, 120px);
}

.service-faq > .eyebrow {
  margin-bottom: 24px;
}

.service-faq__list {
  margin-top: 42px;
  border-bottom: 1px solid var(--line);
}

.service-faq details {
  border-top: 1px solid var(--line);
}

.service-faq summary {
  display: flex;
  min-height: 82px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  list-style: none;
}

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

.service-faq summary i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.25s var(--ease);
}

.service-faq details[open] summary i {
  transform: rotate(45deg);
}

.service-faq details > div {
  max-width: 790px;
  padding: 0 58px 28px 0;
}

.service-faq details > div p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .service-guide__header,
  .service-guide__layout {
    grid-template-columns: 1fr;
  }

  .service-guide__header .eyebrow {
    margin-bottom: -10px;
  }

  .service-guide__toc {
    position: relative;
    top: auto;
  }

  .service-city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .service-city-list {
    grid-template-columns: 1fr;
  }

  .service-city-list li {
    min-height: 100px;
  }

  .service-faq summary {
    align-items: flex-start;
  }

  .service-faq details > div {
    padding-right: 0;
  }
}

/* Blog static: structură simplă, fără dependențe sau imagini obligatorii. */
.blog-hero {
  padding: clamp(160px, 15vw, 230px) 0 clamp(80px, 9vw, 130px);
  background: var(--ink);
  color: white;
}

.blog-hero .breadcrumbs {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.blog-hero h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(54px, 8vw, 122px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.blog-hero .lead {
  max-width: 780px;
  margin: 42px 0 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(19px, 1.75vw, 26px);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index,
.blog-article {
  padding: clamp(82px, 10vw, 150px) 0;
  background: var(--paper);
  color: var(--ink);
}

.blog-index__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 100px);
}

.blog-index__intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 23px);
}

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

.blog-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.25s, transform 0.35s var(--ease), box-shadow 0.25s;
}

.blog-card:hover {
  border-color: var(--red);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.1);
  transform: translateY(-5px);
}

.blog-card__index {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.blog-card h2 {
  max-width: 650px;
  margin: clamp(54px, 7vw, 88px) 0 24px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.blog-card p {
  max-width: 680px;
  margin: auto 0 0;
  color: var(--muted);
  font-size: 17px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--red);
  font-weight: 800;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}

.blog-toc {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

/* Un cuprins mai înalt decât fereastra trebuie să curgă odată cu pagina;
   altfel poziționarea sticky ascunde subiectele aflate sub primul ecran. */
.blog-toc--long {
  position: relative;
  top: auto;
}

.blog-toc strong {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.blog-content {
  max-width: 900px;
}

.blog-content > p:first-child {
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.blog-content p,
.blog-content li {
  color: #4f4d48;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.75;
}

.blog-content p {
  margin: 0 0 26px;
}

.blog-content h2 {
  margin: clamp(64px, 8vw, 104px) 0 24px;
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
  scroll-margin-top: 110px;
}

.blog-content h3 {
  margin: 48px 0 18px;
  font-size: clamp(25px, 2.7vw, 38px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.blog-content a {
  color: #a70d14;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.blog-content ul,
.blog-content ol {
  margin: 30px 0 38px;
  padding-left: 1.3em;
}

.blog-content li {
  margin-bottom: 13px;
  padding-left: 0.35em;
}

.blog-checklist {
  padding: 0 !important;
  list-style: none;
}

.blog-checklist li {
  position: relative;
  padding: 17px 18px 17px 52px;
  border-top: 1px solid var(--line);
}

.blog-checklist li::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 16px;
  color: var(--red);
  font-weight: 900;
}

.blog-note {
  margin: 44px 0;
  padding: clamp(26px, 4vw, 42px);
  border-left: 4px solid var(--red);
  background: var(--white);
}

.blog-note p:last-child {
  margin-bottom: 0;
}

.blog-faq {
  margin: 36px 0 48px;
  border-bottom: 1px solid var(--line);
}

.blog-faq details {
  border-top: 1px solid var(--line);
}

.blog-faq summary {
  display: flex;
  min-height: 84px;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  list-style: none;
}

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

.blog-faq summary i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.25s var(--ease);
}

.blog-faq details[open] summary i {
  transform: rotate(45deg);
}

/* Plusurile FAQ sunt desenate geometric, independent de metrica fontului. */
.service-faq summary i,
.blog-faq summary i {
  position: relative;
  font-size: 0;
  line-height: 0;
}

.service-faq summary i::before,
.service-faq summary i::after,
.blog-faq summary i::before,
.blog-faq summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.service-faq summary i::after,
.blog-faq summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-faq details > div {
  max-width: 790px;
  padding: 0 58px 28px 0;
}

.blog-faq details > div p {
  margin-bottom: 0;
}

.blog-industry-list {
  columns: 2;
  column-gap: 48px;
}

.blog-industry-list li {
  break-inside: avoid;
}

.blog-related {
  padding: clamp(76px, 9vw, 130px) 0;
  background: var(--paper-deep);
}

.blog-related__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.blog-related__links a {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

@media (max-width: 900px) {
  .blog-index__intro,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: relative;
    top: auto;
  }

  .blog-related__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .blog-hero {
    padding: 130px 0 72px;
  }

  .blog-hero h1 {
    font-size: clamp(43px, 13.5vw, 62px);
    letter-spacing: -0.045em;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .blog-hero .lead {
    margin-top: 30px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 320px;
  }

  .blog-industry-list {
    columns: 1;
  }

  .blog-faq summary {
    align-items: flex-start;
  }

  .blog-faq details > div {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .signal-marquee__track {
    animation: none;
  }

  .signal-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* v18.8 — tabel editorial accesibil pentru articolele despre costuri. */
.blog-table-wrap {
  width: 100%;
  margin: 30px 0 34px;
  overflow-x: auto;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 14px;
  background: #f7f3eb;
  -webkit-overflow-scrolling: touch;
}

.blog-table-wrap:focus-visible {
  outline: 3px solid rgba(232, 31, 40, 0.34);
  outline-offset: 4px;
}

.blog-price-table {
  width: 100%;
  border-collapse: collapse;
  color: #111;
  font-size: 15px;
  line-height: 1.5;
}

.blog-price-table caption {
  padding: 19px 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  background: #111;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
}

.blog-price-table th,
.blog-price-table td {
  padding: 17px 20px;
  border-right: 1px solid rgba(17, 17, 17, 0.14);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  text-align: left;
  vertical-align: top;
}

.blog-price-table th:last-child,
.blog-price-table td:last-child {
  border-right: 0;
}

.blog-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.blog-price-table th {
  background: #e9e2d6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.blog-price-table td:first-child {
  width: 34%;
  font-weight: 800;
}

.blog-price-table td:last-child {
  width: 18%;
  white-space: nowrap;
  font-weight: 900;
}

@media (max-width: 720px) {
  .blog-table-wrap {
    overflow: hidden;
    margin: 24px 0 30px;
    border-radius: 12px;
  }

  .blog-price-table,
  .blog-price-table tbody,
  .blog-price-table tr,
  .blog-price-table td {
    display: block;
    width: 100%;
  }

  .blog-price-table caption {
    display: block;
    padding: 17px 18px;
    font-size: 15px;
  }

  .blog-price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .blog-price-table tbody tr {
    padding: 4px 0;
    border-bottom: 2px solid rgba(17, 17, 17, 0.24);
  }

  .blog-price-table tbody tr:last-child {
    border-bottom: 0;
  }

  .blog-price-table td,
  .blog-price-table td:first-child,
  .blog-price-table td:last-child {
    width: 100%;
    padding: 11px 17px 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    white-space: normal;
  }

  .blog-price-table td::before {
    display: block;
    margin-bottom: 4px;
    color: rgba(17, 17, 17, 0.58);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }
}

@media (min-width: 1181px) {
  .site-header {
    padding-inline: clamp(48px, 4.8vw, 82px);
  }

  .home-hero .container {
    width: min(calc(100% - (clamp(48px, 4.8vw, 82px) * 2)), 1360px);
  }
}

/* 404 */
.error-page {
  min-height: 100vh;
  background: var(--paper);
}

.error-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
}

.error-brand {
  display: block;
  width: clamp(142px, 13vw, 190px);
}

.error-brand img {
  width: 100%;
  height: auto;
}

.error-header__contact {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 14px;
  padding: 0 8px 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 0.25s,
    color 0.25s;
}

.error-header__contact span:last-child {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
}

.error-header__contact:hover {
  background: var(--ink);
  color: white;
}

.error-hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 92px);
  min-height: calc(100svh - 92px);
  align-items: stretch;
  padding: clamp(72px, 8vw, 124px) 0;
  overflow: hidden;
}

.error-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(110deg, transparent 5%, #000 56%, transparent 100%);
  mask-image: linear-gradient(110deg, transparent 5%, #000 56%, transparent 100%);
  pointer-events: none;
}

.error-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -260px;
  width: clamp(420px, 50vw, 760px);
  aspect-ratio: 1;
  border: clamp(54px, 7vw, 100px) solid rgba(200, 16, 24, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.error-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: end;
}

.error-code {
  align-self: center;
  margin: 0;
  color: var(--red);
  font-size: clamp(150px, 22vw, 350px);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.72;
  transform: translateX(-0.06em);
  user-select: none;
}

.error-copy {
  max-width: 840px;
}

.error-copy .display {
  font-size: clamp(54px, 6.4vw, 108px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.error-copy .lead {
  max-width: 680px;
  margin: clamp(28px, 4vw, 48px) 0 0;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 58px);
}

.error-actions .button {
  min-width: 210px;
}

.error-actions .text-link {
  margin-left: 6px;
}

.error-footer {
  padding: 26px 0;
  background: var(--ink);
  color: white;
}

.error-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.error-footer__inner a {
  color: white;
  overflow-wrap: anywhere;
  text-transform: none;
}

@media (max-width: 820px) {
  .error-header {
    min-height: 76px;
    padding-right: max(24px, env(safe-area-inset-right));
    padding-left: max(24px, env(safe-area-inset-left));
  }

  .error-brand {
    width: 150px;
  }

  .error-hero {
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
    padding: 62px 0 82px;
  }

  .error-hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
  }

  .error-code {
    justify-self: start;
    font-size: clamp(140px, 43vw, 280px);
  }

  .error-copy {
    max-width: 680px;
  }

  .error-copy .display {
    font-size: clamp(48px, 12.5vw, 82px);
    line-height: 0.96;
  }
}

@media (max-width: 560px) {
  .error-header {
    gap: 16px;
  }

  .error-header__contact {
    min-height: 44px;
    padding-left: 14px;
  }

  .error-hero {
    padding: 48px 0 68px;
  }

  .error-hero__grid {
    gap: 38px;
  }

  .error-code {
    font-size: clamp(126px, 42vw, 190px);
  }

  .error-copy .display {
    font-size: clamp(44px, 13.5vw, 62px);
    overflow-wrap: anywhere;
  }

  .error-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .error-actions .button {
    min-width: 0;
  }

  .error-actions .text-link {
    width: fit-content;
    margin: 4px 0 0;
  }

  .error-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .error-header__contact {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .error-header__contact span:first-child {
    display: none;
  }
}

/* Pagini juridice — structură editorială simplă, fără dependențe externe. */
.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  position: relative;
  z-index: 10;
  display: grid;
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 234, 0.96);
}

.legal-header .brand {
  position: static;
  width: 178px;
}

.legal-header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 750;
}

.legal-header__nav a,
.legal-footer a,
.footer-bottom a {
  text-decoration: none;
  transition: color 0.2s;
}

.legal-header__nav a:hover,
.legal-header__nav a:focus-visible,
.legal-footer a:hover,
.legal-footer a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--red);
}

.legal-hero {
  padding: clamp(82px, 10vw, 156px) 0 clamp(70px, 8vw, 118px);
  border-bottom: 1px solid var(--line);
}

.legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(46px, 8vw, 140px);
  align-items: end;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 22px 0 0;
  font-size: clamp(58px, 8vw, 132px);
  font-weight: 570;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.legal-hero h1 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.legal-hero__grid > div:last-child {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.legal-updated {
  margin-top: 22px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-body {
  padding: clamp(74px, 9vw, 138px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 34px;
  display: grid;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.legal-toc strong {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--red);
}

.legal-content {
  max-width: 880px;
}

.legal-content section {
  padding: 0 0 clamp(54px, 7vw, 94px);
  scroll-margin-top: 30px;
}

.legal-content section + section {
  padding-top: clamp(50px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.legal-index {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.legal-content h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-content p {
  margin: 0;
  color: #44413c;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.72;
}

.legal-content p + p {
  margin-top: 18px;
}

.legal-content a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-table {
  display: grid;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.legal-table strong {
  font-size: 14px;
  line-height: 1.4;
}

.legal-table span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.legal-footer {
  padding: 28px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.legal-footer .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.legal-footer .container > a {
  color: white;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.legal-footer .container > span {
  text-align: center;
}

.legal-footer nav {
  display: flex;
  gap: 18px;
}

.footer-bottom {
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom a {
  color: inherit;
}

@media (max-width: 900px) {
  .legal-header__nav {
    display: none;
  }

  .legal-header {
    grid-template-columns: 1fr auto;
  }

  .legal-hero__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero__grid {
    align-items: start;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .legal-header {
    min-height: 76px;
    padding: 14px var(--gutter);
  }

  .legal-header .brand {
    width: 148px;
  }

  .legal-header .header-cta {
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

  .legal-header .header-cta span:first-child {
    display: none;
  }

  .legal-hero {
    padding-top: 64px;
  }

  .legal-hero h1 {
    font-size: clamp(42px, 13.5vw, 64px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
  }

  .legal-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-footer .container {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .legal-footer .container > span {
    text-align: left;
  }

  .legal-footer nav {
    flex-wrap: wrap;
  }
}

/* v14 — interfață simplificată și controale accesibile */

/* CTA-ul principal păstrează contrastul, cu o prezență vizuală mai discretă. */
.header-cta {
  gap: 9px;
  min-height: 40px;
  padding: 0 5px 0 14px;
  border-color: rgba(17, 17, 17, 0.48);
  font-size: 11px;
  letter-spacing: 0.015em;
}

.header-cta span:last-child {
  width: 28px;
  height: 28px;
  font-size: 13px;
}

.header-cta:hover span:last-child {
  transform: none;
}

.home-hero .button--red {
  gap: 18px;
  min-height: 52px;
  padding: 0 8px 0 20px;
  font-size: 12px;
}

.home-hero .button--red span:last-child {
  width: 34px;
  height: 34px;
  font-size: 15px;
}

/* Banda rămâne animată, dar trece în mod manual imediat ce este glisată sau navigată. */
.signal-marquee__viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-x;
  cursor: grab;
}

.signal-marquee__viewport::-webkit-scrollbar {
  display: none;
}

.signal-marquee__viewport.is-manual .signal-marquee__track {
  animation: none !important;
  transform: none !important;
}

.signal-marquee__viewport.is-dragging {
  cursor: grabbing;
}

/* Spotul durează 36 de secunde; mișcările și pauzele permit citirea completă a fiecărui mesaj. */
.tv-spot .container,
.tv-spot__screen {
  box-shadow: none;
}

.tv-spot__scene--budget.is-active p > i {
  animation: tv-budget-shot 0.9s cubic-bezier(0.7, 0, 0.84, 0) 0.8s forwards;
}

.tv-spot__scene--budget.is-active .tv-budget-target {
  animation: tv-budget-hit 0.75s ease-out 1.65s both;
}

.tv-spot__scene--budget.is-active p > strong {
  animation: tv-budget-poc 0.9s var(--ease) 1.6s both;
}

/* Domenii: listă editorială compactă, fără bule sau elemente plutitoare. */
.industry-explorer {
  min-height: 0;
  border-radius: 18px;
  box-shadow: none;
}

.industry-explorer::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
  animation: none;
}

.industry-explorer::after {
  display: none;
}

.industry-filters button {
  min-height: 36px;
  padding-inline: 13px;
  border-radius: 6px;
  background: transparent;
}

.industry-filters button:hover,
.industry-filters button:focus-visible,
.industry-filters button.is-active {
  transform: none;
}

.industry-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
  counter-reset: industry-item;
}

.industry-list li {
  counter-increment: industry-item;
  display: grid;
  min-width: 0;
  min-height: 60px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 560;
  line-height: 1.3;
  transition:
    background 0.2s,
    color 0.2s;
}

.industry-list li::before {
  content: counter(industry-item, decimal-leading-zero);
  color: rgba(255, 102, 107, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.industry-list li:hover,
.industry-list li:focus-within {
  background: rgba(200, 16, 24, 0.15);
  color: white;
}

.industry-list li[hidden] {
  display: none !important;
}

/* Formular: WhatsApp clasic și controale native cu dimensiuni consecvente. */
.whatsapp-fallback-button.is-classic {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  border: 1px solid #1f9f52;
  border-radius: 10px;
  background: #1f9f52;
  color: white;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.whatsapp-fallback-button.is-classic:hover,
.whatsapp-fallback-button.is-classic:focus-visible {
  border-color: #188343;
  background: #188343;
  color: white;
}

/* Modul cookies compact, factual și ușor de revizitat. */
body.cookie-dialog-open {
  overflow: hidden;
}

.cookie-consent {
  position: fixed;
  inset: auto 16px 16px auto;
  width: min(580px, calc(100% - 32px));
  max-width: 580px;
  max-height: calc(100dvh - 32px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.cookie-consent::backdrop {
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(2px);
}

.cookie-consent__panel {
  position: relative;
  max-height: calc(100dvh - 32px);
  padding: 20px;
  overflow-y: auto;
  background: var(--white);
}

.cookie-consent__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.cookie-consent__eyebrow {
  margin: 0 0 4px;
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-consent__title {
  max-width: 480px;
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.cookie-consent__title:focus,
.cookie-consent__title:focus-visible {
  outline: none;
}

.cookie-consent__close {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0 0 2px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition:
    color 0.2s,
    background 0.2s;
}

.cookie-consent__close:hover,
.cookie-consent__close:focus-visible {
  background: var(--ink);
  color: white;
  transform: none;
}

.cookie-consent__description {
  max-width: 520px;
  margin: 10px 0 14px;
  color: #4e4a44;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent__form,
.cookie-consent__categories {
  display: grid;
  gap: 0;
}

.cookie-consent__categories {
  grid-template-columns: 1fr;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cookie-category {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-content: start;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.cookie-category:last-child {
  border-bottom: 0;
}

.cookie-category:hover,
.cookie-category:has(.cookie-category__input:disabled):hover {
  border-color: rgba(17, 17, 17, 0.1);
  background: transparent;
  transform: none;
}

.cookie-category:has(.cookie-category__input:disabled) {
  cursor: default;
}

.cookie-category__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.cookie-category__control {
  position: relative;
  display: block;
  width: 38px;
  height: 22px;
  margin-top: 0;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 999px;
  background: #d8d3cb;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.cookie-category__control::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: none;
  content: "";
  transition: transform 0.2s var(--ease);
}

.cookie-category__input:checked + .cookie-category__control {
  border-color: var(--red);
  background: var(--red);
}

.cookie-category__input:checked + .cookie-category__control::after {
  transform: translateX(16px);
}

.cookie-category__input:disabled + .cookie-category__control {
  border-color: var(--ink);
  background: var(--ink);
}

.cookie-category__input:focus-visible + .cookie-category__control {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.cookie-category__copy,
.cookie-category__title-row {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.cookie-category__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.cookie-category__title {
  font-size: 14px;
}

.cookie-category__badge {
  display: inline-flex;
  padding: 3px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-category__description {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.cookie-consent__status {
  margin: 0;
  margin-top: 10px;
  padding: 8px 10px;
  border-left: 3px solid var(--red);
  background: rgba(200, 16, 24, 0.08);
  font-size: 11px;
  line-height: 1.45;
}

.cookie-consent__status[hidden] {
  display: none;
}

.cookie-consent__policy {
  justify-self: start;
  margin-top: 10px;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.cookie-consent__action {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.cookie-consent__action:hover {
  transform: none;
}

.cookie-consent__action--save {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.cookie-consent__action--equal:hover,
.cookie-consent__action--equal:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.cookie-settings-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--red-bright);
}

.legal-cookie-control {
  display: inline-flex;
  min-height: 46px;
  margin-top: 24px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.legal-cookie-control:hover,
.legal-cookie-control:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

@media (max-width: 1180px) {
  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    z-index: 200;
    min-height: 92px;
    border-color: var(--line);
    background: var(--paper);
    backdrop-filter: none;
  }

  body.menu-open .nav-menu {
    height: 100dvh;
    max-height: 100dvh;
    padding-top: max(112px, calc(92px + env(safe-area-inset-top)));
    padding-bottom: max(34px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }

  body.menu-open .mobile-contact-bar {
    visibility: hidden;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
  }

  body.cookie-dialog-open .mobile-contact-bar {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .industry-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-contact-bar {
    right: max(10px, env(safe-area-inset-right));
    left: max(10px, env(safe-area-inset-left));
  }

  .mobile-contact-bar a {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 11px;
  }

  .mobile-contact-bar a::before,
  .mobile-contact-bar a::after {
    content: none;
    display: none;
  }

  .mobile-contact-bar a:first-child {
    border: 0;
    background: rgba(17, 17, 17, 0.94);
  }

  .mobile-contact-bar a:last-child {
    border: 0;
    background: #1f9f52;
  }

  .mobile-contact-bar a:hover,
  .mobile-contact-bar a:focus-visible,
  .mobile-contact-bar a:active {
    box-shadow: none;
    transform: none;
  }

  .site-footer {
    padding-bottom: 78px;
  }
}

@media (max-width: 820px) {
  .industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .contact-hero__grid > *,
  .contact-hero__aside,
  .contact-thumb {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .contact-hero .display {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 58px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .cta-band__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-band__grid > *,
  .cta-band__grid .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .industry-explorer {
    padding: 20px 16px;
  }

  .industry-list {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .industry-list li {
    min-height: 54px;
    padding: 10px 12px;
  }

  .form-field input,
  .form-field select {
    width: 100%;
    height: 58px;
    min-height: 58px;
    padding: 0 14px;
    border-radius: 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .form-field select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 42px;
    background-color: var(--white);
    background-image:
      linear-gradient(45deg, transparent 50%, var(--ink) 50%),
      linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position:
      calc(100% - 19px) 26px,
      calc(100% - 14px) 26px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
  }

  .cookie-consent {
    inset: auto 8px 8px;
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 14px;
  }

  .cookie-consent__panel {
    max-height: calc(100dvh - 16px);
    padding: 17px 16px 16px;
  }

  .cookie-consent__title {
    font-size: 22px;
  }

  .cookie-consent__description {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .cookie-category {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 9px 0;
  }

  .cookie-category__control {
    width: 38px;
  }

  .cookie-category__input:checked + .cookie-category__control::after {
    transform: translateX(16px);
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__action {
    min-height: 40px;
  }
}

@media (max-width: 340px) {
  .mobile-contact-bar {
    right: max(7px, env(safe-area-inset-right));
    left: max(7px, env(safe-area-inset-left));
  }

  .mobile-contact-bar a {
    min-height: 44px;
    padding-inline: 7px;
    font-size: 10.5px;
  }

  .cookie-consent__header {
    gap: 8px;
  }

  .cookie-consent__panel {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-explorer::before,
  .industry-list li,
  .mobile-contact-bar,
  .mobile-contact-bar a,
  .signal-marquee__track,
  .tv-spot__scene--budget.is-active p > i,
  .tv-spot__scene--budget.is-active .tv-budget-target,
  .tv-spot__scene--budget.is-active p > strong {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Detalii colaborare: cifre lizibile și un card de acces mai aerisit. */
.collab-intro {
  padding: clamp(72px, 8vw, 120px) 0;
}

.collab-intro__grid {
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.time-card {
  min-height: 220px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
}

.time-card::before {
  top: -78px;
  right: -64px;
  width: 190px;
  height: 190px;
  opacity: 0.36;
}

.time-card::after {
  display: none;
}

.time-card__signal {
  top: 24px;
  right: 26px;
  height: 28px;
}

.time-card__signal span {
  box-shadow: none;
}

.time-card strong {
  font-size: clamp(58px, 6vw, 86px);
}

.time-card h2 {
  max-width: 420px;
  margin: 14px 0 9px;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.04;
}

.time-card p {
  max-width: 440px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.step__number {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.selection-stat .selection-stat__qualifier {
  max-width: none;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .time-card {
    min-height: 0;
  }

  .step__number {
    font-size: 25px;
  }
}

/* Studii de caz: contextul rezultatelor este vizibil, nu ascuns ca notă juridică. */
.performance-note .performance-note__grid > div > .performance-disclaimer {
  max-width: 900px;
  margin-top: clamp(30px, 4vw, 52px);
  padding: clamp(22px, 2.8vw, 34px) clamp(22px, 3.2vw, 40px);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-left: 4px solid var(--red);
  background: rgba(17, 17, 17, 0.035);
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 520;
  line-height: 1.5;
}

.case-card__top {
  flex-wrap: wrap;
  align-items: center;
}

.case-card__top strong {
  display: inline-flex;
  min-height: 28px;
  padding: 6px 9px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: clamp(11px, 0.9vw, 14px);
  letter-spacing: 0.07em;
  line-height: 1.1;
}

@media (max-width: 560px) {
  .page-hero__grid > *,
  .page-hero__meta,
  .page-hero__meta > * {
    min-width: 0;
    max-width: 100%;
  }

  .page-hero .display {
    overflow-wrap: anywhere;
  }

  .case-hero .page-hero__meta,
  .case-hero .page-hero__meta > *,
  .case-hero .display {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .case-hero .display {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .cta-band h2 {
    max-width: 100%;
    font-size: clamp(32px, 10.5vw, 42px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .case-card__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .case-card__top strong {
    font-size: 12px;
  }

  .performance-note .performance-note__grid > div > .performance-disclaimer {
    margin-top: 28px;
    padding: 20px 18px;
    font-size: 18px;
    line-height: 1.48;
  }
}

/* v18: contrast AA pentru acțiunea WhatsApp din bara fixă mobilă. */
@media (max-width: 760px) {
  body .mobile-contact-bar a:last-child {
    background: #0b7037;
  }

  body .mobile-contact-bar a:last-child:hover,
  body .mobile-contact-bar a:last-child:focus-visible,
  body .mobile-contact-bar a:last-child:active {
    background: #075a2b;
  }
}

/* Ofertă rapidă: apare numai după interacțiunea cu modulul cookies sau după
   temporizarea unei vizite care are deja preferințele salvate. */
.quick-offer[hidden] {
  display: none;
}

.quick-offer {
  position: fixed;
  z-index: 140;
  right: 20px;
  bottom: 20px;
  width: min(560px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #111;
  color: white;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.26s ease,
    visibility 0.26s ease,
    transform 0.26s var(--ease);
}

.quick-offer::before {
  position: absolute;
  right: -56px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200, 16, 24, 0.26);
  content: "";
  filter: blur(4px);
  pointer-events: none;
}

.quick-offer.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

body.cookie-dialog-open .quick-offer,
body.menu-open .quick-offer {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
}

.quick-offer__orbit {
  position: absolute;
  top: -92px;
  right: -72px;
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  animation: quick-offer-orbit 16s linear infinite;
  pointer-events: none;
}

.quick-offer__orbit::before,
.quick-offer__orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.quick-offer__orbit::before {
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--red-bright);
  box-shadow: 0 0 0 8px rgba(232, 31, 40, 0.14);
}

.quick-offer__orbit::after {
  inset: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-offer__intro {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  padding: clamp(34px, 6vw, 72px);
  place-items: center;
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  transform: scale(0.965);
  transition:
    opacity 0.68s ease,
    filter 0.8s ease,
    transform 0.8s var(--ease);
}

.quick-offer__intro-text {
  max-width: 470px;
  margin: 0;
  color: white;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 560;
  letter-spacing: -0.042em;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.quick-offer__intro-text em {
  color: var(--red-bright);
  font-weight: 730;
}

.quick-offer__content {
  position: relative;
  z-index: 1;
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 0.7s ease,
    filter 0.82s ease,
    transform 0.82s var(--ease);
}

.quick-offer.is-intro .quick-offer__intro {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.quick-offer.is-offer .quick-offer__intro {
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.025);
}

.quick-offer.is-offer .quick-offer__content {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0.18s;
}

.quick-offer__top,
.quick-offer__title,
.quick-offer__promise,
.quick-offer__description,
.quick-offer__actions,
.quick-offer__footer {
  position: relative;
  z-index: 1;
}

.quick-offer__top {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quick-offer__eyebrow {
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.quick-offer__eyebrow::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(232, 31, 40, 0.42);
  content: "";
  animation: quick-offer-pulse 2.2s ease-out infinite;
}

.quick-offer__close {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 0 0 2px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.quick-offer__close:hover,
.quick-offer__close:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
  transform: rotate(6deg);
}

.quick-offer__title {
  max-width: 470px;
  margin: 13px 0 0;
  color: white;
  font-size: clamp(29px, 3.2vw, 43px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.quick-offer__promise {
  max-width: 490px;
  margin: 13px 0 0;
  color: white;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.quick-offer__description {
  max-width: 460px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.quick-offer__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.quick-offer__button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 50px;
  padding: 11px 13px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s var(--ease);
}

.quick-offer__button:hover,
.quick-offer__button:focus-visible {
  transform: translateY(-2px);
}

.quick-offer__button--website {
  border-color: white;
  background: white;
  color: var(--ink);
}

.quick-offer__button--website:hover,
.quick-offer__button--website:focus-visible {
  border-color: #ded8cf;
  background: #ded8cf;
  color: var(--ink);
}

.quick-offer__button--promotion {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.quick-offer__button--promotion::before {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -50%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: quick-offer-shine 3.8s ease-in-out infinite;
}

.quick-offer__button--promotion:hover,
.quick-offer__button--promotion:focus-visible {
  border-color: var(--red-bright);
  background: var(--red-bright);
  color: white;
}

.quick-offer__arrow {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  font-size: 17px;
  line-height: 1;
}

.quick-offer__footer {
  display: flex;
  margin: 13px 0 0;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.quick-offer__pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #31c768;
  box-shadow: 0 0 0 5px rgba(49, 199, 104, 0.13);
}

@keyframes quick-offer-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes quick-offer-pulse {
  60% {
    box-shadow: 0 0 0 8px rgba(232, 31, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 31, 40, 0);
  }
}

@keyframes quick-offer-shine {
  0%,
  52% {
    left: -50%;
  }
  78%,
  100% {
    left: 125%;
  }
}

@media (max-width: 1180px) {
  .quick-offer {
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(62px + env(safe-area-inset-bottom));
    width: min(560px, calc(100vw - 20px));
  }
}

@media (max-width: 620px) {
  .quick-offer {
    right: max(8px, env(safe-area-inset-right));
    left: max(8px, env(safe-area-inset-left));
    bottom: calc(60px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - 76px - env(safe-area-inset-bottom));
    padding: 18px 16px 17px;
    border-radius: 16px;
  }

  .quick-offer__title {
    margin-top: 10px;
    font-size: clamp(27px, 8.4vw, 36px);
  }

  .quick-offer__intro {
    padding: 50px 24px 36px;
  }

  .quick-offer__intro-text {
    font-size: clamp(25px, 7.4vw, 32px);
  }

  .quick-offer__close {
    top: 18px;
    right: 16px;
  }

  .quick-offer__promise {
    margin-top: 10px;
    font-size: 16px;
  }

  .quick-offer__description {
    font-size: 12px;
  }

  .quick-offer__actions {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .quick-offer__button {
    min-height: 46px;
  }

  .quick-offer__footer {
    margin-top: 11px;
  }
}

/* Pe ecranele joase compactăm oferta, fără a transforma panoul fix într-o
   zonă cu scroll proprie. Astfel, scrollul vertical rămâne al paginii. */
@media (max-height: 560px) {
  .quick-offer {
    padding: 14px;
    overflow: hidden;
    border-radius: 14px;
  }

  .quick-offer__orbit {
    display: none;
  }

  .quick-offer__top {
    min-height: 30px;
  }

  .quick-offer__intro {
    padding: 38px 54px 24px;
  }

  .quick-offer__intro-text {
    font-size: clamp(21px, 5.4vh, 29px);
  }

  .quick-offer__close {
    top: 14px;
    right: 14px;
  }

  .quick-offer__title {
    margin-top: 8px;
    font-size: clamp(24px, 6vh, 32px);
  }

  .quick-offer__promise {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.22;
  }

  .quick-offer__description {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.35;
  }

  .quick-offer__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .quick-offer__button {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 10px;
  }

  .quick-offer__footer {
    margin-top: 9px;
  }
}

@media (max-height: 430px) {
  .quick-offer__description,
  .quick-offer__footer {
    display: none;
  }

  .quick-offer__title {
    font-size: 24px;
  }

  .quick-offer__eyebrow {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quick-offer,
  .quick-offer__intro,
  .quick-offer__content,
  .quick-offer__orbit,
  .quick-offer__eyebrow::before,
  .quick-offer__button--promotion::before {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Pagina Listă prețuri */
.pricing-hero .display {
  max-width: 1050px;
}

.pricing-hero .lead {
  max-width: 760px;
}

.pricing-intro,
.pricing-catalog,
.pricing-faq {
  padding: clamp(82px, 10vw, 150px) 0;
}

.pricing-intro {
  background: var(--paper);
}

.pricing-intro__head {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.pricing-intro__copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.72;
}

.pricing-intro__copy p {
  margin: 0;
}

.pricing-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(54px, 7vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-principle {
  min-height: 220px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.pricing-principle:last-child {
  border-right: 0;
}

.pricing-principle span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: clamp(38px, 4.8vw, 68px);
  font-variant-numeric: tabular-nums;
  font-weight: 540;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.pricing-principle h2 {
  margin: 0 0 15px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pricing-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-discounts {
  padding: clamp(82px, 10vw, 142px) 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.pricing-discounts__head {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.pricing-discounts__head .section-title {
  margin: 0;
}

.pricing-discounts__head > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.pricing-discounts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-discount {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--ink);
}

.pricing-discount strong {
  display: block;
  margin-bottom: 42px;
  color: var(--red-bright);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.pricing-discount h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.pricing-discount p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.68;
}

.pricing-discounts__note {
  max-width: 920px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.pricing-catalog {
  background: #f5f2ec;
}

.pricing-catalog__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.pricing-catalog__header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.pricing-toc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-toc a {
  display: flex;
  min-height: 78px;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
  transition: background 0.2s, color 0.2s;
}

.pricing-toc a::after {
  content: "↓";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 17px;
}

.pricing-toc a:hover,
.pricing-toc a:focus-visible {
  background: var(--ink);
  color: white;
}

.pricing-sections {
  display: grid;
  gap: clamp(72px, 9vw, 120px);
}

.pricing-section {
  scroll-margin-top: 110px;
}

.pricing-section__head {
  display: grid;
  grid-template-columns: 92px minmax(260px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
}

.pricing-section__number {
  display: inline-block;
  color: var(--red);
  font-size: clamp(32px, 4vw, 56px);
  font-variant-numeric: tabular-nums;
  font-weight: 540;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.pricing-section__head h2 {
  margin: 0;
  font-size: clamp(29px, 3.5vw, 49px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pricing-section__head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.pricing-list {
  border-bottom: 1px solid var(--line);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.2fr) minmax(150px, 0.45fr);
  gap: clamp(20px, 4vw, 52px);
  padding: 25px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row h3 {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.pricing-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.pricing-row > strong {
  justify-self: end;
  color: var(--red);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 780;
  line-height: 1.3;
  text-align: right;
}

.pricing-section__note {
  max-width: 980px;
  margin: 22px 0 0 92px;
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.pricing-faq {
  background: var(--paper);
}

.pricing-faq__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(42px, 7vw, 110px);
  margin-bottom: 54px;
}

.pricing-faq__header p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.pricing-final {
  padding: clamp(78px, 9vw, 130px) 0;
  background: var(--red);
  color: white;
}

.pricing-final__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.pricing-final h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 6.5vw, 92px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.pricing-final__copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.pricing-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-final__actions .button {
  border-color: white;
  color: white;
}

.pricing-final__actions .button:first-child {
  background: white;
  color: var(--ink);
}

@media (max-width: 980px) {
  .pricing-intro__head,
  .pricing-discounts__head,
  .pricing-catalog__header,
  .pricing-faq__header,
  .pricing-final__grid {
    grid-template-columns: 1fr;
  }

  .pricing-principles,
  .pricing-discounts__grid,
  .pricing-toc {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-principle:nth-child(2) {
    border-right: 0;
  }

  .pricing-principle:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .pricing-section__head {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .pricing-section__head p {
    grid-column: 2;
  }

  .pricing-row {
    grid-template-columns: minmax(220px, 0.85fr) minmax(300px, 1.15fr);
  }

  .pricing-row > strong {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .pricing-principles,
  .pricing-discounts__grid,
  .pricing-toc {
    grid-template-columns: 1fr;
  }

  .pricing-principle,
  .pricing-principle:nth-child(2),
  .pricing-principle:last-child {
    grid-column: auto;
    min-height: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-principle:last-child {
    border-bottom: 0;
  }

  .pricing-section__head {
    grid-template-columns: 1fr;
  }

  .pricing-section__head p {
    grid-column: auto;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .pricing-row > strong {
    grid-column: auto;
  }

  .pricing-section__note {
    margin-left: 0;
  }

  .pricing-final h2 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .pricing-final__actions,
  .pricing-final__actions .button {
    width: 100%;
  }
}
