:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --surface: #eef0f3;
  --surface-strong: #e2e5ea;
  --primary: #1b2a4a;
  --ink: #2e2e2e;
  --muted: #5c6068;
  --line: #cbd0d8;
  --line-strong: #9198a5;
  --accent: #c9a227;
  --accent-hover: #b78f1f;
  --accent-text: #725b0d;
  --accent-soft: #efe5b8;
  --accent-ink: #1b2a4a;
  --header-bg: rgb(247 245 240 / 94%);
  --focus: #1b2a4a;
  --font-display: "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-space: clamp(5.5rem, 10vw, 9rem);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  color: var(--primary);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: var(--section-space);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.has-js .site-header:not(.is-scrolled) {
  border-bottom-color: rgb(255 255 255 / 18%);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.has-js .site-header:not(.is-scrolled) .brand-copy strong,
.has-js .site-header:not(.is-scrolled) .primary-nav a,
.has-js .site-header:not(.is-scrolled) .menu-toggle {
  color: #f7f5f0;
}

.has-js .site-header:not(.is-scrolled) .brand-copy span {
  color: rgb(247 245 240 / 72%);
}

.has-js .site-header:not(.is-scrolled) .primary-nav a:hover {
  color: var(--accent);
}

.has-js .site-header.is-scrolled .brand-copy strong,
.has-js .site-header.is-scrolled .primary-nav a {
  color: var(--primary);
}

.has-js .site-header.is-scrolled .brand-copy span {
  color: var(--muted);
}

.has-js .site-header.is-scrolled .brand-logo {
  filter: grayscale(1) contrast(2) brightness(0.62);
  mix-blend-mode: multiply;
}

.menu-open .site-header {
  border-bottom-color: rgb(255 255 255 / 16%);
  background: var(--primary);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.menu-open .site-header .brand-copy strong,
.menu-open .site-header .brand-copy span,
.menu-open .site-header .menu-toggle {
  color: #f7f5f0;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100%, var(--container));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 0.75rem;
}

.brand-logo {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.55rem;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.35) brightness(1.45);
  mix-blend-mode: screen;
}

.brand-copy {
  display: grid;
  max-width: 17rem;
  line-height: 1.05;
}

.brand-copy strong {
  color: #f7f5f0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.035em;
}

.brand-copy span {
  margin-top: 0.32rem;
  color: rgb(247 245 240 / 74%);
  font-size: 0.69rem;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.2vw, 2rem);
  min-width: 0;
}

.primary-nav a {
  color: rgb(247 245 240 / 84%);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 0.45rem;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover {
  background: var(--accent-hover);
}

.header-cta {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding-block: calc(var(--header-height) + clamp(3rem, 8vw, 7rem)) clamp(8rem, 13vw, 11rem);
  overflow: clip;
  background: var(--primary) url("hero-sengketa.png") center center / cover no-repeat;
  color: #f7f5f0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(10 16 29 / 54%) 0%, transparent 27%),
    linear-gradient(90deg, rgb(8 13 23 / 90%) 0%, rgb(8 13 23 / 68%) 34%, rgb(8 13 23 / 12%) 73%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 47rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
  color: #f7f5f0;
  font-family: var(--font-display);
  max-width: 44rem;
  font-size: clamp(3.2rem, 4.4vw, 4.65rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 span {
  display: inline;
}

.hero h1 span:last-child {
  position: relative;
  color: #f7f5f0;
}

.hero h1 span + span::before {
  content: " ";
}

.hero h1 span:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.12em;
  left: 0;
  width: 42%;
  height: 0.075em;
  background: var(--accent);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2.2rem);
  max-width: 48rem;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.hero-benefits p {
  position: relative;
  margin: 0;
  padding: 2.25rem 0 0;
  color: rgb(247 245 240 / 78%);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-benefits p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.28rem rgb(201 162 39 / 16%);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  color: #f7f5f0;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-cue:hover {
  opacity: 0.72;
  transform: translate(-50%, 0.2rem);
}

.mouse-icon {
  position: relative;
  display: block;
  width: 1.45rem;
  height: 2.25rem;
  border: 1.5px solid currentColor;
  border-radius: 0.8rem;
}

.mouse-icon span {
  display: block;
  width: 2px;
  height: 0.45rem;
  margin: 0.42rem auto 0;
  border-radius: 2px;
  background: currentColor;
  animation: mouse-scroll 1.8s ease-in-out infinite;
}

.scroll-cue-chevron {
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

@keyframes mouse-scroll {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(0.28rem); }
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgb(247 245 240 / 78%);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid var(--line-strong);
  padding-block: 0.55rem 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link span {
  color: var(--accent);
  transition: transform 180ms ease;
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--primary);
}

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

.button-secondary-hero {
  border-color: rgb(247 245 240 / 70%);
  background: rgb(27 42 74 / 24%);
  color: #f7f5f0;
}

.button-secondary-hero:hover {
  border-color: #f7f5f0;
  background: #f7f5f0;
  color: var(--primary);
}

.service-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -5rem;
  border-block: 1px solid rgb(255 255 255 / 22%);
  color: #f7f5f0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.2fr 0.9fr;
  align-items: stretch;
  padding-block: 0;
}

.ribbon-grid > * {
  display: flex;
  align-items: center;
  min-height: 5rem;
  margin: 0;
  padding: 1rem clamp(1rem, 2vw, 1.75rem);
  font-size: 0.86rem;
  font-weight: 650;
}

.ribbon-grid > *:first-child {
  padding-left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ribbon-grid > * + * {
  border-left: 1px solid rgb(255 255 255 / 22%);
}

.summary-copy {
  max-width: 61rem;
}

.summary-copy h2,
.section-heading h2,
.process-intro h2,
.reasons-heading h2,
.faq-intro h2,
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.5vw, 5.15rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.summary-copy h2 {
  max-width: 14ch;
  margin-bottom: 2.5rem;
}

.summary-copy .section-lead {
  max-width: 66ch;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.6;
}

.summary-copy > p:last-child {
  max-width: 66ch;
  color: var(--muted);
}

.summary-subtitle {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.resolution-paths {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1px;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.resolution-panel {
  position: relative;
  min-height: 25rem;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  overflow: hidden;
  background: var(--bg);
}

.resolution-panel-primary {
  background: var(--surface);
}

.path-label,
.case-category {
  display: block;
  margin-bottom: 2.3rem;
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resolution-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1;
}

.resolution-panel p {
  position: relative;
  z-index: 1;
  max-width: 49ch;
  margin-bottom: 0;
  color: var(--muted);
}

.resolution-panel svg {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 60%;
  opacity: 0.34;
}

.resolution-panel svg path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.dispute-types {
  background: var(--surface);
}

.section-heading {
  max-width: 54rem;
}

.section-heading h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.section-heading p {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.case-groups {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  grid-template-rows: repeat(2, minmax(16rem, auto));
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.case-group {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  overflow: hidden;
  background: var(--bg);
}

.case-group-large {
  display: grid;
  grid-row: 1 / 3;
  grid-template-rows: auto 1fr;
  min-height: 38rem;
}

.case-group-small {
  min-height: 18rem;
}

.case-group-accent {
  background: var(--accent-soft);
}

.case-category {
  position: relative;
  z-index: 1;
  margin-bottom: 1.1rem;
}

.case-group h3 {
  position: relative;
  z-index: 1;
  max-width: 23ch;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.case-group ul {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 34rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-group li {
  display: grid;
  grid-template-columns: 0.75rem 1fr;
  gap: 0.8rem;
  padding-block: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.case-group li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.28rem;
  border: 1px solid var(--accent);
}

.case-group svg {
  position: absolute;
  right: -8%;
  bottom: 11%;
  width: 70%;
  opacity: 0.24;
}

.case-group svg path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.case-group svg .case-active {
  fill: var(--accent-soft);
  stroke: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.process-intro h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.process-intro p {
  max-width: 38ch;
  color: var(--muted);
}

.process-intro svg {
  width: min(100%, 20rem);
  margin-top: 2.5rem;
  opacity: 0.45;
}

.process-intro svg path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0 0 0 2.25rem;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0.41rem;
  width: 1px;
  background: var(--line-strong);
}

.process-list li {
  position: relative;
  min-height: 13rem;
  padding: 0 0 3.5rem clamp(0.5rem, 2vw, 1.75rem);
}

.process-list li:last-child {
  min-height: 0;
  padding-bottom: 0;
}

.process-marker {
  position: absolute;
  top: 0.55rem;
  left: -2.25rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid var(--accent);
  background: var(--bg);
}

.process-list h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-list p {
  max-width: 55ch;
  margin-bottom: 0;
  color: var(--muted);
}

.reasons {
  border-block: 1px solid var(--line);
}

.reasons-heading h2 {
  max-width: 17ch;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-kicker {
  margin-bottom: 1.5rem;
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
}

.reason {
  grid-column: span 5;
  min-height: 17rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.reason-wide {
  grid-column: span 7;
  padding-right: clamp(2rem, 6vw, 6rem);
  border-right: 1px solid var(--line);
}

.reason:not(.reason-wide) {
  padding-left: clamp(2rem, 6vw, 6rem);
}

.reason-last {
  grid-column: 6 / 13;
  padding-right: 0;
  padding-left: clamp(2rem, 6vw, 6rem);
  border-right: 0;
  border-left: 1px solid var(--line);
}

.reason-last + .reason {
  display: none;
}

.reason span {
  display: block;
  margin-bottom: 2rem;
  color: var(--accent-text);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.reason h3 {
  max-width: 27ch;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 520;
  line-height: 1.5;
}

.faq {
  background: var(--surface);
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: relative;
}

.faq-intro h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.faq-intro p {
  max-width: 37ch;
  color: var(--muted);
}

.faq-intro svg {
  width: min(130%, 29rem);
  margin-top: 2rem;
  margin-left: -25%;
  opacity: 0.42;
}

.faq-intro svg path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 2.5rem;
  align-items: center;
  gap: 1.5rem;
  min-height: 6.5rem;
  padding-block: 1.5rem;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 650;
  line-height: 1.35;
  list-style: none;
}

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

.faq-indicator {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
}

.faq-indicator::before,
.faq-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 1px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-indicator::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 62ch;
  padding: 0 4rem 2rem 0;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 0;
}

.final-cta {
  padding-block: clamp(5.5rem, 11vw, 10rem);
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  max-width: 15ch;
  margin-bottom: 1.75rem;
}

.cta-copy p {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-parcel {
  width: 100%;
  overflow: visible;
}

.cta-parcel path,
.cta-parcel line {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.cta-parcel .cta-parcel-fill {
  fill: var(--accent-soft);
  stroke: var(--accent);
  stroke-width: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-brand {
  margin-bottom: 0.25rem !important;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-grid > div:first-child p:last-child,
.footer-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-contact {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 650;
  text-align: center;
}

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

.footer-note {
  max-width: 28rem;
  justify-self: end;
  text-align: right;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    height: calc(100dvh - var(--header-height));
    padding: 1rem var(--gutter) 2rem;
    background: var(--primary);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .primary-nav a {
    display: flex;
    align-items: center;
    min-height: 4.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    color: #f7f5f0;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 650;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 3.75rem;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 42rem);
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 5.15rem);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --gutter: 1.25rem;
    --section-space: clamp(4.5rem, 20vw, 6.5rem);
  }

  .header-shell {
    gap: 0.6rem;
  }

  .brand-boundary {
    width: 1.9rem;
    height: 1.9rem;
  }

  .brand-logo {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-copy strong {
    max-width: 8.5rem;
    font-size: 0.72rem;
  }

  .brand-copy span {
    max-width: 10rem;
    font-size: 0.51rem;
  }

  .header-cta {
    min-height: 2.5rem;
    margin-right: 3.25rem;
    padding-inline: 0.75rem;
    font-size: 0.78rem;
  }

  .menu-toggle {
    position: absolute;
    right: var(--gutter);
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero {
    min-height: 100dvh;
    padding-block: calc(var(--header-height) + 4.25rem) 4.5rem;
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(10 16 29 / 62%) 0%, transparent 32%),
      linear-gradient(90deg, rgb(8 13 23 / 90%) 0%, rgb(8 13 23 / 72%) 62%, rgb(8 13 23 / 38%) 100%);
  }

  .hero-grid,
  .resolution-paths,
  .case-groups,
  .process-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 12.2vw, 4.3rem);
    line-height: 0.88;
  }

  .hero-lead {
    max-width: 29rem;
    font-size: 1.05rem;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 24rem;
    margin-top: 2.5rem;
  }

  .hero-benefits p {
    min-height: 2.1rem;
    padding: 0 0 0 2rem;
  }

  .hero-benefits p::before {
    top: 0.05rem;
  }

  .scroll-cue {
    bottom: 1.25rem;
  }

  .service-ribbon {
    margin-top: 0;
    border-block-color: rgb(255 255 255 / 16%);
    background: var(--primary);
  }

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

  .ribbon-grid > * {
    min-height: 4.25rem;
    padding: 0.9rem;
    border-left: 1px solid var(--line);
    font-size: 0.78rem;
  }

  .ribbon-grid > *:first-child {
    padding-left: 0.9rem;
    border-left: 0;
  }

  .ribbon-grid > *:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ribbon-grid > *:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .summary-copy h2,
  .section-heading h2,
  .process-intro h2,
  .reasons-heading h2,
  .faq-intro h2,
  .cta-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .resolution-paths {
    gap: 1px;
  }

  .resolution-panel {
    min-height: 21rem;
  }

  .case-groups {
    grid-template-rows: auto;
  }

  .case-group-large {
    grid-row: auto;
    min-height: 34rem;
  }

  .case-group-small {
    min-height: 19rem;
  }

  .process-grid,
  .faq-grid {
    gap: 3.5rem;
  }

  .process-intro {
    position: static;
  }

  .process-intro h2,
  .faq-intro h2 {
    max-width: 11ch;
  }

  .process-intro svg {
    display: none;
  }

  .process-list li {
    min-height: 11rem;
    padding-left: 0.75rem;
  }

  .process-list h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .reason,
  .reason-wide,
  .reason-last {
    grid-column: 1;
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-left: 0;
  }

  .reason span {
    margin-bottom: 1rem;
  }

  .faq-intro svg {
    width: min(110%, 24rem);
    margin-left: -10%;
  }

  .faq-list summary {
    min-height: 5.5rem;
    gap: 1rem;
    padding-block: 1.25rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .cta-grid {
    gap: 2.5rem;
  }

  .cta-parcel {
    justify-self: center;
    width: min(100%, 24rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .footer-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand-copy span {
    display: none;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta::after {
    content: "Hubungi Kami";
    font-size: 0.76rem;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button,
  .hero-actions .text-link,
  .cta-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link,
  .cta-actions .text-link {
    justify-content: space-between;
  }

  .cta-actions .button {
    font-size: 0.82rem;
  }

  .ribbon-grid > * {
    font-size: 0.72rem;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* Professional legal layout refinement */
:root {
  --bg: #f5f2eb;
  --surface: #e9edf1;
  --surface-strong: #dfe4e9;
  --primary: #0d2b52;
  --ink: #25303d;
  --muted: #59636f;
  --line: #c9ced3;
  --line-strong: #8e98a3;
  --accent: #b99649;
  --accent-hover: #a78134;
  --accent-text: #755f25;
  --accent-soft: #e8ddb8;
  --accent-ink: #0d2b52;
  --header-bg: rgb(245 242 235 / 96%);
  --focus: #0d2b52;
  --font-display: "Iowan Old Style", Baskerville, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(1.5rem, 4vw, 3.5rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --section-space: clamp(6rem, 9vw, 8.5rem);
  --header-height: 80px;
}

body {
  background: var(--bg);
  font-size: 1rem;
  line-height: 1.72;
}

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

.site-header {
  box-shadow: 0 12px 32px rgb(13 43 82 / 5%);
}

.has-js .site-header:not(.is-scrolled) {
  box-shadow: none;
}

.header-shell {
  grid-template-columns: minmax(13rem, auto) minmax(0, 1fr) auto;
  gap: clamp(var(--space-5), 2.5vw, var(--space-10));
  width: 100%;
  max-width: none;
}

.brand {
  min-width: 0;
  max-width: 20rem;
  gap: var(--space-3);
}

.brand-logo {
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0;
}

.brand-copy {
  min-width: 0;
  max-width: 16.5rem;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.065em;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: var(--space-1);
  font-size: 0.65rem;
  line-height: 1.35;
}

.primary-nav {
  gap: clamp(var(--space-4), 2vw, var(--space-8));
}

.primary-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.button {
  min-height: 3.1rem;
  padding: 0.9rem var(--space-6);
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.015em;
}

.button-primary {
  border-color: transparent;
  box-shadow: 0 10px 24px rgb(13 43 82 / 16%);
}

.button-primary:hover {
  box-shadow: 0 12px 28px rgb(13 43 82 / 20%);
}

.header-cta {
  min-height: 2.8rem;
  padding-inline: var(--space-5);
}

.hero {
  min-height: max(46rem, 100svh);
  padding-block: calc(var(--header-height) + clamp(4.5rem, 9vw, 8rem)) clamp(7.5rem, 12vw, 10rem);
  background-position: center center;
}

.hero::before {
  background:
    linear-gradient(180deg, rgb(7 15 27 / 58%) 0%, transparent 29%),
    linear-gradient(90deg, rgb(7 15 27 / 94%) 0%, rgb(7 15 27 / 78%) 36%, rgb(7 15 27 / 22%) 72%, transparent 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 43rem);
}

.hero-copy {
  max-width: 43rem;
  animation: hero-entrance 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-entrance {
  from {
    opacity: 0.68;
    filter: blur(5px);
    transform: translateY(1rem);
  }

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 12.5ch;
  margin-bottom: var(--space-8);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.7vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 span:last-child::after {
  right: auto;
  bottom: -0.18em;
  width: 5.5rem;
  height: 1px;
}

.hero-actions,
.cta-actions {
  gap: var(--space-3);
}

.button-secondary-hero {
  border-color: rgb(245 242 235 / 48%);
  background: rgb(13 43 82 / 42%);
}

.hero-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 43rem;
  margin-top: clamp(var(--space-12), 6vw, var(--space-16));
  padding-top: var(--space-5);
  border-top: 1px solid rgb(245 242 235 / 28%);
}

.hero-benefits p {
  min-width: 0;
  padding: 0 var(--space-5) 0 0;
  color: rgb(245 242 235 / 78%);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-benefits p + p {
  padding-left: var(--space-5);
  border-left: 1px solid rgb(245 242 235 / 22%);
}

.hero-benefits p::before {
  display: none;
}

.scroll-cue {
  bottom: var(--space-6);
  opacity: 0.68;
}

.summary-copy h2,
.section-heading h2,
.process-intro h2,
.reasons-heading h2,
.faq-intro h2,
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.service-summary {
  border-bottom: 1px solid var(--line);
}

.summary-copy {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
  column-gap: clamp(var(--space-12), 7vw, 7rem);
  row-gap: var(--space-5);
  max-width: none;
}

.summary-copy h2 {
  grid-column: 1;
  grid-row: 1 / 6;
  align-self: start;
  max-width: 11ch;
  margin: 0;
}

.summary-copy > p,
.summary-copy .section-lead,
.summary-copy > p:last-child {
  grid-column: 2;
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
}

.summary-copy > p:not(.section-lead),
.process-list p,
.faq-answer p,
.cta-copy p {
  text-align: justify;
}

.summary-copy strong,
.process-list strong {
  font-weight: 800;
}

.summary-copy .section-lead {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.35;
}

.summary-subtitle {
  grid-column: 2;
  margin: var(--space-5) 0 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.dispute-types .container {
  display: grid;
  grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1.58fr);
  align-items: start;
  gap: clamp(var(--space-12), 6vw, 6rem);
}

.section-heading {
  position: sticky;
  top: calc(var(--header-height) + var(--space-8));
  max-width: none;
}

.section-heading h2 {
  max-width: 9ch;
  margin: 0;
}

.case-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  margin-top: 0;
}

.case-group {
  padding: clamp(var(--space-6), 3vw, var(--space-10));
}

.case-group-large {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 21rem;
}

.case-group-large ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  gap: 0 var(--space-8);
}

.case-group-small {
  min-height: 14rem;
}

.case-group ul {
  align-self: start;
}

.case-group li {
  grid-template-columns: 0.6rem minmax(0, 1fr);
  gap: var(--space-3);
  padding-block: var(--space-3);
  font-size: 0.92rem;
  font-weight: 600;
}

.case-group li::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.35rem;
}

.case-group svg {
  right: -3%;
  bottom: -16%;
  width: 43%;
  opacity: 0.2;
}

.process {
  background: #fbfaf7;
}

.process-grid {
  grid-template-columns: minmax(15rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(var(--space-12), 7vw, 7rem);
}

.process-intro {
  top: calc(var(--header-height) + var(--space-8));
}

.process-intro h2 {
  max-width: 9ch;
  margin: 0;
}

.process-intro svg {
  width: min(100%, 15rem);
  margin-top: var(--space-12);
  opacity: 0.28;
}

.process-list {
  counter-reset: process-step;
  padding: 0;
}

.process-list::before {
  display: none;
}

.process-list li {
  counter-increment: process-step;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: var(--space-8);
  min-height: 0;
  padding: var(--space-8) 0 var(--space-10);
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line);
}

.process-marker {
  position: static;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.process-marker::after {
  content: counter(process-step, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.process-list p {
  max-width: 67ch;
  line-height: 1.65;
}

.reasons {
  background: var(--bg);
}

.reasons-heading h2 {
  max-width: 12ch;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.reasons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.reason,
.reason-wide,
.reason-last,
.reason:not(.reason-wide) {
  grid-column: auto;
  min-height: 13rem;
  padding: clamp(var(--space-8), 3.5vw, var(--space-10));
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-bottom: var(--space-6);
  background: var(--accent);
}

.reason h3 {
  max-width: 33ch;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.42;
}

.faq-grid {
  grid-template-columns: minmax(15rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(var(--space-12), 7vw, 7rem);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + var(--space-8));
}

.faq-intro h2 {
  max-width: 10ch;
  margin: 0;
}

.faq-intro svg {
  width: min(70%, 18rem);
  margin: var(--space-12) 0 0;
  opacity: 0.25;
}

.faq-list summary {
  min-height: 5.75rem;
  gap: var(--space-6);
  padding-block: var(--space-6);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 700;
}

.faq-indicator {
  width: 2.75rem;
  height: 2.75rem;
}

.faq-answer {
  max-width: 68ch;
  padding: 0 4.25rem var(--space-6) 0;
  line-height: 1.7;
}

.final-cta {
  background: var(--primary);
  color: #f5f2eb;
}

.cta-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.7fr);
  gap: clamp(var(--space-12), 7vw, 7rem);
}

.cta-copy h2 {
  max-width: 12ch;
  color: #f5f2eb;
}

.cta-copy p {
  max-width: 66ch;
  margin-bottom: var(--space-5);
  color: rgb(245 242 235 / 76%);
  font-size: 1rem;
}

.final-cta .button-primary {
  box-shadow: 0 12px 28px rgb(0 0 0 / 22%);
}

.final-cta .text-link {
  border-color: rgb(245 242 235 / 42%);
  color: #f5f2eb;
}

.final-cta .text-link:hover {
  border-color: var(--accent);
  color: #ffffff;
}

.cta-parcel path,
.cta-parcel line {
  stroke: rgb(245 242 235 / 46%);
}

.cta-parcel .cta-parcel-fill {
  fill: rgb(185 150 73 / 18%);
  stroke: var(--accent);
}

.cta-parcel .cta-parcel-active {
  fill: rgb(185 150 73 / 13%);
  stroke: var(--accent);
  stroke-width: 1.7;
}

.site-footer {
  border-top-color: rgb(245 242 235 / 14%);
  background: var(--primary);
  color: rgb(245 242 235 / 80%);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.footer-brand {
  color: #f5f2eb;
  font-family: var(--font-display);
}

.footer-grid > div:first-child p:last-child {
  color: rgb(245 242 235 / 58%);
}

.footer-contact {
  justify-items: end;
  color: #f5f2eb;
  text-align: right;
}

.has-js .reveal,
.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 767px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .primary-nav {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

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

  .header-cta {
    grid-column: 3;
    margin-right: 0;
  }

  .menu-toggle {
    position: static;
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 767px) {
  .summary-copy,
  .dispute-types .container,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .summary-copy {
    row-gap: var(--space-5);
  }

  .summary-copy h2,
  .summary-copy > p,
  .summary-copy .section-lead,
  .summary-copy > p:last-child,
  .summary-subtitle {
    grid-column: 1;
    grid-row: auto;
  }

  .summary-copy h2 {
    max-width: 13ch;
    margin-bottom: var(--space-5);
  }

  .section-heading,
  .process-intro,
  .faq-intro {
    position: static;
  }

  .section-heading h2,
  .process-intro h2,
  .faq-intro h2 {
    max-width: 13ch;
  }

  .case-groups {
    margin-top: var(--space-10);
  }

  .process-grid,
  .faq-grid {
    gap: var(--space-16);
  }

  .process-intro svg {
    display: none;
  }

  .faq-intro svg {
    width: min(42%, 14rem);
    margin-top: var(--space-8);
  }

  .cta-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.85fr);
    gap: var(--space-10);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
    --gutter: clamp(1.25rem, 5vw, 2rem);
    --section-space: clamp(4.75rem, 16vw, 6rem);
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-4);
  }

  .brand {
    grid-column: 1;
    max-width: 17rem;
  }

  .brand-logo {
    width: 2.6rem;
    height: 2.6rem;
  }

  .brand-copy strong {
    max-width: none;
    font-size: 0.72rem;
  }

  .brand-copy span {
    max-width: 11rem;
    font-size: 0.54rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }

  .primary-nav {
    top: var(--header-height);
    height: calc(100svh - var(--header-height));
    padding-bottom: calc(var(--space-8) + env(safe-area-inset-bottom));
  }

  .hero {
    min-height: auto;
    padding-block: calc(var(--header-height) + var(--space-20)) calc(var(--space-20) + var(--space-6));
    background-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(7 15 27 / 68%) 0%, transparent 29%),
      linear-gradient(90deg, rgb(7 15 27 / 94%) 0%, rgb(7 15 27 / 80%) 66%, rgb(7 15 27 / 46%) 100%);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.15rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 30rem;
    margin-top: var(--space-10);
    padding-top: 0;
  }

  .hero-benefits p,
  .hero-benefits p + p {
    min-height: auto;
    padding: var(--space-4) 0;
    border-left: 0;
    border-bottom: 1px solid rgb(245 242 235 / 20%);
    font-size: 0.82rem;
  }

  .scroll-cue {
    display: none;
  }

  .summary-copy h2,
  .section-heading h2,
  .process-intro h2,
  .reasons-heading h2,
  .faq-intro h2,
  .cta-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .summary-copy .section-lead {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

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

  .case-group-large {
    grid-column: auto;
    min-height: auto;
  }

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

  .case-group-small {
    min-height: auto;
  }

  .case-group svg {
    right: -8%;
    bottom: -8%;
    width: 58%;
  }

  .process-list li {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: var(--space-5);
    padding-block: var(--space-6);
  }

  .process-marker {
    width: 2.75rem;
    height: 2.75rem;
  }

  .process-list h3 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

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

  .reason,
  .reason-wide,
  .reason-last,
  .reason:not(.reason-wide) {
    min-height: auto;
    padding: var(--space-8);
  }

  .reason h3 {
    font-size: 1.25rem;
  }

  .faq-intro svg {
    display: none;
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 2.75rem;
    min-height: 5.5rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .cta-parcel {
    width: min(100%, 20rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .cta-actions {
    gap: var(--space-3);
  }

  .hero-actions .button,
  .cta-actions .button,
  .hero-actions .text-link,
  .cta-actions .text-link {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions .button,
  .cta-actions .button {
    line-height: 1.3;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 2.4rem;
    height: 2.4rem;
  }

  .brand-copy strong {
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.3rem);
  }

  .process-list li {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: var(--space-4);
  }

  .process-marker {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy {
    animation: none;
  }
}

/* Hero title hierarchy */
.hero h1 {
  max-width: 14ch;
  margin-bottom: var(--space-5);
  font-size: clamp(3.2rem, 4.5vw, 4.25rem);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 34ch;
  margin: 0 0 var(--space-8);
  color: rgb(245 242 235 / 82%);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.hero-subtitle span {
  display: inline;
}

.hero-subtitle span + span::before {
  content: " ";
}

@media (max-width: 767px) {
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .hero-subtitle {
    max-width: 28ch;
    font-size: 1.05rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.35rem;
  }
}

/* Let every page heading use the full width of its layout column. */
main h1,
main h2,
main h3 {
  max-width: none;
}

/* Single-column centered reading flow. */
.hero-grid,
.summary-copy,
.dispute-types .container,
.case-groups,
.process-grid,
.reasons-grid,
.faq-grid,
.cta-grid,
.resolution-paths {
  grid-template-columns: 1fr;
}

main .container {
  text-align: center;
}

.hero-copy,
.summary-copy,
.section-heading,
.process-intro,
.faq-intro,
.cta-copy {
  width: min(100%, 72rem);
  margin-inline: auto;
  text-align: center;
}

.summary-copy h2,
.summary-copy > p,
.summary-copy .section-lead,
.summary-copy > p:last-child,
.summary-subtitle {
  grid-column: 1;
  grid-row: auto;
  max-width: 72ch;
  margin-inline: auto;
}

.summary-copy h2,
.summary-copy .section-lead,
.summary-subtitle {
  max-width: 100%;
}

.hero-actions,
.cta-actions {
  justify-content: center;
}

.hero-benefits {
  grid-template-columns: 1fr;
  max-width: 44rem;
  margin-inline: auto;
}

.hero-benefits p,
.hero-benefits p + p {
  padding: var(--space-4) 0;
  border-left: 0;
  border-bottom: 1px solid rgb(245 242 235 / 22%);
}

.case-groups {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.case-group-large {
  grid-column: auto;
}

.case-group-large ul {
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-inline: auto;
}

.case-group li {
  display: block;
  text-align: center;
}

.case-group li::before {
  display: inline-block;
  margin: 0 0.6rem 0.1rem 0;
}

.process-intro,
.faq-intro {
  position: static;
}

.process-intro svg,
.faq-intro svg,
.cta-parcel {
  margin-inline: auto;
}

.process-list,
.faq-list {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.process-list h3,
.process-list p,
.faq-list summary,
.faq-answer,
.reason h3,
.cta-copy p {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.reasons-grid {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.reason,
.reason-wide,
.reason-last,
.reason:not(.reason-wide) {
  grid-column: auto;
  border-right: 0;
  border-left: 0;
}

.reason::before {
  margin-inline: auto;
}

.faq-answer {
  padding-right: 0;
}

.cta-copy {
  grid-column: auto;
}

.footer-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.footer-contact {
  justify-items: center;
  text-align: center;
}

/* Final hero polish: keep the viewport clean and the focal copy readable. */
html,
body {
  overflow-x: clip;
}

.header-shell,
.brand,
.brand-copy,
.primary-nav {
  min-width: 0;
}

.hero-copy {
  max-width: 64rem;
}

.hero h1,
.hero-subtitle {
  text-shadow: 0 2px 22px rgb(0 0 0 / 30%);
}

.hero h1 {
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero-copy {
    max-width: 78rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.7rem, 4.5vw, 5rem);
    letter-spacing: -0.045em;
    line-height: 0.96;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .hero-subtitle {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .hero h1,
  .hero-subtitle {
    white-space: normal;
    text-wrap: balance;
  }
}

/* Editorial service summary: centered composition, readable prose. */
.service-summary {
  scroll-margin-top: calc(var(--header-height) + var(--space-4));
  padding-block: clamp(6.5rem, 10vw, 9rem);
}

.service-summary .summary-copy {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 68rem);
  row-gap: 0;
  margin-inline: auto;
}

.service-summary .summary-copy h2 {
  grid-column: 1;
  grid-row: auto;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2.75rem, 4vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-align: center;
}

.service-summary .summary-copy .section-lead {
  grid-column: 1;
  width: min(100%, 48rem);
  max-width: 48rem;
  margin: var(--space-6) auto 0;
  color: var(--primary);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.42;
  text-align: center;
}

.service-summary .summary-copy > p:not(.section-lead) {
  grid-column: 1;
  width: min(100%, 65ch);
  max-width: 65ch;
  margin: var(--space-10) auto 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
  text-align: left;
  text-wrap: pretty;
}

.service-summary .summary-subtitle {
  grid-column: 1;
  width: min(100%, 65ch);
  max-width: 65ch;
  margin: var(--space-16) auto 0;
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: left;
}

.service-summary .summary-subtitle + p {
  margin-top: var(--space-6);
}

.service-summary .summary-copy > p:last-child {
  margin-top: var(--space-6);
}

@media (max-width: 767px) {
  .service-summary {
    padding-block: clamp(5rem, 16vw, 6.5rem);
  }

  .service-summary .summary-copy h2 {
    font-size: clamp(2.4rem, 10vw, 3.25rem);
  }

  .service-summary .summary-copy > p:not(.section-lead) {
    font-size: 1rem;
    line-height: 1.75;
  }

  .service-summary .summary-subtitle {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
  }
}

/* Reference-inspired introduction: visual evidence beside focused legal copy. */
.service-summary .container {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(var(--space-12), 7vw, 7rem);
  text-align: left;
}

.summary-visual {
  position: relative;
  align-self: stretch;
  min-height: 38rem;
  margin: 0;
  overflow: hidden;
  background: var(--primary);
}

.summary-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 18%);
  pointer-events: none;
}

.summary-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.service-summary .summary-copy {
  width: 100%;
  margin: 0;
  text-align: left;
}

.service-summary .summary-copy h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.65rem, 4vw, 4rem);
  text-align: left;
}

.service-summary .summary-copy .section-lead {
  width: 100%;
  max-width: 36rem;
  margin: var(--space-6) 0 0;
  text-align: left;
}

.service-summary .summary-copy > p:not(.section-lead),
.service-summary .summary-subtitle {
  width: 100%;
  max-width: 62ch;
  margin-inline: 0;
}

@media (max-width: 767px) {
  .service-summary .container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .summary-visual {
    width: min(100%, 46rem);
    min-height: auto;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
  }

  .service-summary .summary-copy {
    width: min(100%, 46rem);
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .service-summary .container {
    gap: var(--space-10);
  }

  .summary-visual {
    aspect-ratio: 5 / 4;
  }

  .service-summary .summary-copy h2,
  .service-summary .summary-copy .section-lead {
    max-width: none;
    text-align: center;
  }
}

/* Dispute types: content on the left, section heading on the right. */
@media (min-width: 768px) {
  .dispute-types .container {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
    align-items: start;
    gap: clamp(var(--space-12), 6vw, 6rem);
    text-align: left;
  }

  .dispute-types .case-groups {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .dispute-types .section-heading {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .dispute-types .section-heading h2 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(2.8rem, 4vw, 4.25rem);
    line-height: 0.98;
    text-align: left;
  }

  .dispute-types .case-group-large ul {
    grid-template-columns: 1fr;
    max-width: 38rem;
    margin: 0;
  }

  .dispute-types .case-group li {
    display: grid;
    grid-template-columns: 0.6rem minmax(0, 1fr);
    gap: var(--space-3);
    text-align: left;
  }

  .dispute-types .case-group li::before {
    display: block;
    margin: 0.35rem 0 0;
  }
}

@media (max-width: 767px) {
  .dispute-types .container {
    grid-template-columns: 1fr;
  }

  .dispute-types .section-heading {
    grid-row: 1;
    width: min(100%, 46rem);
    margin-inline: auto;
  }

  .dispute-types .case-groups {
    grid-row: 2;
    width: min(100%, 46rem);
    margin: var(--space-10) auto 0;
  }
}

/* Alternating desktop sections: right / left / right / left / right headings. */
@media (min-width: 768px) {
  .process-grid,
  .faq-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1.42fr);
    align-items: start;
    gap: clamp(var(--space-12), 7vw, 7rem);
    text-align: left;
  }

  .process-intro,
  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .process-list,
  .faq-list {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .process-intro h2,
  .faq-intro h2 {
    max-width: 10ch;
    margin: 0;
    text-align: left;
  }

  .process-list h3,
  .process-list p,
  .faq-list summary,
  .faq-answer,
  .faq-answer p {
    margin-inline: 0;
    text-align: left;
  }

  .reasons .container {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(18rem, 0.58fr);
    align-items: start;
    gap: clamp(var(--space-12), 7vw, 7rem);
    text-align: left;
  }

  .reasons-grid {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .reasons-heading {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .reasons-heading h2 {
    max-width: 10ch;
    margin: 0;
    text-align: left;
  }

  .reasons .reason h3 {
    margin-inline: 0;
    text-align: left;
  }

  .reasons .reason::before {
    margin-inline: 0;
  }

  .cta-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: clamp(var(--space-12), 7vw, 7rem);
    text-align: left;
  }

  .cta-parcel {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .cta-copy {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .cta-copy h2,
  .cta-copy p {
    margin-inline: 0;
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .process-grid,
  .reasons .container,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .reasons-heading,
  .faq-intro,
  .cta-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .process-list,
  .reasons-grid,
  .faq-list,
  .cta-parcel {
    grid-column: 1;
    grid-row: 2;
  }
}

.whatsapp-float {
  position: fixed;
  right: max(1.5rem, env(safe-area-inset-right));
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  z-index: 50;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 30px rgb(5 28 18 / 28%);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -0.2rem;
  z-index: -1;
  border: 2px solid #25d366;
  border-radius: inherit;
  opacity: 0;
  animation: whatsapp-attention 3.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

@keyframes whatsapp-attention {
  0%,
  46%,
  100% {
    opacity: 0;
    transform: scale(0.9);
  }

  7% {
    opacity: 0.58;
    transform: scale(1);
  }

  20% {
    opacity: 0;
    transform: scale(1.42);
  }

  25% {
    opacity: 0;
    transform: scale(0.92);
  }

  31% {
    opacity: 0.42;
    transform: scale(1);
  }

  43% {
    opacity: 0;
    transform: scale(1.32);
  }
}

.whatsapp-float:hover {
  background: #1fbd59;
  box-shadow: 0 16px 34px rgb(5 28 18 / 34%);
  transform: translateY(-3px);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  opacity: 0;
  animation-play-state: paused;
}

.whatsapp-float:active {
  transform: translateY(0) scale(0.96);
}

.whatsapp-float:focus-visible {
  outline-color: #ffffff;
  box-shadow: 0 0 0 5px rgb(13 43 82 / 70%), 0 12px 30px rgb(5 28 18 / 28%);
}

.whatsapp-float svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: currentColor;
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }

  .whatsapp-float::before {
    display: none;
    animation: none;
  }
}

/* Stronger navbar brand hierarchy. */
.brand-copy strong {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  letter-spacing: 0.045em;
}

@media (max-width: 767px) {
  .brand-copy strong {
    font-size: 0.86rem;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    font-size: 0.78rem;
  }
}

/* Final mobile composition pass. */
@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-space: clamp(4.25rem, 14vw, 5.5rem);
  }

  .header-shell {
    gap: var(--space-3);
  }

  .brand {
    max-width: calc(100vw - 6.5rem);
    gap: var(--space-3);
  }

  .brand-logo {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-copy strong {
    font-size: clamp(0.78rem, 3.3vw, 0.9rem);
    letter-spacing: 0.035em;
  }

  .brand-copy span {
    display: none;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }

  .hero {
    min-height: auto;
    padding-block: calc(var(--header-height) + var(--space-12)) var(--space-16);
    background-position: 62% center;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 10ch;
    margin-inline: auto;
    margin-bottom: var(--space-5);
    font-size: clamp(2.25rem, 9.5vw, 2.85rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 27ch;
    margin: 0 auto var(--space-8);
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    width: min(100%, 22rem);
    margin-inline: auto;
    gap: var(--space-3);
  }

  .hero-actions .button {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1rem;
  }

  .hero-actions .button-secondary-hero {
    font-size: 0.78rem;
  }

  .service-summary {
    padding-block: var(--space-16) var(--space-20);
  }

  .service-summary .container {
    gap: var(--space-8);
  }

  .summary-visual {
    aspect-ratio: 16 / 10;
  }

  .summary-copy h2,
  .section-heading h2,
  .process-intro h2,
  .reasons-heading h2,
  .faq-intro h2,
  .cta-copy h2 {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .whatsapp-float {
    width: 3.25rem;
    height: 3.25rem;
  }

  .whatsapp-float svg {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.45rem);
  }

  .hero-actions .button-secondary-hero {
    font-size: 0.73rem;
  }
}

/* Complete mobile layout: compact editorial flow across every section. */
@media (max-width: 767px) {
  :root {
    --section-space: 3.75rem;
  }

  main .section {
    padding-block: var(--section-space);
  }

  main .container {
    width: min(100% - 2rem, var(--container));
    text-align: left;
  }

  .summary-copy,
  .section-heading,
  .process-intro,
  .reasons-heading,
  .faq-intro,
  .cta-copy {
    width: 100%;
    margin-inline: 0;
    text-align: left;
  }

  .summary-copy h2,
  .section-heading h2,
  .process-intro h2,
  .reasons-heading h2,
  .faq-intro h2,
  .cta-copy h2 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2rem, 8vw, 2.35rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-align: left;
    text-wrap: balance;
  }

  .service-summary {
    padding-block: var(--section-space);
  }

  .service-summary .container {
    gap: 1.75rem;
  }

  .summary-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0;
  }

  .service-summary .summary-copy {
    display: block;
    width: 100%;
  }

  .service-summary .summary-copy h2,
  .service-summary .summary-copy .section-lead,
  .service-summary .summary-copy > p:not(.section-lead),
  .service-summary .summary-subtitle {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }

  .service-summary .summary-copy h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .service-summary .summary-copy .section-lead {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .service-summary .summary-copy > p:not(.section-lead) {
    margin-bottom: 1.25rem;
    font-size: 0.96rem;
    line-height: 1.72;
    text-align: left;
  }

  .service-summary .summary-subtitle {
    margin: 2rem 0 1rem;
    padding-top: 1.5rem;
    font-size: 1.55rem;
  }

  .dispute-types .container,
  .process-grid,
  .reasons .container,
  .faq-grid,
  .cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .dispute-types .section-heading,
  .process-intro,
  .reasons-heading,
  .faq-intro,
  .cta-copy {
    position: static;
    grid-column: 1;
    grid-row: 1;
  }

  .dispute-types .case-groups,
  .process-list,
  .reasons-grid,
  .faq-list,
  .cta-parcel {
    grid-column: 1;
    grid-row: 2;
  }

  .dispute-types .case-groups {
    display: grid;
    width: 100%;
    margin: 0;
    border-color: var(--line);
  }

  .case-group,
  .case-group-large,
  .case-group-small {
    display: block;
    min-height: 0;
    padding: 1.25rem 1.1rem;
  }

  .case-group-large ul,
  .case-group ul {
    display: block;
    max-width: none;
    margin: 0;
  }

  .case-group li {
    display: grid;
    grid-template-columns: 0.45rem minmax(0, 1fr);
    gap: 0.7rem;
    padding-block: 0.65rem;
    font-size: 0.96rem;
    font-weight: 650;
    line-height: 1.45;
    text-align: left;
  }

  .case-group li::before {
    display: block;
    width: 0.42rem;
    height: 0.42rem;
    margin: 0.42rem 0 0;
  }

  .case-group svg {
    display: none;
  }

  .process-intro svg,
  .faq-intro svg {
    display: none;
  }

  .process-list {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    min-height: 0;
    padding: 1.4rem 0;
  }

  .process-list li:last-child {
    padding-bottom: 1.4rem;
  }

  .process-marker {
    width: 2.5rem;
    height: 2.5rem;
  }

  .process-list h3 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.45rem, 6.2vw, 1.8rem);
    line-height: 1.08;
    text-align: left;
  }

  .process-list p {
    max-width: none;
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    text-align: left;
  }

  .reasons-heading h2 {
    max-width: 11ch;
  }

  .reasons-grid {
    display: grid;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .reason,
  .reason-wide,
  .reason-last,
  .reason:not(.reason-wide) {
    min-height: 0;
    padding: 1.4rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .reason::before {
    width: 2rem;
    margin: 0 0 0.85rem;
  }

  .reason h3 {
    max-width: none;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.5;
    text-align: left;
  }

  .faq-list {
    width: 100%;
    margin: 0;
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 2.35rem;
    gap: 1rem;
    min-height: 0;
    padding-block: 1.25rem;
    font-size: 1rem;
    line-height: 1.45;
    text-align: left;
  }

  .faq-indicator {
    width: 2.35rem;
    height: 2.35rem;
  }

  .faq-answer {
    max-width: none;
    padding: 0 3.35rem 1.25rem 0;
    font-size: 0.94rem;
    line-height: 1.65;
    text-align: left;
  }

  .faq-answer p {
    margin: 0;
    text-align: left;
  }

  .final-cta {
    padding-block: 4rem;
  }

  .cta-copy h2 {
    margin-bottom: 1.25rem;
  }

  .cta-copy p {
    max-width: none;
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: left;
  }

  .cta-actions {
    align-items: stretch;
    width: 100%;
    margin-top: 1.75rem;
  }

  .cta-actions .button,
  .cta-actions .text-link {
    width: 100%;
    max-width: 22rem;
  }

  .cta-actions .text-link {
    overflow-wrap: anywhere;
    text-align: left;
  }

  .cta-parcel {
    width: min(70vw, 16rem);
    margin: 0 auto;
  }

  .site-footer {
    padding-block: 2rem 5.5rem;
  }

  .footer-grid {
    gap: 1rem;
    justify-items: start;
    text-align: left;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .whatsapp-float {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    width: 3rem;
    height: 3rem;
    box-shadow: 0 8px 22px rgb(5 28 18 / 24%);
  }

  .whatsapp-float svg {
    width: 1.55rem;
    height: 1.55rem;
  }
}

@media (max-width: 380px) {
  main .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .summary-copy h2,
  .section-heading h2,
  .process-intro h2,
  .reasons-heading h2,
  .faq-intro h2,
  .cta-copy h2 {
    font-size: 1.95rem;
  }

  .process-list li {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .process-marker {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Hero always fills one complete viewport on mobile and desktop. */
.hero {
  min-height: 100vh;
  min-height: 100svh;
}

@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .summary-visual,
  .cta-parcel {
    display: none;
  }

  .scroll-cue {
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    display: grid;
    opacity: 0.78;
  }

  @supports (height: 100dvh) {
    .hero {
      min-height: 100dvh;
    }
  }
}

/* Tablet keeps the desktop composition with a compact desktop header. */
@media (min-width: 768px) and (max-width: 1080px) {
  :root {
    --gutter: clamp(1.25rem, 2.5vw, 2rem);
  }

  .header-shell {
    grid-template-columns: minmax(11.5rem, 0.85fr) minmax(0, 1.35fr) auto;
    gap: clamp(0.65rem, 1.35vw, 1rem);
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-logo {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-copy {
    max-width: 13rem;
  }

  .brand-copy strong {
    font-size: clamp(0.7rem, 1.35vw, 0.82rem);
    letter-spacing: 0.04em;
  }

  .brand-copy span {
    font-size: 0.55rem;
    line-height: 1.25;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-content: normal;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.55rem, 1.25vw, 1rem);
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    border: 0;
    color: inherit;
    font-family: var(--font-body);
    font-size: clamp(0.66rem, 1.15vw, 0.78rem);
    font-weight: 650;
  }

  .primary-nav a::after {
    display: block;
  }

  .header-cta {
    grid-column: 3;
    grid-row: 1;
    min-height: 2.65rem;
    margin: 0;
    padding-inline: clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(0.66rem, 1.15vw, 0.76rem);
  }

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

  .hero h1 {
    font-size: clamp(2.7rem, 5.4vw, 4.25rem);
  }

  .service-summary .container,
  .dispute-types .container,
  .process-grid,
  .reasons .container,
  .faq-grid,
  .cta-grid {
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

/* Review notes: stronger service name, highlighted subject, and justified service copy. */
.brand-copy strong {
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  letter-spacing: 0.025em;
}

.hero h1 span:last-child {
  color: var(--accent);
}

.hero h1 span:last-child::after {
  width: 100%;
}

.title-highlight {
  position: relative;
  display: inline;
  color: var(--primary);
  white-space: nowrap;
}

.title-highlight::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.09em;
  left: 0;
  height: 0.08em;
  background: var(--accent);
}

.service-summary .summary-copy > p:not(.section-lead) {
  hyphens: auto;
  text-align: justify;
  text-align-last: left;
}

@media (max-width: 767px) {
  .brand-copy strong {
    font-size: clamp(0.86rem, 3.6vw, 1rem);
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(2.05rem, 9.2vw, 2.35rem);
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 span + span::before {
    content: none;
  }

  .hero h1 span:last-child {
    width: fit-content;
    margin-inline: auto;
    white-space: nowrap;
  }

  .service-summary .summary-copy > p:not(.section-lead) {
    text-align: justify;
    text-align-last: left;
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    font-size: 0.82rem;
  }
}

/* Desktop hero follows the balanced two-line hierarchy used on mobile. */
@media (min-width: 768px) {
  .hero-copy {
    width: min(100%, 60rem);
    max-width: 60rem;
  }

  .hero h1 {
    max-width: 60rem;
    margin-inline: auto;
    font-size: clamp(3.25rem, 5vw, 4.75rem);
    line-height: 0.92;
    white-space: normal;
    text-wrap: balance;
  }

  .hero h1 span {
    display: block;
  }

  .hero h1 span + span::before {
    content: none;
  }

  .hero h1 span:last-child {
    width: fit-content;
    margin: 0.12em auto 0;
    white-space: nowrap;
  }

  .hero-subtitle {
    max-width: 44rem;
    margin-inline: auto;
    white-space: normal;
    text-wrap: balance;
  }
}
