:root {
    --paper: oklch(0.985 0.006 255);
    --paper-blue: oklch(0.955 0.018 252);
    --ink: oklch(0.245 0.055 258);
    --ink-muted: oklch(0.47 0.045 257);
    --blue-950: oklch(0.265 0.145 258);
    --blue-900: oklch(0.32 0.175 258);
    --blue-800: oklch(0.39 0.19 257);
    --blue-700: oklch(0.47 0.19 255);
    --blue-100: oklch(0.92 0.045 252);
    --line: oklch(0.82 0.022 255);
    --green: oklch(0.68 0.18 150);
    --green-dark: oklch(0.42 0.13 150);
    --shadow: 0 24px 70px oklch(0.24 0.07 258 / 0.18);
    --font-body: "Archivo", "Aptos", "Segoe UI", sans-serif;
    --font-display: "Archivo Narrow", "Arial Narrow", sans-serif;
    --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
    --section-space: clamp(5rem, 10vw, 9.5rem);
    --max-width: 82rem;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

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

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

:focus-visible {
    outline: 3px solid oklch(0.75 0.17 84);
    outline-offset: 4px;
}

::selection {
    background: var(--blue-100);
    color: var(--blue-950);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    background: var(--paper);
    color: var(--blue-950);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 180ms var(--ease-out);
}

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

.topline {
    display: grid;
    min-height: 2.4rem;
    place-items: center;
    padding: 0.45rem var(--page-gutter);
    background: var(--blue-950);
    color: var(--paper);
}

.topline p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

.topline svg {
    width: 1rem;
    fill: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    min-height: 5.4rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.8rem var(--page-gutter);
    border-bottom: 1px solid var(--line);
    background: oklch(0.985 0.006 255 / 0.97);
}

.brand {
    display: inline-flex;
    flex: none;
    flex-direction: column;
    color: var(--blue-950);
    text-decoration: none;
}

.brand__name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 0.92;
}

.brand__role {
    margin-top: 0.36rem;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2.5vw, 2.4rem);
}

.site-nav > a:not(.button) {
    position: relative;
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 2px;
    background: var(--blue-800);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease-out);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    min-width: 3rem;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle__icon {
    display: grid;
    gap: 0.28rem;
    width: 1.1rem;
}

.menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 200ms var(--ease-out);
}

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

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

.button {
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    background: var(--blue-900);
    color: var(--paper);
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.button:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}

.button svg {
    width: 1.2rem;
    fill: currentColor;
}

.button--small {
    min-height: 2.85rem;
    padding: 0.65rem 1rem;
    font-size: 0.76rem;
}

.button--primary {
    background: var(--blue-900);
}

.button--light {
    background: var(--paper);
    color: var(--blue-950);
}

.button--light:hover {
    background: var(--blue-100);
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    color: var(--blue-900);
    font-weight: 750;
    text-decoration-color: currentColor;
}

.eyebrow {
    margin: 0 0 1.35rem;
    color: var(--blue-800);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow--light {
    color: oklch(0.86 0.08 250);
}

.hero {
    position: relative;
    display: grid;
    min-height: min(49rem, calc(100svh - 7.8rem));
    grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
    overflow: clip;
    background: var(--paper);
}

.hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 51rem;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4.5rem, 9vw, 8rem) var(--page-gutter);
}

.hero h1 {
    max-width: 12ch;
    margin: 0;
    color: var(--blue-950);
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 8.2vw, 8.6rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.8;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    margin-top: 0.12em;
    color: var(--blue-700);
    font-size: 0.68em;
}

.hero__lead {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: var(--ink-muted);
    font-size: clamp(1.06rem, 1.5vw, 1.25rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.25rem;
}

.hero__assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.45rem;
    margin: 2.5rem 0 0;
    padding: 0;
    color: var(--ink-muted);
    list-style: none;
}

.hero__assurances li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero__assurances svg {
    width: 1.2rem;
    height: 1.2rem;
    padding: 0.12rem;
    border-radius: 50%;
    background: var(--blue-100);
    fill: var(--blue-800);
}

.hero__visual {
    position: relative;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2vw, 2rem);
    overflow: hidden;
    background: var(--blue-900);
}

.hero__photo-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 24rem);
    overflow: hidden;
    background: var(--blue-900);
    box-shadow: var(--shadow);
    line-height: 0;
}

.hero__photo-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.trust-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.4rem var(--page-gutter);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper-blue);
}

.trust-band p {
    margin: 0;
    color: var(--blue-900);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.trust-band ul {
    display: flex;
    gap: clamp(1rem, 4vw, 4rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust-band li {
    position: relative;
    padding-left: 1rem;
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust-band li::before {
    position: absolute;
    top: 0.56em;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--blue-700);
    content: "";
}

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

.section-heading {
    max-width: 53rem;
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2,
.entities h2,
.faq h2,
.final-cta h2,
.content-page__header h1,
.not-found h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-transform: uppercase;
}

.section-heading > p:last-child,
.section-heading--split > p,
.entities__intro > p:last-child,
.faq__intro > p:last-child,
.content-page__header > p:last-child {
    max-width: 41rem;
    margin: 1.6rem 0 0;
    color: var(--ink-muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.section-heading--split {
    display: grid;
    max-width: var(--max-width);
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.55fr);
    align-items: end;
    gap: clamp(2rem, 7vw, 7rem);
}

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

.section-heading--split > p {
    margin: 0 0 0.4rem;
}

.services {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.service {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr) minmax(11rem, 15rem);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: clamp(1.8rem, 3.5vw, 3.2rem) 0;
    border-top: 1px solid var(--line);
}

.service__number {
    margin: 0;
    color: var(--blue-700);
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.service h3 {
    margin: 0;
    color: var(--blue-950);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.7rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 0.95;
    text-transform: uppercase;
}

.service__body p {
    max-width: 46rem;
    margin: 0.9rem 0 0;
    color: var(--ink-muted);
}

.service > a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--blue-900);
    font-size: 0.82rem;
    font-weight: 750;
}

.service > a span {
    font-size: 1.25rem;
}

.entities {
    display: grid;
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 8vw, 8rem);
    background: var(--blue-950);
    color: var(--paper);
}

.entities__intro {
    max-width: 36rem;
}

.entities h2 {
    font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.entities__intro > p:last-child {
    color: oklch(0.82 0.025 252);
}

.entity-list {
    display: grid;
    align-content: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid oklch(0.7 0.05 255 / 0.35);
    list-style: none;
}

.entity-list li {
    display: flex;
    min-height: 4.6rem;
    align-items: center;
    padding: 0.8rem 1rem 0.8rem 0;
    border-bottom: 1px solid oklch(0.7 0.05 255 / 0.35);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.1vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.entity-list li:nth-child(even) {
    padding-left: clamp(1rem, 4vw, 3.5rem);
    border-left: 1px solid oklch(0.7 0.05 255 / 0.35);
}

.process {
    max-width: var(--max-width);
    margin: 0 auto;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.process-list li {
    min-height: 19rem;
    padding: 2rem clamp(1.2rem, 3vw, 3rem) 2rem 0;
}

.process-list li + li {
    padding-left: clamp(1.2rem, 3vw, 3rem);
    border-left: 1px solid var(--line);
}

.process-list > li > span {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border: 1px solid var(--blue-800);
    border-radius: 50%;
    color: var(--blue-900);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.process-list h3 {
    max-width: 12ch;
    margin: 4.8rem 0 0.8rem;
    color: var(--blue-950);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.process-list p {
    max-width: 29rem;
    margin: 0;
    color: var(--ink-muted);
}

.articles {
    background: var(--paper-blue);
}

.articles > * {
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
}

.articles .section-heading--split {
    align-items: end;
}

.articles .section-heading--split .text-link {
    justify-self: end;
}

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

.article-preview {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr) 3rem;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
    padding: clamp(1.8rem, 3vw, 2.8rem) 0;
    border-top: 1px solid var(--line);
}

.article-preview__index {
    margin: 0;
    color: var(--blue-700);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.article-meta {
    margin: 0 0 0.6rem;
    color: var(--ink-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-preview h3 {
    max-width: 29ch;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.article-preview h3 a {
    text-decoration: none;
}

.article-preview h3 a:hover {
    color: var(--blue-700);
}

.article-preview > div > p:last-child {
    max-width: 48rem;
    margin: 0.85rem 0 0;
    color: var(--ink-muted);
}

.article-preview__arrow {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue-900);
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.article-preview__arrow:hover {
    background: var(--blue-900);
    color: var(--paper);
    transform: translateY(-2px);
}

.faq {
    display: grid;
    max-width: var(--max-width);
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 8vw, 8rem);
    margin: 0 auto;
}

.faq__intro {
    max-width: 32rem;
}

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

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

.faq summary {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    color: var(--blue-950);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.1vw, 1.8rem);
    font-weight: 700;
    line-height: 1.1;
    list-style: none;
    text-transform: uppercase;
}

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

.faq summary span {
    flex: none;
    color: var(--blue-700);
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 400;
    transition: transform 200ms var(--ease-out);
}

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

.faq details p {
    max-width: 46rem;
    margin: -0.3rem 0 1.7rem;
    color: var(--ink-muted);
}

.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
    align-items: end;
    gap: clamp(3rem, 9vw, 9rem);
    padding: clamp(5rem, 10vw, 9rem) var(--page-gutter);
    background: var(--blue-800);
    color: var(--paper);
}

.final-cta h2 {
    max-width: 13ch;
    font-size: clamp(3.5rem, 7vw, 7.4rem);
}

.final-cta__copy > p:last-child {
    max-width: 42rem;
    margin: 1.8rem 0 0;
    color: oklch(0.9 0.025 252);
    font-size: 1.1rem;
}

.final-cta__action {
    padding-bottom: 0.5rem;
}

.final-cta__action .button {
    width: 100%;
}

.final-cta__action > p {
    margin: 1rem 0 0;
    color: oklch(0.9 0.025 252);
    font-size: 0.84rem;
    text-align: center;
}

.final-cta__action > p a {
    color: var(--paper);
    font-weight: 750;
}

.site-footer {
    padding: clamp(4rem, 8vw, 7rem) var(--page-gutter) 1.5rem;
    background: oklch(0.19 0.07 258);
    color: oklch(0.9 0.02 252);
}

.site-footer__main {
    display: grid;
    max-width: var(--max-width);
    grid-template-columns: minmax(0, 1.3fr) 0.6fr 0.7fr;
    gap: clamp(2.5rem, 8vw, 8rem);
    margin: 0 auto;
}

.brand--footer {
    color: var(--paper);
}

.site-footer__summary {
    max-width: 29rem;
    margin: 1.7rem 0 0;
    color: oklch(0.76 0.025 252);
}

.site-footer .eyebrow {
    margin-bottom: 1.1rem;
    color: oklch(0.74 0.085 250);
}

.site-footer__links,
.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.site-footer__links a,
.site-footer__contact a {
    color: var(--paper);
    text-decoration-color: oklch(0.74 0.085 250);
}

.footer-phone {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
}

.site-footer__contact > p:last-child {
    margin: 0.65rem 0 0;
    color: oklch(0.76 0.025 252);
    font-size: 0.84rem;
}

.site-footer__legal {
    display: flex;
    max-width: var(--max-width);
    justify-content: space-between;
    gap: 2rem;
    margin: clamp(4rem, 7vw, 7rem) auto 0;
    padding-top: 1.3rem;
    border-top: 1px solid oklch(0.68 0.04 255 / 0.3);
    color: oklch(0.68 0.02 252);
    font-size: 0.68rem;
    line-height: 1.5;
}

.site-footer__legal p {
    max-width: 39rem;
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    z-index: 90;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.9rem;
    border: 2px solid var(--paper);
    border-radius: 999px;
    background: var(--green-dark);
    box-shadow: 0 12px 35px oklch(0.2 0.05 255 / 0.3);
    color: oklch(0.98 0.01 150);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.whatsapp-float:hover {
    background: oklch(0.48 0.15 150);
    transform: translateY(-2px);
}

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

.content-page,
.article-page,
.not-found {
    min-height: 65vh;
    padding: clamp(4rem, 8vw, 8rem) var(--page-gutter) var(--section-space);
}

.content-page__header,
.post-grid,
.article,
.not-found {
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
}

.content-page__header {
    max-width: 64rem;
    margin-bottom: clamp(3rem, 7vw, 6rem);
    margin-left: 0;
}

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

.post-card {
    min-height: 22rem;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem) 0;
    border-bottom: 1px solid var(--line);
}

.post-card:nth-child(even) {
    padding-right: 0;
    padding-left: clamp(1.5rem, 4vw, 4rem);
    border-left: 1px solid var(--line);
}

.post-card h2 {
    margin: 1.4rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.95;
    text-transform: uppercase;
}

.post-card h2 a {
    text-decoration: none;
}

.post-card h2 a:hover {
    color: var(--blue-700);
}

.post-card > p:not(.article-meta) {
    max-width: 38rem;
    color: var(--ink-muted);
}

.pagination {
    grid-column: 1 / -1;
    padding-top: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.page-numbers {
    display: grid;
    min-width: 2.8rem;
    min-height: 2.8rem;
    place-items: center;
    padding: 0.5rem;
    border: 1px solid var(--line);
    text-decoration: none;
}

.page-numbers.current {
    border-color: var(--blue-900);
    background: var(--blue-900);
    color: var(--paper);
}

.article {
    max-width: 68rem;
}

.back-link {
    display: inline-flex;
    margin-bottom: 3rem;
    color: var(--blue-900);
    font-size: 0.82rem;
    font-weight: 750;
}

.article__header {
    max-width: 60rem;
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--line);
}

.article__header h1 {
    margin: 0 0 2rem;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7.8rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.86;
    text-transform: uppercase;
}

.article__body {
    max-width: 45rem;
    margin: clamp(3rem, 6vw, 5.5rem) auto;
    color: oklch(0.31 0.04 258);
    font-size: clamp(1.05rem, 1.45vw, 1.18rem);
    line-height: 1.85;
}

.article__body h2,
.article__body h3 {
    margin: 2.8em 0 0.7em;
    color: var(--blue-950);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

.article__body h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.article__body h3 {
    font-size: 1.7rem;
}

.article__body li + li {
    margin-top: 0.7rem;
}

.article__body a {
    color: var(--blue-800);
}

.article__cta {
    padding: clamp(2.5rem, 6vw, 5rem);
    background: var(--blue-900);
    color: var(--paper);
}

.article__cta h2 {
    max-width: 15ch;
    margin: 0 0 2rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.95;
    text-transform: uppercase;
}

.not-found {
    max-width: 58rem;
    margin-left: 0;
}

.not-found p:not(.eyebrow) {
    margin: 1.5rem 0 2rem;
    color: var(--ink-muted);
    font-size: 1.1rem;
}

.empty-state {
    padding: 2rem 0;
    color: var(--ink-muted);
}

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

.js .reveal.is-visible {
    animation: reveal-in 650ms var(--ease-out) both;
}

@keyframes reveal-in {
    from {
        opacity: 0.55;
        transform: translateY(1rem);
    }
}

@media (max-width: 1120px) {
    .site-nav {
        gap: 1rem;
    }

    .site-nav > a:not(.button) {
        display: none;
    }

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

    .hero h1 {
        font-size: clamp(4rem, 8.5vw, 7.2rem);
    }

}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 6.5rem;
    }

    .site-header {
        min-height: 4.75rem;
    }

    .site-header > .button {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        z-index: -1;
        top: 7.15rem;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 2rem var(--page-gutter);
        background: var(--paper);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-1rem);
        transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
    }

    .site-nav.is-open {
        z-index: 99;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a:not(.button) {
        display: block;
        padding: 0.65rem 0;
        font-family: var(--font-display);
        font-size: clamp(2.4rem, 9vw, 4rem);
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav .button {
        margin-top: 2rem;
    }

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

    .hero__copy {
        max-width: none;
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: clamp(4rem, 15vw, 7.5rem);
    }

    .trust-band {
        align-items: flex-start;
    }

    .trust-band ul {
        display: grid;
        gap: 0.5rem;
    }

    .section-heading--split,
    .entities,
    .faq,
    .final-cta {
        grid-template-columns: minmax(0, 1fr);
    }

    .entities__intro,
    .entity-list,
    .faq__intro,
    .faq__list {
        min-width: 0;
    }

    .section-heading--split > p {
        margin: 0;
    }

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

    .service > a {
        grid-column: 2;
        justify-content: flex-start;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li {
        display: grid;
        min-height: 0;
        grid-template-columns: 3.5rem minmax(0, 1fr);
        gap: 1rem;
        padding: 2rem 0;
        border-bottom: 1px solid var(--line);
    }

    .process-list li + li {
        padding-left: 0;
        border-left: 0;
    }

    .process-list h3 {
        margin: 0 0 0.8rem;
    }

    .articles .section-heading--split .text-link {
        justify-self: start;
    }

    .final-cta__action {
        max-width: 28rem;
    }

    .site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__main > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .topline p {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .brand__name {
        font-size: 1.45rem;
    }

    .brand__role {
        font-size: 0.52rem;
    }

    .hero__copy {
        padding-top: 4.5rem;
    }

    .hero h1 {
        max-width: 9ch;
        font-size: clamp(3.65rem, 18vw, 6rem);
    }

    .hero h1 span {
        max-width: 100%;
        font-size: 0.7em;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 0.7rem;
    }

    .hero__actions .text-link {
        justify-content: center;
    }

    .hero__assurances {
        display: grid;
    }

    .trust-band {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-band ul {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .entities h2,
    .faq h2,
    .content-page__header h1,
    .not-found h1 {
        font-size: clamp(2.8rem, 14vw, 4.8rem);
    }

    .entities h2 {
        font-size: clamp(2.6rem, 11vw, 4rem);
    }

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

    .service__number {
        font-size: 1.5rem;
    }

    .service > a {
        grid-column: 1;
    }

    .entity-list {
        grid-template-columns: 1fr;
    }

    .entity-list li:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .article-preview {
        grid-template-columns: minmax(0, 1fr) 2.8rem;
    }

    .article-preview__index {
        grid-column: 1 / -1;
        font-size: 1.25rem;
    }

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

    .post-card,
    .post-card:nth-child(even) {
        min-height: 0;
        padding: 2.3rem 0;
        border-left: 0;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__main > div:first-child {
        grid-column: auto;
    }

    .site-footer__legal {
        flex-direction: column;
        gap: 0.8rem;
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        justify-content: center;
        padding: 0;
    }
}

@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;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
