:root {
  --v4-ink: #0b171c;
  --v4-ink-soft: #17282e;
  --v4-paper: #f1ede4;
  --v4-paper-deep: #e7e0d3;
  --v4-white: #fffdf8;
  --v4-text: #162329;
  --v4-muted: #667177;
  --v4-bronze: #b88d58;
  --v4-bronze-light: #d8bb91;
  --v4-whatsapp: #218b59;
  --v4-whatsapp-hover: #197449;
  --v4-border: rgba(18, 34, 40, 0.16);
  --v4-border-inverse: rgba(255, 255, 255, 0.16);
  --v4-shadow: 0 30px 80px rgba(3, 14, 18, 0.15);
  --v4-serif: "Cormorant Garamond", Georgia, serif;
  --v4-sans: "Manrope", Arial, sans-serif;
  --v4-container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.v4-page {
  margin: 0;
  background: var(--v4-paper);
  color: var(--v4-text);
  font-family: var(--v4-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.v4-page img {
  display: block;
  max-width: 100%;
}

.v4-page a {
  color: inherit;
}

.v4-container {
  width: var(--v4-container);
  margin-inline: auto;
}

.v4-skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--v4-white);
  color: var(--v4-ink);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.v4-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--v4-white);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.v4-header.is-sticky {
  position: fixed;
  background: rgba(11, 23, 28, 0.98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.v4-header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.v4-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  text-decoration: none;
}

.v4-brand__logo {
  width: auto;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.v4-brand__name {
  font-family: var(--v4-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.v4-brand__oab {
  max-width: 120px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.v4-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.v4-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: color 160ms ease;
}

.v4-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--v4-bronze-light);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.v4-nav a:hover,
.v4-nav a:focus-visible {
  color: #fff;
}

.v4-nav a:hover::after,
.v4-nav a:focus-visible::after {
  transform: scaleX(1);
}

.v4-header .v4-button--header {
  min-height: 42px;
  padding: 0 18px;
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #fff;
  font-size: 11px;
}

.v4-header .v4-button--header:hover {
  border-color: var(--v4-bronze-light);
  background: rgba(255, 255, 255, 0.06);
}

.v4-menu-button,
.v4-menu-panel {
  display: none;
}

.v4-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--v4-whatsapp);
  color: #fff;
  font-family: var(--v4-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.015em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.v4-page .v4-button {
  color: #fff;
}

.v4-button:hover,
.v4-button:focus-visible {
  background: var(--v4-whatsapp-hover);
  transform: translateY(-2px);
}

.v4-button:focus-visible,
.v4-page a:focus-visible,
.v4-page summary:focus-visible,
.v4-menu-button:focus-visible {
  outline: 3px solid var(--v4-bronze-light);
  outline-offset: 4px;
}

.v4-button--primary {
  min-height: 58px;
  padding-inline: 28px;
  box-shadow: 0 16px 38px rgba(20, 107, 65, 0.24);
}

.v4-button__dot {
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 50%;
  background: #d6ffe8;
  box-shadow: 0 0 0 5px rgba(214, 255, 232, 0.12);
}

.v4-hero {
  position: relative;
  min-height: 760px;
  padding: 156px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 141, 88, 0.12), transparent 32%),
    var(--v4-ink);
  color: #fff;
}

.v4-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.v4-hero__line {
  position: absolute;
  top: 88px;
  left: max(24px, calc((100vw - 1180px) / 2));
  width: 1px;
  height: calc(100% - 88px);
  background: linear-gradient(to bottom, rgba(184, 141, 88, 0.5), transparent 72%);
}

.v4-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.v4-hero__content {
  padding-left: 34px;
}

.v4-kicker {
  margin: 0 0 18px;
  color: var(--v4-bronze-light);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.v4-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--v4-serif);
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.v4-hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}

.v4-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
}

.v4-text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.v4-text-link span {
  color: var(--v4-bronze-light);
  font-size: 17px;
  line-height: 1;
}

.v4-text-link:hover,
.v4-text-link:focus-visible {
  border-color: var(--v4-bronze-light);
  color: var(--v4-bronze-light);
}

.v4-text-link--dark {
  border-color: rgba(11, 23, 28, 0.32);
  color: var(--v4-ink);
}

.v4-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 38px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

.v4-hero__notes li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.v4-hero__notes li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--v4-bronze);
  content: "";
}

.v4-portrait {
  position: relative;
  width: min(100%, 440px);
  justify-self: end;
}

.v4-portrait__frame {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--v4-shadow);
}

.v4-portrait__frame::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: 68px;
  height: 68px;
  border-top: 2px solid var(--v4-bronze);
  border-left: 2px solid var(--v4-bronze);
  content: "";
  pointer-events: none;
}

.v4-portrait__frame img {
  width: 100%;
  aspect-ratio: 0.83;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.04);
}

.v4-portrait__frame img.v4-image-focus--center {
  object-position: center;
}

.v4-portrait__frame img.v4-image-focus--top {
  object-position: center top;
}

.v4-portrait__frame img.v4-image-focus--bottom {
  object-position: center bottom;
}

.v4-portrait__frame img.v4-image-focus--left {
  object-position: left center;
}

.v4-portrait__frame img.v4-image-focus--right {
  object-position: right center;
}

.v4-portrait__caption {
  position: absolute;
  z-index: 3;
  right: -1px;
  bottom: -1px;
  left: 28px;
  display: grid;
  padding: 20px 24px;
  background: rgba(11, 23, 28, 0.94);
  backdrop-filter: blur(10px);
}

.v4-portrait__caption span {
  color: var(--v4-bronze-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v4-portrait__caption strong {
  margin-top: 4px;
  font-family: var(--v4-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
}

.v4-portrait__caption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v4-portrait__seal {
  position: absolute;
  z-index: 4;
  top: 44px;
  left: -64px;
  display: grid;
  width: 150px;
  gap: 1px;
  padding: 17px 19px;
  border: 1px solid rgba(216, 187, 145, 0.42);
  border-left: 2px solid var(--v4-bronze);
  border-radius: 0;
  background: var(--v4-ink);
  color: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
}

.v4-portrait__seal::before {
  content: none;
}

.v4-portrait__seal strong {
  color: var(--v4-bronze-light);
  font-family: var(--v4-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.v4-proof {
  background: var(--v4-white);
}

.v4-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.v4-proof__item {
  display: flex;
  min-height: 100px;
  gap: 14px;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--v4-border);
}

.v4-proof__item:first-child {
  border-left: 1px solid var(--v4-border);
}

.v4-proof__item span {
  color: var(--v4-bronze);
  font-family: var(--v4-serif);
  font-size: 18px;
  font-weight: 600;
}

.v4-proof__item strong {
  color: var(--v4-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.v4-section {
  padding: clamp(88px, 10vw, 144px) 0;
}

.v4-section--paper {
  background: var(--v4-paper);
}

.v4-section--light {
  background: var(--v4-white);
}

.v4-section--ink {
  position: relative;
  overflow: hidden;
  background: var(--v4-ink-soft);
  color: #fff;
}

.v4-section--ink::after {
  position: absolute;
  right: -12vw;
  bottom: -26vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(184, 141, 88, 0.15);
  border-radius: 50%;
  content: "";
}

.v4-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.v4-editorial__heading {
  position: sticky;
  top: 130px;
}

.v4-editorial h2,
.v4-section-heading h2,
.v4-faq-layout h2,
.v4-closing h2 {
  margin: 0;
  color: var(--v4-ink);
  font-family: var(--v4-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.v4-editorial__heading::after {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 28px;
  background: var(--v4-bronze);
  content: "";
}

.v4-editorial__lead {
  margin: 0;
  color: #314047;
  font-family: var(--v4-serif);
  font-size: clamp(25px, 2.8vw, 34px);
  line-height: 1.35;
}

.v4-legal-note {
  position: relative;
  margin-top: 48px;
  padding: 32px 36px;
  border-left: 2px solid var(--v4-bronze);
  background: rgba(255, 253, 248, 0.64);
}

.v4-legal-note span {
  color: var(--v4-bronze);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v4-legal-note h3 {
  margin: 7px 0 10px;
  color: var(--v4-ink);
  font-family: var(--v4-serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
}

.v4-legal-note p {
  margin: 0;
  color: var(--v4-muted);
  font-size: 14px;
}

.v4-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.6fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 62px;
}

.v4-section-heading > p {
  max-width: 460px;
  margin: 0 0 4px;
  color: var(--v4-muted);
  font-size: 15px;
}

.v4-section-heading--inverse {
  position: relative;
  z-index: 1;
}

.v4-section-heading--inverse h2 {
  color: #fff;
}

.v4-section-heading--inverse > p {
  color: rgba(255, 255, 255, 0.58);
}

.v4-situations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--v4-border);
  border-bottom: 1px solid var(--v4-border);
}

.v4-situation {
  min-height: 300px;
  padding: 36px 34px 38px;
  border-right: 1px solid var(--v4-border);
}

.v4-situation:first-child {
  border-left: 1px solid var(--v4-border);
}

.v4-situation__number {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--v4-bronze);
  font-family: var(--v4-serif);
  font-size: 20px;
}

.v4-situation h3 {
  margin: 0 0 18px;
  color: var(--v4-ink);
  font-family: var(--v4-serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.08;
}

.v4-situation p {
  margin: 0;
  color: var(--v4-muted);
  font-size: 14px;
}

.v4-inline-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.v4-inline-cta p {
  max-width: 700px;
  margin: 0;
  color: var(--v4-muted);
  font-size: 13px;
}

.v4-process {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--v4-border-inverse);
}

.v4-process__item {
  min-height: 294px;
  padding: 40px 34px;
  border-right: 1px solid var(--v4-border-inverse);
}

.v4-process__item:first-child {
  border-left: 1px solid var(--v4-border-inverse);
}

.v4-process__item > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 56px;
  border: 1px solid rgba(216, 187, 145, 0.46);
  border-radius: 50%;
  color: var(--v4-bronze-light);
  font-family: var(--v4-serif);
  font-size: 19px;
}

.v4-process__item h3 {
  margin: 0 0 16px;
  font-family: var(--v4-serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.08;
}

.v4-process__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.v4-section--lawyer {
  position: relative;
  overflow: hidden;
  background: var(--v4-paper-deep);
}

.v4-section--lawyer::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  border-left: 1px solid rgba(18, 34, 40, 0.08);
  content: "";
  pointer-events: none;
}

.v4-lawyer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.v4-lawyer__visual {
  position: relative;
  margin: 0;
}

.v4-lawyer__photo {
  padding: 10px;
  border: 1px solid rgba(18, 34, 40, 0.16);
  background: rgba(255, 253, 248, 0.42);
}

.v4-lawyer__photo::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: 78px;
  height: 78px;
  border-top: 2px solid var(--v4-bronze);
  border-left: 2px solid var(--v4-bronze);
  content: "";
}

.v4-lawyer__photo img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.03);
}

.v4-lawyer__visual figcaption {
  position: absolute;
  right: -24px;
  bottom: 34px;
  display: grid;
  min-width: 250px;
  padding: 20px 24px;
  border-left: 2px solid var(--v4-bronze);
  background: var(--v4-ink);
  color: #fff;
  box-shadow: 0 18px 44px rgba(3, 14, 18, 0.2);
}

.v4-lawyer__visual figcaption strong {
  font-family: var(--v4-serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
}

.v4-lawyer__visual figcaption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.v4-lawyer__content h2 {
  max-width: 700px;
  margin: 0;
  color: var(--v4-ink);
  font-family: var(--v4-serif);
  font-size: clamp(43px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.v4-lawyer__subtitle {
  margin: 22px 0 0;
  color: var(--v4-bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v4-lawyer__text {
  max-width: 680px;
  margin: 18px 0 0;
  color: #45535a;
  font-size: 15px;
}

.v4-lawyer__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--v4-border);
  border-bottom: 1px solid var(--v4-border);
}

.v4-lawyer__points > div {
  display: grid;
  align-content: start;
  min-height: 130px;
  gap: 8px;
  padding: 22px 20px;
  border-right: 1px solid var(--v4-border);
}

.v4-lawyer__points > div:first-child {
  border-left: 1px solid var(--v4-border);
}

.v4-lawyer__points strong {
  color: var(--v4-ink);
  font-family: var(--v4-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}

.v4-lawyer__points span {
  color: var(--v4-muted);
  font-size: 10px;
  line-height: 1.55;
}

.v4-lawyer__content blockquote {
  margin: 30px 0;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--v4-bronze);
  color: var(--v4-ink);
  font-family: var(--v4-serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
}

.v4-lawyer__note {
  display: block;
  margin-top: 12px;
  color: var(--v4-muted);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.v4-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.v4-faq-layout__intro {
  position: sticky;
  top: 130px;
}

.v4-faq-layout__intro > p:not(.v4-kicker) {
  margin: 24px 0 28px;
  color: var(--v4-muted);
  font-size: 14px;
}

.v4-faq {
  border-top: 1px solid var(--v4-border);
}

.v4-faq__item {
  border-bottom: 1px solid var(--v4-border);
}

.v4-faq__item summary {
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 27px 0;
  color: var(--v4-ink);
  font-family: var(--v4-serif);
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.15;
  list-style: none;
  cursor: pointer;
}

.v4-faq__item summary::-webkit-details-marker {
  display: none;
}

.v4-faq__item summary > span {
  color: var(--v4-bronze);
  font-family: var(--v4-serif);
  font-size: 16px;
}

.v4-faq__item summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.v4-faq__item summary i::before,
.v4-faq__item summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--v4-bronze);
  content: "";
  transition: transform 160ms ease;
}

.v4-faq__item summary i::after {
  transform: rotate(90deg);
}

.v4-faq__item[open] summary i::after {
  transform: rotate(0);
}

.v4-faq__item p {
  margin: -5px 38px 28px 48px;
  color: var(--v4-muted);
  font-size: 14px;
}

.v4-closing {
  padding: clamp(84px, 9vw, 128px) 0 32px;
  background: var(--v4-ink);
  color: #fff;
}

.v4-closing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.62fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.v4-closing h2 {
  max-width: 740px;
  color: #fff;
}

.v4-closing__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.v4-closing__action {
  padding: 34px 0 34px 34px;
  border-left: 1px solid rgba(216, 187, 145, 0.35);
}

.v4-closing__action > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.v4-closing__action .v4-button {
  width: 100%;
}

.v4-closing__action small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-align: center;
}

.v4-compliance {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin-top: 92px;
  padding-top: 28px;
  border-top: 1px solid var(--v4-border-inverse);
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v4-compliance p {
  margin: 0;
}

.v4-footer {
  padding: 58px 0 26px;
  background: #071014;
  color: rgba(255, 255, 255, 0.52);
}

.v4-footer__grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr 0.6fr;
  gap: 56px;
  align-items: start;
}

.v4-footer__brand {
  display: grid;
  gap: 12px;
}

.v4-footer__brand img {
  width: auto;
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.v4-footer__brand strong {
  color: #fff;
  font-family: var(--v4-serif);
  font-size: 25px;
}

.v4-footer__brand span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v4-footer__grid > p {
  max-width: 520px;
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
}

.v4-footer__links {
  display: grid;
  gap: 9px;
  justify-items: end;
}

.v4-footer__links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  text-decoration: none;
}

.v4-footer__links a:hover {
  color: #fff;
}

.v4-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v4-mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .v4-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .v4-nav {
    display: none;
  }

  .v4-menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .v4-menu-button span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .v4-menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .v4-menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .v4-menu-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--v4-ink);
    transition: max-height 240ms ease;
  }

  .v4-menu-panel.is-open {
    max-height: 430px;
    border-bottom: 1px solid var(--v4-border-inverse);
  }

  .v4-menu-panel__inner {
    display: grid;
    gap: 0;
    padding: 10px 0 24px;
  }

  .v4-menu-panel__inner > a:not(.v4-button) {
    padding: 14px 0;
    border-bottom: 1px solid var(--v4-border-inverse);
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    text-decoration: none;
  }

  .v4-menu-panel__inner .v4-button {
    margin-top: 18px;
  }

  .v4-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.58fr);
    gap: 42px;
  }

  .v4-hero h1 {
    font-size: clamp(49px, 6.3vw, 68px);
  }

  .v4-portrait__seal {
    display: none;
  }

  .v4-proof__item {
    padding-inline: 16px;
  }
}

@media (max-width: 820px) {
  :root {
    --v4-container: min(100% - 32px, 680px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .v4-header__inner {
    min-height: 76px;
  }

  .v4-brand__logo {
    height: 38px;
  }

  .v4-brand__oab,
  .v4-header .v4-button--header {
    display: none;
  }

  .v4-hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  .v4-hero__line {
    top: 76px;
    left: 16px;
  }

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

  .v4-hero__content {
    padding-left: 18px;
  }

  .v4-hero h1 {
    max-width: 640px;
    font-size: clamp(46px, 11vw, 66px);
  }

  .v4-portrait {
    width: min(86%, 410px);
    margin: 24px auto 0;
    justify-self: center;
  }

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

  .v4-proof__item:nth-child(2) {
    border-right: 0;
  }

  .v4-proof__item:nth-child(n + 3) {
    border-top: 1px solid var(--v4-border);
  }

  .v4-editorial,
  .v4-faq-layout,
  .v4-lawyer,
  .v4-closing__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .v4-editorial__heading,
  .v4-faq-layout__intro {
    position: static;
  }

  .v4-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .v4-situations,
  .v4-process {
    grid-template-columns: 1fr;
  }

  .v4-situation,
  .v4-process__item {
    min-height: auto;
    border-right: 1px solid var(--v4-border);
    border-bottom: 1px solid var(--v4-border);
    border-left: 1px solid var(--v4-border);
  }

  .v4-process__item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 24px;
    border-color: var(--v4-border-inverse);
  }

  .v4-process__item > span,
  .v4-situation__number {
    margin-bottom: 0;
  }

  .v4-closing__action {
    padding: 32px;
    border: 1px solid rgba(216, 187, 145, 0.3);
  }

  .v4-lawyer__visual {
    width: min(82%, 430px);
  }

  .v4-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .v4-footer__grid > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --v4-container: calc(100% - 32px);
  }

  body.v4-page {
    padding-bottom: 76px;
  }

  .v4-brand__logo {
    max-width: 168px;
    height: 34px;
  }

  .v4-hero {
    padding: 114px 0 58px;
  }

  .v4-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.99;
  }

  .v4-hero__lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .v4-hero__actions {
    display: grid;
    gap: 20px;
    margin-top: 28px;
  }

  .v4-hero__actions .v4-button {
    width: 100%;
  }

  .v4-hero__actions .v4-text-link {
    justify-self: start;
  }

  .v4-hero__notes {
    display: grid;
    gap: 9px;
    margin-top: 30px;
  }

  .v4-portrait {
    width: 93%;
  }

  .v4-portrait__caption {
    left: 16px;
    padding: 16px 18px;
  }

  .v4-portrait__caption strong {
    font-size: 22px;
  }

  .v4-proof__item {
    min-height: 84px;
    gap: 8px;
    padding: 16px 12px;
  }

  .v4-proof__item span {
    font-size: 15px;
  }

  .v4-proof__item strong {
    font-size: 8px;
  }

  .v4-section {
    padding: 78px 0;
  }

  .v4-editorial h2,
  .v4-section-heading h2,
  .v4-lawyer__content h2,
  .v4-faq-layout h2,
  .v4-closing h2 {
    font-size: clamp(39px, 11vw, 50px);
  }

  .v4-editorial {
    gap: 38px;
  }

  .v4-editorial__lead {
    font-size: 24px;
  }

  .v4-legal-note {
    margin-top: 34px;
    padding: 25px 24px;
  }

  .v4-section-heading {
    margin-bottom: 38px;
  }

  .v4-situation,
  .v4-process__item {
    padding: 28px 24px;
  }

  .v4-situation h3,
  .v4-process__item h3 {
    font-size: 26px;
  }

  .v4-inline-cta {
    display: grid;
    gap: 18px;
  }

  .v4-lawyer {
    width: var(--v4-container);
  }

  .v4-lawyer__visual {
    width: 92%;
  }

  .v4-lawyer__visual figcaption {
    right: -24px;
    bottom: 24px;
    min-width: 220px;
    padding: 17px 19px;
  }

  .v4-lawyer__visual figcaption strong {
    font-size: 23px;
  }

  .v4-lawyer__content {
    width: 100%;
  }

  .v4-lawyer__points {
    grid-template-columns: 1fr;
  }

  .v4-lawyer__points > div {
    min-height: auto;
    border-right: 1px solid var(--v4-border);
    border-bottom: 1px solid var(--v4-border);
    border-left: 1px solid var(--v4-border);
  }

  .v4-lawyer__content .v4-button {
    width: 100%;
  }

  .v4-faq-layout {
    gap: 38px;
  }

  .v4-faq__item summary {
    grid-template-columns: 27px 1fr 20px;
    gap: 9px;
    font-size: 20px;
  }

  .v4-faq__item p {
    margin-right: 20px;
    margin-left: 36px;
  }

  .v4-closing {
    padding-top: 78px;
  }

  .v4-closing__grid {
    gap: 36px;
  }

  .v4-closing__action {
    padding: 24px;
  }

  .v4-compliance {
    display: grid;
    gap: 10px;
    margin-top: 60px;
  }

  .v4-footer {
    padding-bottom: 28px;
  }

  .v4-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v4-footer__grid > p {
    grid-column: auto;
    grid-row: auto;
  }

  .v4-footer__links {
    justify-items: start;
  }

  .v4-footer__bottom {
    display: grid;
    gap: 8px;
  }

  .v4-mobile-cta {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(11, 23, 28, 0.98);
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  }

  .v4-mobile-cta div {
    display: grid;
  }

  .v4-mobile-cta span {
    font-size: 11px;
    font-weight: 700;
  }

  .v4-mobile-cta small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 8px;
  }

  .v4-mobile-cta .v4-button {
    min-height: 45px;
    padding-inline: 15px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
