:root {
    --primary: #0F2A44;
    --secondary: #243B53;
    --accent: #C9A227;
    --background: #F5F7FA;
    --surface: #FFFFFF;
    --text: #1F2933;
    --muted-text: #6B7280;
    --border: #D9E1E8;
    --ink: var(--text);
    --ink-2: var(--secondary);
    --muted: var(--muted-text);
    --paper: var(--background);
    --mist: var(--background);
    --white: var(--surface);
    --teal: var(--accent);
    --teal-dark: var(--primary);
    --gold: var(--accent);
    --clay: var(--accent);
    --line: var(--border);
    --shadow: 0 18px 48px color-mix(in srgb, var(--text) 12%, transparent);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 620ms ease, transform 620ms ease, box-shadow 240ms ease, border-color 240ms ease;
        transition-delay: var(--reveal-delay, 0ms);
    }

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--background);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

.rich-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text blockquote {
    margin: 0 0 14px;
}

.rich-text > :last-child {
    margin-bottom: 0;
}

.rich-text a {
    color: var(--accent);
    font-weight: 900;
}

.rich-text h2,
.rich-text h3,
.rich-text h4 {
    margin: 28px 0 12px;
    color: var(--primary);
    line-height: 1.25;
}

.rich-text ul,
.rich-text ol {
    padding-left: 24px;
}

.rich-text figure.image {
    margin: 24px 0;
}

.rich-text figure.image img,
.rich-text > img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.rich-text figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.rich-text table {
    display: block;
    width: 100%;
    margin: 22px 0;
    overflow-x: auto;
    border-collapse: collapse;
}

.rich-text th,
.rich-text td {
    min-width: 120px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.rich-text th {
    color: var(--primary);
    background: var(--background);
}

.rich-text blockquote {
    padding: 16px 20px;
    border-left: 4px solid var(--accent);
    background: var(--background);
}

.rich-text pre {
    max-width: 100%;
    margin: 20px 0;
    padding: 18px;
    overflow-x: auto;
    border-radius: 12px;
    background: #101820;
    color: #f5f7fa;
    font: 14px/1.65 Consolas, "Courier New", monospace;
}

.rich-text :not(pre) > code {
    padding: 2px 6px;
    border-radius: 5px;
    background: var(--background);
    color: var(--primary);
    font-family: Consolas, "Courier New", monospace;
}

.rich-text figure.media {
    position: relative;
    width: 100%;
    margin: 24px 0;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 14px;
    background: #101820;
}

.rich-text figure.media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero__lead,
.page-hero__lead {
    max-width: 680px;
    font-size: 18px;
}

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

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

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--primary) 97%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
    box-shadow: 0 12px 34px color-mix(in srgb, var(--text) 18%, transparent);
    backdrop-filter: blur(18px);
}

.header-container {
    width: min(100% - 48px, 1420px);
}

.topbar {
    border-bottom: 1px solid color-mix(in srgb, var(--surface) 10%, transparent);
    background: color-mix(in srgb, var(--primary) 76%, #071726);
    color: color-mix(in srgb, var(--surface) 86%, transparent);
    font-size: 12px;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    letter-spacing: .02em;
}

.topbar__assurance,
.topbar__contact {
    display: flex;
    align-items: center;
}

.topbar .topbar__assurance-short,
.language-link__short {
    display: none;
}

.topbar__contact {
    gap: 0;
}

.topbar__contact a {
    position: relative;
    padding-inline: 18px;
}

.topbar__contact a:last-child {
    padding-right: 0;
}

.topbar__contact a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    background: color-mix(in srgb, var(--surface) 22%, transparent);
    transform: translateY(-50%);
}

.topbar a,
.topbar span,
.contact-methods a,
.text-link,
.check-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar svg,
.contact-methods svg,
.text-link svg,
.check-list svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.topbar svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.nav-wrap {
    position: relative;
}

.nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 290px;
    overflow: hidden;
}

.brand__mark {
    position: relative;
    display: block;
    width: 60px;
    height: 52px;
    flex: 0 0 60px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 58%, transparent);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 8px 22px color-mix(in srgb, #000 20%, transparent);
}

.brand__mark::before {
    display: none;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand::after {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -45%;
    width: 34%;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 0%, color-mix(in srgb, var(--surface) 8%, transparent) 30%, color-mix(in srgb, var(--surface) 82%, transparent) 50%, color-mix(in srgb, var(--surface) 8%, transparent) 70%, transparent 100%);
    transform: skewX(-18deg);
    animation: logoShine 4.6s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 46% {
        left: -45%;
        opacity: 0;
    }

    52% {
        opacity: 1;
    }

    72%, 100% {
        left: 116%;
        opacity: 0;
    }
}

.brand strong {
    display: block;
    color: var(--white);
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: .02em;
}

.brand__text small {
    display: block;
    max-width: 220px;
    margin-top: 5px;
    color: color-mix(in srgb, var(--surface) 64%, transparent);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .075em;
    text-transform: uppercase;
}

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

.desktop-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1 1 auto;
}

.desktop-nav a,
.nav-dropdown > a {
    position: relative;
    padding: 13px 11px;
    border-radius: 0;
    color: color-mix(in srgb, var(--surface) 78%, transparent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-dropdown > a:hover,
.nav-dropdown > a.is-active {
    color: var(--white);
}

.desktop-nav > a::after,
.nav-dropdown > a::after {
    content: "";
    position: absolute;
    right: 11px;
    bottom: 5px;
    left: 11px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a.is-active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 18px;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a svg {
    width: 15px;
    height: 15px;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    z-index: 60;
    width: 328px;
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--primary) 97%, transparent);
    box-shadow: 0 26px 64px color-mix(in srgb, #000 34%, transparent);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: var(--radius);
    color: color-mix(in srgb, var(--surface) 84%, transparent);
    font-size: 13px;
    font-weight: 800;
}

.nav-dropdown__menu a:hover {
    background: var(--secondary);
    color: var(--surface);
}

.nav-dropdown__menu a.is-active {
    background: color-mix(in srgb, var(--secondary) 78%, transparent);
    color: var(--surface);
}

.nav-dropdown__menu svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex: 0 0 auto;
}

.nav-dropdown--services .nav-dropdown__menu {
    left: 50%;
    width: min(640px, calc(100vw - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translate(-50%, 8px);
}

.nav-dropdown--services:hover .nav-dropdown__menu,
.nav-dropdown--services:focus-within .nav-dropdown__menu {
    transform: translate(-50%, 0);
}

.nav-dropdown--services .nav-dropdown__menu a {
    min-width: 0;
}

.nav-dropdown--services .nav-dropdown__menu a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html[lang="en"] .nav-dropdown--services .nav-dropdown__menu {
    width: min(700px, calc(100vw - 40px));
    row-gap: 4px;
}

html[lang="en"] .nav-dropdown--services .nav-dropdown__menu a:not(.nav-dropdown__all) {
    min-height: 56px;
    padding-block: 10px;
}

html[lang="en"] .nav-dropdown--services .nav-dropdown__menu a span {
    display: -webkit-box;
    line-height: 1.3;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.nav-dropdown--services .nav-dropdown__all {
    grid-column: 1 / -1;
    border-bottom: 1px solid color-mix(in srgb, var(--surface) 12%, transparent);
    border-radius: 0;
    color: var(--accent);
}

.nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 22px;
    border-left: 1px solid color-mix(in srgb, var(--surface) 16%, transparent);
}

.language-link {
    min-width: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid color-mix(in srgb, var(--surface) 20%, transparent);
    border-radius: 999px;
    color: color-mix(in srgb, var(--surface) 88%, transparent);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.language-link:hover {
    border-color: color-mix(in srgb, var(--accent) 64%, transparent);
    color: var(--white);
}

.language-link svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.header-cta {
    min-height: 44px;
    padding-inline: 17px;
    border-radius: 999px;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 18%, transparent);
}

.icon-button {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--surface) 28%, transparent);
    border-radius: var(--radius);
    background: var(--secondary);
    color: var(--white);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(100% - 48px, 720px);
    max-height: calc(100vh - 150px);
    margin: 0 auto 16px;
    overflow-y: auto;
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--primary) 96%, #071726);
    box-shadow: 0 24px 56px color-mix(in srgb, #000 28%, transparent);
}

.mobile-nav a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--surface) 10%, transparent);
    color: color-mix(in srgb, var(--surface) 88%, transparent);
    font-weight: 700;
}

.mobile-nav a:hover {
    padding-left: 24px;
    background: color-mix(in srgb, var(--secondary) 76%, transparent);
    color: var(--white);
}

.mobile-nav > a:last-child {
    border-bottom: 0;
    color: var(--accent);
}

.mobile-nav a.mobile-nav__child {
    padding: 10px 34px;
    color: color-mix(in srgb, var(--surface) 76%, transparent);
    font-size: 13px;
}

.mobile-nav__dropdown {
    border-bottom: 1px solid color-mix(in srgb, var(--surface) 10%, transparent);
}

.mobile-nav__dropdown summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    color: color-mix(in srgb, var(--surface) 88%, transparent);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.mobile-nav__dropdown summary svg {
    width: 17px;
    height: 17px;
    transition: transform 180ms ease;
}

.mobile-nav__dropdown[open] summary {
    background: color-mix(in srgb, var(--secondary) 76%, transparent);
    color: var(--white);
}

.mobile-nav__dropdown[open] summary svg {
    transform: rotate(180deg);
}

.mobile-nav__submenu {
    background: color-mix(in srgb, #071726 42%, transparent);
}

.mobile-nav__submenu a:first-child {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.btn--primary {
    background: var(--teal);
    color: var(--primary);
    border-color: var(--teal);
}

.btn--primary:hover {
    background: var(--teal-dark);
    color: var(--white);
    border-color: var(--teal-dark);
}

.btn--outline {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}

.btn--ghost {
    color: var(--primary);
    border-color: var(--border);
    background: var(--surface);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--text) 8%, transparent);
}

.btn--light {
    background: var(--white);
    color: var(--ink);
}

.btn--small {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 13px;
}

.btn--full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    color: var(--text);
    background:
        radial-gradient(ellipse at 78% 18%, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 34%),
        radial-gradient(ellipse at 18% 28%, color-mix(in srgb, var(--surface) 88%, transparent) 0%, transparent 42%),
        linear-gradient(180deg, var(--background) 0%, color-mix(in srgb, var(--background) 76%, var(--surface)) 76%, var(--surface) 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: -18vw;
    top: -22%;
    width: 68vw;
    height: 68vw;
    border: 34px solid color-mix(in srgb, var(--accent) 18%, transparent);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 42% 58% 48% 52%;
    transform: rotate(-8deg);
    opacity: 0.9;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: -16vw;
    bottom: -34%;
    width: 56vw;
    height: 56vw;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 7%, transparent) 0%, transparent 68%);
    filter: blur(3px);
    opacity: 0.75;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 0.92fr);
    gap: 44px;
    align-items: center;
    padding: 84px 0 46px;
}

.hero__content {
    max-width: 640px;
}

.hero__brandline {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: clamp(28px, 3.1vw, 42px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.hero__brandline span {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 1em;
    line-height: 1;
}

.hero__brandline strong {
    color: inherit;
    font-size: 1em;
    line-height: 1;
}

.eyebrow,
.section-heading span,
.post-card > span,
.post-card__category {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.article-hero__service-link {
    gap: 7px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-hero__service-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.article-hero__service-link:hover {
    color: #fff;
}

.article-hero__service-link:hover svg {
    transform: translate(2px, -2px);
}

.article-hero__service-link:focus-visible {
    border-radius: 3px;
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

.post-card__service-link {
    width: fit-content;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card__service-link:hover {
    color: var(--text);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.post-card__service-link:focus-visible {
    border-radius: 3px;
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 12px 0 18px;
    font-size: clamp(34px, 3.7vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 680px;
    color: color-mix(in srgb, var(--text) 88%, var(--muted-text));
}

.hero p,
.page-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.breadcrumb-wrap {
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.breadcrumb {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--primary);
}

.breadcrumb svg {
    width: 15px;
    height: 15px;
    color: color-mix(in srgb, var(--muted) 70%, transparent);
}

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

.hero__actions .btn {
    min-height: 52px;
    padding-inline: 20px;
}

.hero__visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    isolation: isolate;
}

.hero__visual::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(98%, 510px);
    height: 90%;
    border-radius: 50% 50% 0 0;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--accent) 82%, var(--surface)) 0%, color-mix(in srgb, var(--accent) 18%, var(--surface)) 100%);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--surface) 48%, transparent);
    z-index: -2;
}

.hero__visual::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: 0;
    width: min(82%, 430px);
    height: 78%;
    background:
        linear-gradient(color-mix(in srgb, var(--surface) 12%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--surface) 12%, transparent) 1px, transparent 1px);
    background-size: 34px 34px;
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.hero-portrait {
    width: min(82%, 400px);
    height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
    box-shadow: 0 22px 54px color-mix(in srgb, var(--text) 12%, transparent);
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.96) contrast(1.03);
}

.hero-portrait__fallback {
    width: min(86vw, 380px);
    height: min(86vw, 380px);
    display: grid;
    place-items: center;
    margin-bottom: 52px;
    border: 1px solid color-mix(in srgb, var(--surface) 62%, transparent);
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 92%, var(--secondary));
    color: var(--surface);
    box-shadow: 0 24px 60px color-mix(in srgb, var(--text) 18%, transparent);
}

.hero-portrait__fallback span {
    font-size: 84px;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-card {
    position: absolute;
    width: 166px;
    min-height: 132px;
    padding: 18px 20px;
    border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: 0 18px 44px color-mix(in srgb, var(--text) 13%, transparent);
    backdrop-filter: blur(14px);
}

.hero-card--top {
    top: 25%;
    right: -2%;
}

.hero-card--bottom {
    left: 2%;
    bottom: 19%;
}

.hero-card span,
.hero-card small {
    display: block;
}

.hero-card span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.hero-card strong {
    display: block;
    margin: 16px 0 6px;
    color: var(--primary);
    font-size: 36px;
    line-height: 1;
}

.hero-card strong span {
    color: var(--accent);
    font-size: 0.68em;
}

.hero-card small {
    color: var(--muted);
    font-weight: 700;
}

.hero__trust {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(340px, 0.5fr) minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    min-height: 118px;
    margin-top: -4px;
    padding: 28px 34px 28px 44px;
    border-radius: var(--radius);
    background: var(--primary);
    color: color-mix(in srgb, var(--surface) 74%, transparent);
    box-shadow: 0 22px 46px color-mix(in srgb, var(--primary) 14%, transparent);
}

.hero__trust strong {
    max-width: 500px;
    color: var(--surface);
    font-size: 21px;
    line-height: 1.25;
}

.hero-logo-marquee {
    position: relative;
    min-width: 0;
}

.hero-logo-track {
    display: grid;
    gap: 12px;
    width: 100%;
}

.hero-logo-track p {
    max-width: 1040px;
    margin: 0;
    color: color-mix(in srgb, var(--surface) 76%, transparent);
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.65;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    max-width: 660px;
    margin-top: 38px;
}

.hero__stats div {
    min-height: 96px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--surface) 24%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 10%, transparent);
}

.hero__stats strong,
.hero__stats span {
    display: block;
}

.hero__stats strong {
    font-size: 22px;
    line-height: 1.2;
}

.hero__stats span {
    margin-top: 6px;
    color: color-mix(in srgb, var(--surface) 76%, transparent);
    font-size: 14px;
}

.section {
    padding: 86px 0;
}

.section--tight {
    padding: 24px 0;
}

.section--muted {
    background: var(--surface);
}

.section--ink {
    background: var(--ink);
    color: var(--white);
}

.section--tool {
    background: var(--mist);
}

.section--services-featured {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 92%, var(--background)) 34%, var(--surface) 100%);
    padding-top: 72px;
    padding-bottom: 42px;
}

.section--services-featured::before,
.section--services-featured::after {
    display: none;
}

.section--services-featured::before {
    top: 96px;
}

.section--services-featured::after {
    bottom: 52px;
}

.section--services-featured .container {
    position: relative;
    z-index: 1;
}

.section-heading--compact {
    margin-bottom: 32px;
}

/* Sector discovery page */
.page-hero.sector-page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 82px;
}

.sector-page-hero::after {
    position: absolute;
    right: -120px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    border-radius: 50%;
    box-shadow: 0 0 0 70px color-mix(in srgb, var(--accent) 4%, transparent), 0 0 0 140px color-mix(in srgb, var(--accent) 3%, transparent);
    content: '';
    pointer-events: none;
}

.sector-page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: clamp(52px, 7vw, 108px);
    align-items: center;
}

.sector-page-hero__copy h1 {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.035em;
}

.sector-page-hero__copy > p {
    max-width: 700px;
    color: color-mix(in srgb, var(--surface) 74%, transparent);
    font-size: 18px;
    line-height: 1.65;
}

.sector-page-hero__summary {
    padding: 26px;
    border: 1px solid color-mix(in srgb, var(--surface) 18%, transparent);
    border-radius: 18px;
    background: color-mix(in srgb, var(--primary) 72%, transparent);
    box-shadow: 0 30px 70px color-mix(in srgb, #000 26%, transparent);
    backdrop-filter: blur(18px);
}

.sector-page-hero__summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid color-mix(in srgb, var(--surface) 14%, transparent);
}

.sector-page-hero__summary-head span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sector-page-hero__summary-head svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.sector-page-hero__summary > strong {
    display: block;
    margin-top: 22px;
    color: var(--surface);
    font-size: 72px;
    line-height: .92;
    letter-spacing: -.06em;
}

.sector-page-hero__summary > p {
    max-width: 270px;
    margin: 10px 0 24px;
    color: color-mix(in srgb, var(--surface) 66%, transparent);
    font-size: 14px;
    line-height: 1.5;
}

.sector-page-hero__summary-list {
    display: grid;
    gap: 10px;
}

.sector-page-hero__summary-list span {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    color: color-mix(in srgb, var(--surface) 88%, transparent);
    font-size: 12px;
    font-weight: 700;
}

.sector-page-hero__summary-list svg {
    width: 22px;
    height: 22px;
    padding: 5px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--accent);
}

.sector-explorer-section {
    scroll-margin-top: 110px;
    padding: 92px 0 104px;
    background:
        radial-gradient(circle at 8% 8%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 24%),
        var(--background);
}

.sector-explorer__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 60px;
    align-items: end;
    margin-bottom: 42px;
}

.sector-explorer__intro span,
.sector-next-panel__copy > span {
    display: block;
    margin-bottom: 9px;
    color: color-mix(in srgb, var(--accent) 72%, var(--primary));
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sector-explorer__intro h2 {
    max-width: 720px;
    margin: 0;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.sector-explorer__intro > p {
    margin: 0 0 5px;
    padding-left: 24px;
    border-left: 2px solid var(--accent);
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

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

.sector-profile-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 16px 42px color-mix(in srgb, var(--primary) 6%, transparent);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sector-profile-card::after {
    position: absolute;
    top: -64px;
    right: -64px;
    width: 150px;
    height: 150px;
    border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.sector-profile-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
    box-shadow: 0 24px 58px color-mix(in srgb, var(--primary) 12%, transparent);
}

.sector-profile-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
}

.sector-profile-card--featured {
    border-color: color-mix(in srgb, var(--accent) 30%, var(--primary));
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
        var(--primary);
}

.sector-profile-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.sector-profile-card__head > small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.sector-profile-card__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 9%, var(--surface));
    color: color-mix(in srgb, var(--accent) 74%, var(--primary));
}

.sector-profile-card__icon svg {
    width: 25px;
    height: 25px;
}

.sector-profile-card h2 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -.018em;
}

.sector-profile-card > p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.sector-profile-card__focus {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.sector-profile-card__focus > span {
    display: block;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--accent) 68%, var(--primary));
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sector-profile-card__focus ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sector-profile-card__focus li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--background);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.sector-profile-card__focus li svg {
    width: 13px;
    height: 13px;
    color: color-mix(in srgb, var(--accent) 72%, var(--primary));
}

.sector-profile-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    margin-top: auto;
    padding: 13px 15px;
    border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 7%, var(--surface));
    color: var(--primary);
}

.sector-profile-card__link span {
    min-width: 0;
}

.sector-profile-card__link small,
.sector-profile-card__link strong {
    display: block;
}

.sector-profile-card__link small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sector-profile-card__link strong {
    overflow-wrap: anywhere;
    font-size: 13px;
}

.sector-profile-card__link > svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: color-mix(in srgb, var(--accent) 72%, var(--primary));
    transition: transform 180ms ease;
}

.sector-profile-card__link:hover > svg {
    transform: translate(3px, -3px);
}

.sector-profile-card--featured .sector-profile-card__head > small,
.sector-profile-card--featured > p {
    color: color-mix(in srgb, var(--surface) 66%, transparent);
}

.sector-profile-card--featured h2 {
    color: var(--surface);
}

.sector-profile-card--featured .sector-profile-card__icon {
    border-color: color-mix(in srgb, var(--accent) 34%, transparent);
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    color: var(--accent);
}

.sector-profile-card--featured .sector-profile-card__focus {
    border-top-color: color-mix(in srgb, var(--surface) 14%, transparent);
}

.sector-profile-card--featured .sector-profile-card__focus > span {
    color: var(--accent);
}

.sector-profile-card--featured .sector-profile-card__focus li {
    background: color-mix(in srgb, var(--surface) 9%, transparent);
    color: color-mix(in srgb, var(--surface) 84%, transparent);
}

.sector-profile-card--featured .sector-profile-card__focus li svg {
    color: var(--accent);
}

.sector-profile-card--featured .sector-profile-card__link {
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
    background: color-mix(in srgb, var(--surface) 9%, transparent);
    color: var(--surface);
}

.sector-profile-card--featured .sector-profile-card__link small {
    color: color-mix(in srgb, var(--surface) 55%, transparent);
}

.sector-profile-card--featured .sector-profile-card__link > svg {
    color: var(--accent);
}

.sector-next-section {
    padding: 0 0 104px;
    background: var(--background);
}

.sector-next-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: clamp(44px, 7vw, 100px);
    align-items: center;
    padding: clamp(38px, 6vw, 72px);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
    border-radius: 22px;
    background:
        radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 30%),
        var(--primary);
    color: var(--surface);
    box-shadow: 0 30px 70px color-mix(in srgb, var(--primary) 17%, transparent);
}

.sector-next-panel__copy {
    position: relative;
    z-index: 1;
}

.sector-next-panel__copy > span {
    color: var(--accent);
}

.sector-next-panel__copy h2 {
    margin: 0 0 16px;
    color: var(--surface);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.sector-next-panel__copy p {
    margin: 0 0 25px;
    color: color-mix(in srgb, var(--surface) 69%, transparent);
    line-height: 1.7;
}

.sector-next-panel__steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1px;
    margin: 0;
    padding: 1px;
    border-radius: 15px;
    background: color-mix(in srgb, var(--surface) 13%, transparent);
    list-style: none;
    overflow: hidden;
}

.sector-next-panel__steps li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 20px;
    background: color-mix(in srgb, var(--primary) 88%, transparent);
}

.sector-next-panel__steps li > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
}

.sector-next-panel__steps strong,
.sector-next-panel__steps small {
    display: block;
}

.sector-next-panel__steps strong {
    margin-bottom: 4px;
    color: var(--surface);
    font-size: 15px;
}

.sector-next-panel__steps small {
    color: color-mix(in srgb, var(--surface) 57%, transparent);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1080px) {
    .sector-page-hero__grid,
    .sector-next-panel {
        grid-template-columns: 1fr;
    }

    .sector-page-hero__summary {
        max-width: 720px;
    }

    .sector-explorer__intro {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sector-explorer__intro > p {
        max-width: 720px;
    }
}

@media (max-width: 720px) {
    .page-hero.sector-page-hero {
        padding: 58px 0 52px;
    }

    .sector-page-hero__grid {
        gap: 34px;
    }

    .sector-page-hero__copy h1 {
        font-size: 38px;
    }

    .sector-page-hero__copy > p {
        font-size: 16px;
    }

    .sector-page-hero__copy .hero__actions,
    .sector-page-hero__copy .btn {
        width: 100%;
    }

    .sector-page-hero__summary {
        padding: 22px;
    }

    .sector-page-hero__summary > strong {
        font-size: 60px;
    }

    .sector-explorer-section {
        padding: 62px 0 70px;
    }

    .sector-explorer__intro {
        margin-bottom: 28px;
    }

    .sector-explorer__intro h2 {
        font-size: 34px;
    }

    .sector-explorer__intro > p {
        padding-left: 16px;
        font-size: 15px;
    }

    .sector-profile-grid {
        grid-template-columns: 1fr;
    }

    .sector-profile-card,
    .sector-profile-card:last-child {
        grid-column: auto;
        width: 100%;
        min-height: 0;
        padding: 24px;
    }

    .sector-profile-card__head {
        margin-bottom: 22px;
    }

    .sector-profile-card__link {
        margin-top: 26px;
    }

    .sector-next-section {
        padding-bottom: 72px;
    }

    .sector-next-panel {
        gap: 34px;
        padding: 30px 24px;
        border-radius: 18px;
    }

    .sector-next-panel__copy h2 {
        font-size: 33px;
    }

    .sector-next-panel__copy .btn {
        width: 100%;
    }

    .sector-next-panel__steps li {
        padding: 17px 15px;
    }
}

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

.featured-service-card {
    position: relative;
    min-height: 196px;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid color-mix(in srgb, var(--primary) 14%, var(--border));
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--white) 96%, var(--gold)) 0%, var(--surface) 64%, color-mix(in srgb, var(--surface) 94%, var(--mist)) 100%);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 8%, transparent);
    overflow: hidden;
    isolation: isolate;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.featured-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), color-mix(in srgb, var(--gold) 30%, transparent), transparent 82%);
}

.featured-service-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -54px;
    right: -48px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--gold) 8%, transparent);
    transition: transform 260ms ease, background 260ms ease;
}

.featured-service-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--gold) 68%, var(--border));
    box-shadow: 0 18px 38px color-mix(in srgb, var(--primary) 13%, transparent);
}

.featured-service-card:hover::after {
    transform: scale(1.18);
    background: color-mix(in srgb, var(--gold) 13%, transparent);
}

.featured-service-card__head {
    min-height: 0;
    padding: 20px 20px 8px;
    background: transparent;
    color: var(--primary);
}

.featured-service-card__mark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
    color: var(--accent);
}

.featured-service-card__mark span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
}

.featured-service-card__mark svg {
    width: 19px;
    height: 19px;
    padding: 7px;
    box-sizing: content-box;
    border: 1px solid color-mix(in srgb, var(--gold) 38%, var(--border));
    border-radius: 50%;
    background: color-mix(in srgb, var(--gold) 7%, var(--white));
}

.featured-service-card__head h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.28;
    letter-spacing: -.01em;
    max-width: 100%;
}

.featured-service-card__head h3 a {
    color: inherit;
}

.featured-service-card__head h3 a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.featured-service-card__head h3 a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.featured-service-card__body {
    min-height: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: start;
    gap: 13px;
    padding: 0 20px 18px;
}

.featured-service-card__body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-width: none;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.featured-service-card__body a {
    position: relative;
    z-index: 1;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.featured-service-card__body svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
    transition: transform 180ms ease;
}

.featured-service-card:hover .featured-service-card__body svg {
    transform: translateX(3px);
}

.section--cta-band {
    padding: 0 0 72px;
    background: var(--white);
}

.cta-band {
    min-height: 154px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 44px;
    border-radius: var(--radius);
    background: var(--secondary);
    color: var(--white);
}

.cta-band h2 {
    margin: 0 0 12px;
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: 0;
}

.cta-band p {
    margin: 0;
    max-width: 780px;
    color: color-mix(in srgb, var(--surface) 88%, transparent);
    font-size: 16px;
    font-weight: 700;
}

.btn--dark {
    min-width: 132px;
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.audience-section {
    background: var(--background);
}

.audience-finder {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--surface) 10%, transparent), transparent 32%),
        var(--primary);
    box-shadow: 0 24px 64px color-mix(in srgb, var(--primary) 16%, transparent);
}

.audience-finder::before {
    content: "";
    position: absolute;
    inset: auto -12% -48% 34%;
    height: 72%;
    transform: rotate(-8deg);
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 18%, transparent), transparent);
    pointer-events: none;
}

.audience-finder__nav {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 18px;
    background: color-mix(in srgb, var(--primary) 92%, var(--secondary));
}

.audience-finder__nav button {
    position: relative;
    min-height: 78px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon meta";
    align-items: center;
    column-gap: 12px;
    padding: 12px 13px;
    border: 1px solid color-mix(in srgb, var(--surface) 11%, transparent);
    border-radius: var(--radius);
    background: transparent;
    color: color-mix(in srgb, var(--surface) 72%, transparent);
    text-align: left;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.audience-finder__nav button:hover,
.audience-finder__nav button.is-active {
    transform: translateX(3px);
    border-color: color-mix(in srgb, var(--accent) 60%, transparent);
    background: color-mix(in srgb, var(--surface) 9%, transparent);
    color: var(--surface);
}

.audience-finder__nav button::after {
    content: "";
    position: absolute;
    inset: 10px auto 10px 0;
    width: 3px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 180ms ease;
}

.audience-finder__nav button.is-active::after {
    opacity: 1;
}

.audience-finder__nav svg {
    grid-area: icon;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 9%, transparent);
    color: var(--accent);
}

.audience-finder__nav span {
    grid-area: title;
    min-width: 0;
    color: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
}

.audience-finder__nav small {
    grid-area: meta;
    color: color-mix(in srgb, var(--surface) 54%, transparent);
    font-size: 12px;
    font-weight: 800;
}

.audience-finder__stage {
    position: relative;
    z-index: 1;
    min-height: 520px;
    display: grid;
    grid-template-rows: auto 1fr;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--surface) 98%, transparent), color-mix(in srgb, var(--background) 96%, transparent));
}

.audience-finder__rail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 22px 30px;
    border-bottom: 1px solid var(--border);
}

.audience-finder__rail span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.audience-finder__rail strong {
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
    text-align: right;
}

.audience-profile {
    position: relative;
    min-height: 446px;
    padding: 34px 38px 38px;
}

.audience-profile[hidden] {
    display: none;
}

.audience-profile.is-active {
    animation: profileIn 260ms ease both;
}

@keyframes profileIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.audience-profile__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.audience-profile__meta span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--surface);
    font-size: 18px;
    font-weight: 900;
}

.audience-profile__meta small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.audience-profile__main {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(210px, 0.55fr);
    grid-template-areas:
        "copy needs"
        "next next";
    gap: 28px 34px;
}

.audience-profile__main > div:first-child {
    grid-area: copy;
}

.audience-profile h3 {
    max-width: 640px;
    margin: 0 0 14px;
    color: var(--primary);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
}

.audience-profile p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.audience-profile ul {
    grid-area: needs;
    display: grid;
    gap: 10px;
    align-content: start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.audience-profile li {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.audience-profile li svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex: 0 0 auto;
}

.audience-profile__next {
    grid-area: next;
    display: grid;
    grid-template-columns: minmax(0, 0.18fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
    padding: 22px;
    border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

.audience-profile__next span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.audience-profile__next p {
    max-width: none;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
}

.audience-finder__all {
    position: absolute;
    right: 30px;
    bottom: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.audience-finder__all svg {
    width: 16px;
    height: 16px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    overflow: hidden;
}

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

.audience-card {
    position: relative;
    grid-column: span 2;
    min-height: 264px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 0;
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
    overflow: hidden;
    transition: background 180ms ease;
}

.audience-card:nth-child(1),
.audience-card:nth-child(2),
.audience-card:nth-child(6),
.audience-card:nth-child(7) {
    grid-column: span 3;
}

.audience-card:hover {
    background: color-mix(in srgb, var(--surface) 84%, var(--background));
}

.audience-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.audience-card__top span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.audience-card__top small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.audience-card h3,
.audience-card h2 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: 0;
}

.audience-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.audience-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 20px;
    padding: 0;
    list-style: none;
}

.audience-card li {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    background: var(--background);
}

.audience-card a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--accent);
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.audience-card--page {
    min-height: 260px;
}

.audience-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 30px 34px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white);
}

.audience-cta h2 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: 0;
}

.audience-cta p {
    max-width: 760px;
    margin: 0;
    color: color-mix(in srgb, var(--surface) 78%, transparent);
}

.corporate-panel-section {
    padding: 72px 0 82px;
    background: var(--surface);
}

.corporate-panel {
    position: relative;
}

.corporate-panel__hero {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 12%;
    border-radius: var(--radius) var(--radius) 0 0;
    color: var(--white);
    background-image: linear-gradient(90deg, color-mix(in srgb, var(--primary) 98%, transparent), color-mix(in srgb, var(--primary) 72%, transparent), color-mix(in srgb, var(--primary) 42%, transparent)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=82');
    background-size: cover;
    background-position: center;
}

.corporate-panel__hero span {
    color: color-mix(in srgb, var(--surface) 82%, transparent);
    font-weight: 900;
    text-transform: uppercase;
}

.corporate-panel__hero h2 {
    max-width: 720px;
    margin: 12px 0 0;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.corporate-panel__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 56px;
    align-items: start;
    padding: 0 7% 0;
}

.corporate-panel__text {
    padding-top: 34px;
}

.corporate-panel__text h3 {
    max-width: 650px;
    margin: 0 0 16px;
    color: var(--primary);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
    letter-spacing: 0;
}

.corporate-panel__text p {
    max-width: 640px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 17px;
}

.corporate-panel__card {
    position: relative;
    margin-top: -70px;
    padding: 58px 60px 44px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 34px color-mix(in srgb, var(--text) 22%, transparent);
}

.corporate-panel__card h3 {
    margin: 0 0 24px;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: 0;
}

.corporate-panel__card ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.corporate-panel__card li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.corporate-panel__card li:last-child {
    border-bottom: 0;
}

.corporate-panel__card svg {
    width: 19px;
    height: 19px;
    color: var(--accent);
    flex: 0 0 auto;
}

/* Office photography system */
.home-office-section {
    padding-top: 28px;
    background: var(--surface);
}

.home-office-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    min-height: 610px;
    overflow: hidden;
    border-radius: calc(var(--radius) * 1.35);
    background: var(--primary);
    box-shadow: 0 30px 64px color-mix(in srgb, var(--primary) 18%, transparent);
}

.home-office-panel__media {
    position: relative;
    min-height: 610px;
    overflow: hidden;
}

.home-office-panel__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, color-mix(in srgb, var(--primary) 74%, transparent) 100%);
    pointer-events: none;
}

.home-office-panel__space {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 600ms ease;
}

.home-office-panel:hover .home-office-panel__space {
    transform: scale(1.025);
}

.home-office-panel__portrait {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    width: 178px;
    height: 238px;
    overflow: hidden;
    border: 6px solid color-mix(in srgb, var(--surface) 92%, transparent);
    border-radius: 88px 88px 10px 10px;
    background: var(--surface);
    box-shadow: 0 22px 44px color-mix(in srgb, #000 28%, transparent);
}

.home-office-panel__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.home-office-panel__location {
    position: absolute;
    z-index: 3;
    left: 28px;
    bottom: 28px;
    max-width: calc(100% - 250px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid color-mix(in srgb, var(--surface) 22%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 74%, transparent);
    color: var(--surface);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.home-office-panel__location svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
    flex: 0 0 auto;
}

.home-office-panel__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px;
    color: var(--surface);
}

.home-office-panel__content > span,
.about-office-story__heading span,
.contact-office-hero__content > span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-office-panel__content h2 {
    margin: 14px 0 18px;
    color: var(--surface);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.home-office-panel__content > p {
    margin: 0;
    color: color-mix(in srgb, var(--surface) 68%, transparent);
    font-size: 16px;
    line-height: 1.72;
}

.home-office-panel__content ul {
    display: grid;
    gap: 11px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.home-office-panel__content li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: color-mix(in srgb, var(--surface) 86%, transparent);
    font-size: 13px;
    font-weight: 750;
}

.home-office-panel__content li svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    flex: 0 0 auto;
}

.home-office-panel__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.home-office-panel__actions .text-link {
    color: var(--surface);
}

.about-office-story-section {
    overflow: hidden;
    background: color-mix(in srgb, var(--background) 76%, var(--surface));
}

.about-office-story__heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 38px;
}

.about-office-story__heading h2 {
    max-width: 720px;
    margin: 12px 0 0;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.about-office-story__heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.about-office-story {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    grid-template-rows: minmax(360px, 0.74fr) auto;
    gap: 18px;
}

.about-office-story figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: var(--primary);
    box-shadow: 0 22px 46px color-mix(in srgb, var(--primary) 10%, transparent);
}

.about-office-story__primary {
    grid-row: 1 / 3;
    min-height: 700px;
}

.about-office-story__secondary {
    min-height: 460px;
}

.about-office-story figure::after {
    content: "";
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--primary) 82%, transparent));
    pointer-events: none;
}

.about-office-story figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.about-office-story__primary img {
    object-position: center 38%;
}

.about-office-story__secondary img {
    object-position: center 34%;
}

.about-office-story figure:hover img {
    transform: scale(1.025);
}

.about-office-story figcaption {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--surface);
    font-size: 13px;
    font-weight: 850;
}

.about-office-story figcaption span {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.08em;
}

.about-office-story__note {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 3px 16px;
    align-content: center;
    min-height: 178px;
    padding: 28px;
    border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--border));
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--accent) 11%, var(--surface));
}

.about-office-story__note > svg {
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
}

.about-office-story__note strong {
    align-self: end;
    color: var(--primary);
    font-size: 18px;
}

.about-office-story__note p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.contact-office-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        radial-gradient(circle at 88% 0, color-mix(in srgb, var(--accent) 17%, transparent), transparent 30%),
        color-mix(in srgb, var(--background) 72%, var(--surface));
}

.contact-office-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
    gap: 56px;
    align-items: center;
}

.contact-office-hero__content h1 {
    margin: 14px 0 20px;
    color: var(--primary);
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.contact-office-hero__content > p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.contact-office-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.contact-office-hero__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 850;
}

.contact-office-hero__whatsapp svg {
    width: 19px;
    height: 19px;
    color: var(--accent);
}

.contact-office-hero__visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    margin: 0;
    border-radius: calc(var(--radius) * 1.3);
    background: var(--primary);
    box-shadow: 0 30px 62px color-mix(in srgb, var(--primary) 16%, transparent);
}

.contact-office-hero__visual::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--primary) 64%, transparent));
    pointer-events: none;
}

.contact-office-hero__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-office-hero__visual figcaption {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 40px;
    gap: 13px;
    align-items: center;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--surface) 24%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--primary) 76%, transparent);
    color: var(--surface);
    backdrop-filter: blur(14px);
}

.contact-office-hero__visual figcaption > svg {
    width: 42px;
    height: 42px;
    padding: 11px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
}

.contact-office-hero__visual figcaption span {
    min-width: 0;
}

.contact-office-hero__visual figcaption small,
.contact-office-hero__visual figcaption strong {
    display: block;
}

.contact-office-hero__visual figcaption small {
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-office-hero__visual figcaption strong {
    overflow: hidden;
    color: var(--surface);
    font-size: 12px;
    line-height: 1.45;
    text-overflow: ellipsis;
}

.contact-office-hero__visual figcaption a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--surface) 20%, transparent);
    border-radius: 50%;
    color: var(--surface);
}

.contact-office-hero__visual figcaption a svg {
    width: 18px;
    height: 18px;
}

.contact-map-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    background:
        radial-gradient(circle at 8% 0, color-mix(in srgb, var(--accent) 18%, transparent), transparent 32%),
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 94%, #071828), var(--primary));
    color: var(--surface);
}

.contact-map-section::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -210px;
    width: 440px;
    height: 440px;
    border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
    border-radius: 50%;
    box-shadow:
        0 0 0 64px color-mix(in srgb, var(--accent) 5%, transparent),
        0 0 0 128px color-mix(in srgb, var(--accent) 3%, transparent);
    pointer-events: none;
}

.contact-map-panel {
    position: relative;
    z-index: 1;
}

.contact-map-panel__header {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 32px;
}

.contact-map-panel__heading > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-map-panel__heading > span svg {
    width: 18px;
    height: 18px;
}

.contact-map-panel__heading h2 {
    margin: 13px 0 14px;
    color: var(--surface);
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.contact-map-panel__heading p {
    max-width: 660px;
    margin: 0;
    color: color-mix(in srgb, var(--surface) 70%, transparent);
    font-size: 16px;
    line-height: 1.7;
}

.contact-map-panel__details {
    display: grid;
    gap: 14px;
}

.contact-map-panel__address {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 15px;
    border: 1px solid color-mix(in srgb, var(--surface) 16%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 7%, transparent);
    color: var(--surface);
    transition: border-color 180ms ease, background 180ms ease;
}

.contact-map-panel__address:hover {
    border-color: color-mix(in srgb, var(--accent) 55%, transparent);
    background: color-mix(in srgb, var(--surface) 10%, transparent);
}

.contact-map-panel__address > svg {
    width: 42px;
    height: 42px;
    padding: 11px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
}

.contact-map-panel__address span,
.contact-map-panel__address small,
.contact-map-panel__address strong {
    min-width: 0;
    display: block;
}

.contact-map-panel__address small {
    margin-bottom: 3px;
    color: color-mix(in srgb, var(--surface) 52%, transparent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-map-panel__address strong {
    color: var(--surface);
    font-size: 12px;
    line-height: 1.5;
}

.contact-map-panel__button {
    width: 100%;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.contact-map-panel__button:hover {
    background: color-mix(in srgb, var(--accent) 84%, var(--surface));
    border-color: color-mix(in srgb, var(--accent) 84%, var(--surface));
    color: var(--primary);
}

.contact-map-panel__frame {
    height: 500px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid color-mix(in srgb, var(--surface) 18%, transparent);
    border-radius: calc(var(--radius) * 1.35);
    background: color-mix(in srgb, var(--surface) 9%, transparent);
    box-shadow: 0 28px 64px color-mix(in srgb, #000 26%, transparent);
}

.contact-map-panel__frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: calc(var(--radius) * 0.95);
}

@media (max-width: 1080px) {
    .home-office-panel,
    .contact-office-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-office-panel__content {
        padding: 48px;
    }

    .about-office-story__heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-office-story__heading > p {
        max-width: 760px;
    }

    .contact-office-hero__content {
        max-width: 760px;
    }

    .contact-map-panel__header {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .contact-map-panel__details {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: stretch;
    }

    .contact-map-panel__button {
        width: auto;
        padding-inline: 24px;
    }
}

@media (max-width: 720px) {
    .home-office-section {
        padding-inline: 12px;
    }

    .home-office-panel__media {
        min-height: 430px;
    }

    .home-office-panel__portrait {
        right: 18px;
        bottom: 18px;
        width: 126px;
        height: 174px;
        border-width: 4px;
    }

    .home-office-panel__location {
        left: 18px;
        bottom: 18px;
        max-width: calc(100% - 170px);
        align-items: flex-start;
        border-radius: var(--radius);
    }

    .home-office-panel__content {
        padding: 34px 24px;
    }

    .home-office-panel__content h2,
    .about-office-story__heading h2 {
        font-size: 32px;
    }

    .about-office-story {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .about-office-story__primary {
        grid-row: auto;
        min-height: 540px;
    }

    .about-office-story__secondary {
        min-height: 460px;
    }

    .about-office-story__note {
        min-height: 0;
    }

    .contact-office-hero {
        padding: 48px 0;
    }

    .contact-office-hero__grid {
        gap: 34px;
    }

    .contact-office-hero__content h1 {
        font-size: 42px;
    }

    .contact-office-hero__visual {
        min-height: 420px;
    }

    .contact-office-hero__visual figcaption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        grid-template-columns: 38px minmax(0, 1fr) 36px;
        gap: 10px;
        padding: 12px;
    }

    .contact-office-hero__visual figcaption > svg {
        width: 38px;
        height: 38px;
    }

    .contact-map-section {
        padding: 54px 0;
    }

    .contact-map-panel__heading h2 {
        font-size: 36px;
    }

    .contact-map-panel__details {
        grid-template-columns: 1fr;
    }

    .contact-map-panel__button {
        width: 100%;
    }

    .contact-map-panel__frame {
        height: 390px;
        padding: 6px;
    }
}

/* About profile experience */
.about-profile-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 14%, color-mix(in srgb, var(--accent) 22%, transparent) 0, transparent 28%),
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #071828) 0%, var(--primary) 62%, color-mix(in srgb, var(--primary) 78%, var(--secondary)) 100%);
    color: var(--surface);
}

.about-profile-hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -190px;
    top: -260px;
    border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
    border-radius: 50%;
    box-shadow: 0 0 0 72px color-mix(in srgb, var(--accent) 5%, transparent), 0 0 0 144px color-mix(in srgb, var(--accent) 4%, transparent);
    pointer-events: none;
}

.about-profile-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
    gap: 30px 70px;
    align-items: end;
    padding: 76px 0 34px;
}

.about-profile-hero__content {
    align-self: center;
    padding-bottom: 78px;
}

.about-profile-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-profile-hero__eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}

.about-profile-hero h1 {
    max-width: 720px;
    margin: 18px 0 20px;
    color: var(--surface);
    font-size: clamp(54px, 6.2vw, 86px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.about-role-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 760px;
}

.about-role-list span {
    padding: 8px 11px;
    border: 1px solid color-mix(in srgb, var(--surface) 20%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 7%, transparent);
    color: color-mix(in srgb, var(--surface) 86%, transparent);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.about-profile-hero__lead {
    max-width: 720px;
    margin: 26px 0 0;
    color: color-mix(in srgb, var(--surface) 72%, transparent);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.72;
}

.about-profile-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--surface);
    font-size: 14px;
    font-weight: 850;
}

.about-text-link svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.about-profile-hero__visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-profile-hero__visual::before {
    content: "";
    position: absolute;
    width: min(108%, 500px);
    height: 86%;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 88%, white), color-mix(in srgb, var(--accent) 22%, var(--surface)));
}

.about-profile-hero__frame {
    position: relative;
    z-index: 1;
    width: min(92%, 420px);
    height: 580px;
    overflow: hidden;
    border-radius: 48% 48% 0 0;
    background: var(--surface);
    box-shadow: 0 34px 70px color-mix(in srgb, #000 30%, transparent);
}

.about-profile-hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-profile-seal {
    position: absolute;
    z-index: 3;
    left: -22px;
    bottom: 116px;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    border: 8px solid color-mix(in srgb, var(--primary) 72%, transparent);
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 18px 40px color-mix(in srgb, #000 24%, transparent);
}

.about-profile-seal svg {
    width: 22px;
    height: 22px;
}

.about-profile-seal span {
    font-size: 15px;
    font-weight: 950;
}

.about-profile-seal small {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.about-profile-stats {
    position: relative;
    z-index: 4;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -30px;
    transform: translateY(34px);
    border: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 97%, transparent);
    color: var(--text);
    box-shadow: 0 24px 54px color-mix(in srgb, #000 15%, transparent);
}

.about-profile-stats > div {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 30px;
}

.about-profile-stats > div + div {
    border-left: 1px solid var(--border);
}

.about-profile-stats strong {
    color: var(--primary);
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1;
}

.about-profile-stats span {
    max-width: 150px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
}

.about-journey-section {
    padding-top: 132px;
    background:
        linear-gradient(90deg, transparent 0 49.9%, color-mix(in srgb, var(--border) 44%, transparent) 50%, transparent 50.1%),
        var(--surface);
}

.about-journey {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: 80px;
    align-items: start;
}

.about-journey__statement {
    position: sticky;
    top: 124px;
}

.about-journey__statement h2,
.about-section-heading h2,
.about-startup-panel h2 {
    margin: 12px 0 18px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.about-journey__statement > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.about-journey__statement blockquote {
    position: relative;
    margin: 34px 0 0;
    padding: 25px 24px 25px 30px;
    border: 0;
    border-left: 3px solid var(--accent);
    background: color-mix(in srgb, var(--background) 78%, var(--surface));
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.55;
}

.about-timeline {
    display: grid;
}

.about-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    min-height: 148px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.about-timeline__item:first-child {
    border-top: 1px solid var(--border);
}

.about-timeline__marker {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    box-shadow: 0 14px 26px color-mix(in srgb, var(--primary) 16%, transparent);
}

.about-timeline__marker svg {
    width: 23px;
    height: 23px;
}

.about-timeline__item span {
    display: block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-timeline__item h3 {
    margin: 7px 0 5px;
    color: var(--primary);
    font-size: 21px;
}

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

.about-timeline__item > small {
    color: color-mix(in srgb, var(--primary) 14%, transparent);
    font-size: 46px;
    font-weight: 950;
    line-height: 1;
}

.about-credentials-section {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--surface);
}

.about-credentials-section::after {
    content: "SPK";
    position: absolute;
    right: -30px;
    bottom: -82px;
    color: color-mix(in srgb, var(--surface) 4%, transparent);
    font-size: 280px;
    font-weight: 950;
    line-height: 1;
    pointer-events: none;
}

.about-credentials-section .container {
    position: relative;
    z-index: 1;
}

.about-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 42px;
}

.about-section-heading > div > span,
.about-startup-panel__intro > span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-section-heading h2 {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--primary);
}

.about-section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.about-section-heading--light h2 {
    color: var(--surface);
}

.about-section-heading--light > p {
    color: color-mix(in srgb, var(--surface) 66%, transparent);
}

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

.about-licence-card {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid color-mix(in srgb, var(--surface) 14%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 6%, transparent);
    backdrop-filter: blur(12px);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.about-licence-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent) 58%, transparent);
    background: color-mix(in srgb, var(--surface) 9%, transparent);
}

.about-licence-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-licence-card__top svg {
    width: 34px;
    height: 34px;
    color: var(--accent);
}

.about-licence-card__top span {
    padding: 6px 9px;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 999px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.about-licence-card h3 {
    max-width: 280px;
    margin: 44px 0 24px;
    color: var(--surface);
    font-size: 21px;
    line-height: 1.3;
}

.about-licence-card__code {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid color-mix(in srgb, var(--surface) 12%, transparent);
}

.about-licence-card__code small {
    color: color-mix(in srgb, var(--surface) 52%, transparent);
    font-size: 11px;
}

.about-licence-card__code strong {
    color: var(--accent);
    font-size: 20px;
    letter-spacing: 0.05em;
}

.about-acca-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    margin-top: 18px;
    padding: 25px 28px;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--primary);
}

.about-acca-strip__mark {
    min-width: 90px;
    padding-right: 24px;
    border-right: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0.04em;
}

.about-acca-strip h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.about-acca-strip p {
    margin: 0;
    color: color-mix(in srgb, var(--primary) 72%, transparent);
    font-size: 13px;
    line-height: 1.55;
}

.about-acca-strip > svg {
    width: 24px;
    height: 24px;
}

.about-responsibility-section {
    background: color-mix(in srgb, var(--background) 78%, var(--surface));
}

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

.about-responsibility-card {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--primary) 7%, transparent);
}

.about-responsibility-card:first-child {
    border-color: transparent;
    background: var(--primary);
    color: var(--surface);
}

.about-responsibility-card__number {
    position: absolute;
    right: 24px;
    top: 12px;
    color: color-mix(in srgb, var(--primary) 6%, transparent);
    font-size: 110px;
    font-weight: 950;
    line-height: 1;
}

.about-responsibility-card:first-child .about-responsibility-card__number {
    color: color-mix(in srgb, var(--surface) 6%, transparent);
}

.about-responsibility-card__icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 18%, var(--surface));
    color: var(--accent);
}

.about-responsibility-card__icon svg {
    width: 24px;
    height: 24px;
}

.about-responsibility-card h3 {
    position: relative;
    margin: 76px 0 14px;
    color: var(--primary);
    font-size: 27px;
}

.about-responsibility-card:first-child h3 {
    color: var(--surface);
}

.about-responsibility-card p {
    position: relative;
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.about-responsibility-card:first-child p {
    color: color-mix(in srgb, var(--surface) 68%, transparent);
}

.about-solutions-section {
    background: var(--surface);
}

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

.about-solution-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(155deg, var(--surface), color-mix(in srgb, var(--background) 80%, var(--surface)));
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-solution-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 58%, var(--border));
    box-shadow: 0 24px 44px color-mix(in srgb, var(--primary) 10%, transparent);
}

.about-solution-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-solution-card__head svg {
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--accent);
}

.about-solution-card__head > span {
    color: color-mix(in srgb, var(--primary) 16%, transparent);
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
}

.about-solution-card h3 {
    margin: 54px 0 14px;
    color: var(--primary);
    font-size: 23px;
    line-height: 1.25;
}

.about-solution-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.about-solution-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 25px;
}

.about-solution-card__tags span {
    padding: 6px 9px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 15%, var(--surface));
    color: color-mix(in srgb, var(--primary) 84%, var(--accent));
    font-size: 10px;
    font-weight: 850;
}

.about-startup-section {
    padding-top: 24px;
    background: var(--surface);
}

.about-startup-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 42px 70px;
    overflow: hidden;
    padding: 64px;
    border-radius: calc(var(--radius) * 1.35);
    background:
        radial-gradient(circle at 0 100%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
        var(--primary);
    color: var(--surface);
    box-shadow: 0 28px 60px color-mix(in srgb, var(--primary) 17%, transparent);
}

.about-startup-panel::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -140px;
    top: -150px;
    border: 55px solid color-mix(in srgb, var(--accent) 8%, transparent);
    border-radius: 50%;
}

.about-startup-panel__intro,
.about-startup-panel__items,
.about-startup-panel__cta {
    position: relative;
    z-index: 1;
}

.about-startup-panel h2 {
    color: var(--surface);
}

.about-startup-panel__intro p {
    margin: 0;
    color: color-mix(in srgb, var(--surface) 68%, transparent);
    font-size: 16px;
    line-height: 1.7;
}

.about-startup-panel__items {
    display: grid;
    gap: 12px;
}

.about-startup-panel__items article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid color-mix(in srgb, var(--surface) 12%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 5%, transparent);
}

.about-startup-panel__items article > svg {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
}

.about-startup-panel__items h3 {
    margin: 0 0 7px;
    color: var(--surface);
    font-size: 17px;
}

.about-startup-panel__items p {
    margin: 0;
    color: color-mix(in srgb, var(--surface) 62%, transparent);
    font-size: 13px;
    line-height: 1.62;
}

.about-startup-panel__cta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 30px;
    border-top: 1px solid color-mix(in srgb, var(--surface) 14%, transparent);
}

.about-startup-panel__cta strong {
    max-width: 700px;
    color: var(--surface);
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.35;
}

@media (max-width: 1080px) {
    .about-profile-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
        gap: 28px;
    }

    .about-profile-hero__content {
        padding-bottom: 64px;
    }

    .about-profile-hero__visual {
        min-height: 560px;
    }

    .about-profile-hero__frame {
        height: 520px;
    }

    .about-journey {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .about-journey__statement {
        position: static;
        max-width: 760px;
    }

    .about-section-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-section-heading > p {
        max-width: 760px;
    }

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

    .about-solution-card:last-child {
        grid-column: 1 / -1;
        min-height: 340px;
    }

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

@media (max-width: 720px) {
    .about-profile-hero__grid {
        grid-template-columns: 1fr;
        padding: 48px 0 24px;
    }

    .about-profile-hero__content {
        padding-bottom: 10px;
    }

    .about-profile-hero h1 {
        font-size: 48px;
    }

    .about-profile-hero__lead {
        font-size: 16px;
    }

    .about-profile-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-profile-hero__visual {
        min-height: 450px;
        margin-top: 10px;
    }

    .about-profile-hero__visual::before {
        width: min(100%, 400px);
    }

    .about-profile-hero__frame {
        width: min(82%, 330px);
        height: 430px;
    }

    .about-profile-seal {
        left: 4px;
        bottom: 70px;
        width: 96px;
        height: 96px;
        border-width: 6px;
    }

    .about-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -2px;
        transform: translateY(24px);
    }

    .about-profile-stats > div {
        min-height: 112px;
        padding: 18px;
    }

    .about-profile-stats > div + div {
        border-left: 0;
    }

    .about-profile-stats > div:nth-child(even) {
        border-left: 1px solid var(--border);
    }

    .about-profile-stats > div:nth-child(n + 3) {
        border-top: 1px solid var(--border);
    }

    .about-journey-section {
        padding-top: 92px;
        background: var(--surface);
    }

    .about-journey {
        gap: 34px;
    }

    .about-journey__statement h2,
    .about-section-heading h2,
    .about-startup-panel h2 {
        font-size: 32px;
    }

    .about-timeline__item {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 14px;
        min-height: 128px;
    }

    .about-timeline__marker {
        width: 46px;
        height: 46px;
    }

    .about-timeline__item > small {
        display: none;
    }

    .about-licence-grid,
    .about-responsibility-grid,
    .about-solution-grid {
        grid-template-columns: 1fr;
    }

    .about-licence-card,
    .about-solution-card,
    .about-solution-card:last-child {
        grid-column: auto;
        min-height: 0;
    }

    .about-licence-card h3,
    .about-solution-card h3 {
        margin-top: 34px;
    }

    .about-licence-card__code,
    .about-solution-card__tags {
        margin-top: 26px;
    }

    .about-acca-strip {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .about-acca-strip__mark {
        grid-column: 1 / -1;
        padding: 0 0 14px;
        border-right: 0;
        border-bottom: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    }

    .about-responsibility-card {
        min-height: 330px;
        padding: 28px;
    }

    .about-startup-section {
        padding-inline: 12px;
    }

    .about-startup-panel {
        gap: 34px;
        padding: 34px 24px;
    }

    .about-startup-panel__items article {
        grid-template-columns: 1fr;
    }

    .about-startup-panel__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

.references-section {
    background: var(--surface);
}

.references-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.references-heading span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.references-heading h2 {
    margin: 8px 0 10px;
    color: var(--primary);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.references-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.reference-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 30px;
    max-width: 920px;
    margin: 0 auto 76px;
}

.reference-logo-card {
    min-height: 82px;
    display: grid;
    place-items: center;
    padding: 18px 16px;
    border-bottom: 3px solid var(--primary);
    background: var(--surface);
    box-shadow: 0 14px 28px color-mix(in srgb, var(--text) 9%, transparent);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.reference-logo-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 20px 34px color-mix(in srgb, var(--text) 13%, transparent);
}

.reference-logo-card strong {
    color: var(--primary);
    font-size: clamp(17px, 1.7vw, 24px);
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
}

.document-proof-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 18px;
}

.document-proof-card {
    min-width: 0;
    height: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    background: var(--surface);
}

.document-proof-card__paper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--surface);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--text) 8%, transparent);
    overflow: hidden;
}

button.document-proof-card__paper {
    cursor: zoom-in;
}

.document-proof-card__paper img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
    transition: transform 220ms ease;
}

button.document-proof-card__paper:hover img,
button.document-proof-card__paper:focus-visible img {
    transform: scale(1.025);
}

button.document-proof-card__paper:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 58%, transparent);
    outline-offset: 3px;
}

.document-proof-card__zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 88%, transparent);
    color: var(--surface);
    box-shadow: 0 8px 18px color-mix(in srgb, #000 20%, transparent);
    transition: background 180ms ease, transform 180ms ease;
}

.document-proof-card__zoom svg {
    width: 17px;
    height: 17px;
}

button.document-proof-card__paper:hover .document-proof-card__zoom {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.06);
}

.document-proof-card__empty {
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 24px;
    color: var(--muted);
    text-align: center;
}

.document-proof-card__empty svg {
    width: 34px;
    height: 34px;
    color: var(--accent);
}

.document-proof-card__empty span {
    font-size: 13px;
    font-weight: 800;
}

.document-proof-card h3 {
    margin: 16px 0 5px;
    color: var(--primary);
    font-size: 18px;
}

.document-proof-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

body.document-lightbox-open {
    overflow: hidden;
}

.document-lightbox[hidden] {
    display: none;
}

.document-lightbox {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.document-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--primary) 92%, transparent);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
}

.document-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 94vw);
    max-height: 92vh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--surface) 20%, transparent);
    border-radius: calc(var(--radius) * 1.25);
    background: var(--surface);
    box-shadow: 0 36px 90px color-mix(in srgb, #000 46%, transparent);
}

.document-lightbox__header {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px 12px 22px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
}

.document-lightbox__header strong {
    min-width: 0;
    overflow: hidden;
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.document-lightbox__header button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--surface);
    cursor: pointer;
}

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

.document-lightbox__header button svg {
    width: 20px;
    height: 20px;
}

.document-lightbox__body {
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: auto;
    padding: 20px;
    background: color-mix(in srgb, var(--background) 72%, var(--surface));
}

.document-lightbox__body img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(92vh - 105px);
    object-fit: contain;
}

.references-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 34px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
}

.references-note strong,
.references-note span {
    display: block;
}

.references-note strong {
    color: var(--primary);
    font-size: 20px;
}

.references-note span {
    color: var(--muted);
    font-weight: 700;
}

.trust-band {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

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

.trust-band__grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    color: var(--ink-2);
    font-weight: 800;
}

.trust-band__grid svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex: 0 0 auto;
}

.intro-grid,
.tool-grid,
.contact-grid,
.content-grid,
.detail-grid,
.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split__content h2,
.tool-grid h2,
.contact-grid h2,
.side-panel h2,
.detail-main h2,
.article-body h2 {
    margin: 10px 0 14px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: 0;
}

.intro-grid p,
.section-heading p,
.split__content p,
.tool-grid p,
.contact-grid p,
.rich-text p,
.detail-main p,
.article-body p,
.side-panel p {
    color: var(--muted);
    font-size: 17px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

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

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

.post-card,
.service-card,
.sector-card,
.side-panel,
.vat-tool,
.lead-form,
.article-cta {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--surface) 0%, var(--background) 100%);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--text) 6%, transparent);
}

.post-card,
.service-card,
.sector-card {
    position: relative;
    min-height: 270px;
    padding: 24px;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.post-card::before,
.service-card::before,
.sector-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.post-card:hover,
.service-card:hover,
.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--text) 12%, transparent);
    border-color: color-mix(in srgb, var(--accent) 32%, transparent);
}

.post-card__image {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--background);
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 280ms ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.035);
}

.post-card time {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.post-card h2,
.post-card h3,
.service-card h3,
.sector-card h2 {
    margin: 12px 0 10px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
}

.post-card p,
.service-card p,
.sector-card p {
    color: var(--muted);
    margin: 0 0 18px;
}

.text-link {
    color: var(--teal-dark);
    font-weight: 900;
}

.service-card__icon,
.service-icon-large {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--mist);
    color: var(--teal-dark);
}

.service-card__icon svg,
.service-icon-large svg,
.sector-card > svg {
    width: 25px;
    height: 25px;
}

.section-action {
    margin-top: 28px;
    text-align: center;
}

.split {
    align-items: center;
}

.split__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.section--ink .split__content p,
.section--ink .check-list li {
    color: color-mix(in srgb, var(--surface) 78%, transparent);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

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

.check-list li {
    color: var(--ink-2);
    font-weight: 700;
}

.check-list svg {
    color: var(--teal);
}

.tool-grid {
    align-items: center;
}

.tools-section {
    background: var(--background);
}

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

.tool-card {
    min-height: 242px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 34px color-mix(in srgb, var(--text) 7%, transparent);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 44%, var(--border));
    box-shadow: 0 24px 48px color-mix(in srgb, var(--text) 12%, transparent);
}

.tool-card > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--accent);
}

.tool-card svg {
    width: 23px;
    height: 23px;
}

.tool-card h2 {
    margin: 22px 0 10px;
    color: var(--primary);
    font-size: 23px;
    line-height: 1.16;
}

.tool-card p {
    margin: 0;
    color: var(--muted);
}

.tool-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--primary);
    font-size: 14px;
}

.tool-card strong svg {
    width: 16px;
    height: 16px;
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.calculator-panel,
.calculator-side {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 18px 42px color-mix(in srgb, var(--text) 8%, transparent);
}

.calculator-panel {
    padding: 30px;
}

.calculator-panel__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.calculator-panel__head > span {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--accent);
    flex: 0 0 auto;
}

.calculator-panel__head svg {
    width: 26px;
    height: 26px;
}

.calculator-panel__head h2,
.calculator-side h2 {
    margin: 0 0 6px;
    color: var(--primary);
    font-size: 28px;
    line-height: 1.16;
}

.calculator-panel__head p,
.calculator-side p {
    margin: 0;
    color: var(--muted);
}

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

.calculator-form .btn,
.calculator-result {
    grid-column: 1 / -1;
}

.calculator-form__wide {
    grid-column: 1 / -1;
}

.calculator-form label > small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.calculator-result {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--surface);
}

.calculator-result span {
    color: color-mix(in srgb, var(--surface) 72%, transparent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.calculator-result strong {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.calculator-result small {
    color: color-mix(in srgb, var(--surface) 70%, transparent);
    font-weight: 700;
}

.calculator-breakdown {
    display: grid;
    gap: 7px;
    margin: 6px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid color-mix(in srgb, var(--surface) 16%, transparent);
    list-style: none;
}

.calculator-breakdown:empty {
    display: none;
}

.calculator-breakdown li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: color-mix(in srgb, var(--surface) 76%, transparent);
    font-size: 12px;
}

.calculator-breakdown strong {
    flex: 0 0 auto;
    color: var(--surface);
    font-size: 13px;
    line-height: 1.3;
}

.calculator-methodology {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--border));
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--accent) 5%, var(--surface));
}

.calculator-methodology__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.calculator-methodology__head span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.calculator-methodology__head small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.calculator-methodology > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.calculator-methodology__sources {
    display: flex;
    align-items: center;
    gap: 8px 14px;
    flex-wrap: wrap;
    padding-top: 11px;
    border-top: 1px solid var(--border);
}

.calculator-methodology__sources strong {
    color: var(--primary);
    font-size: 12px;
}

.calculator-methodology__sources a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--accent) 58%, transparent);
    text-underline-offset: 3px;
}

.calculator-methodology__sources svg {
    width: 13px;
    height: 13px;
    color: var(--accent);
}

.calculator-side {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.calculator-side .text-link {
    width: fit-content;
}

.tool-content-section {
    background: var(--surface);
    padding-top: 0;
}

.tool-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.tool-content-main {
    display: grid;
    gap: 24px;
}

.tool-copy-block,
.tool-example,
.tool-service-cta {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--text) 6%, transparent);
}

.tool-copy-block {
    padding: 30px;
}

.tool-copy-block > span,
.tool-example span,
.tool-faq > span,
.tool-service-cta > span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.tool-copy-block h2,
.tool-example h2,
.tool-faq h2,
.tool-service-cta h2 {
    margin: 8px 0 12px;
    color: var(--primary);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.14;
}

.tool-copy-block p,
.tool-example p,
.tool-service-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.tool-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.tool-steps div {
    min-height: 150px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
}

.tool-steps strong {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--surface);
}

.tool-steps p {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
}

.tool-example {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

.tool-example > strong {
    min-width: 180px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--surface);
    font-size: 26px;
    line-height: 1.1;
    text-align: center;
}

.tool-audience-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.tool-audience-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 900;
}

.tool-audience-list svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex: 0 0 auto;
}

.tool-faq {
    display: grid;
    gap: 12px;
}

.tool-faq > span,
.tool-faq > h2 {
    padding-inline: 30px;
}

.tool-faq > span {
    padding-top: 30px;
}

.tool-faq > h2 {
    margin-bottom: 12px;
}

.tool-faq .faq-item {
    border-radius: 0;
    border-inline: 0;
}

.tool-faq .faq-item:last-child {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.tool-service-cta {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 16px;
    padding: 24px;
    background: var(--background);
}

.service-detail-section {
    background: var(--background);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.service-article {
    display: grid;
    gap: 28px;
}

.service-main-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 38px color-mix(in srgb, var(--text) 7%, transparent);
}

.service-main-image img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.service-rich-text {
    min-height: 360px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 38px color-mix(in srgb, var(--text) 7%, transparent);
}

.service-rich-text h2,
.service-rich-text h3 {
    margin: 26px 0 12px;
    color: var(--primary);
    line-height: 1.16;
}

.service-rich-text h2:first-child,
.service-rich-text h3:first-child {
    margin-top: 0;
}

.service-rich-text ul,
.service-rich-text ol {
    padding-left: 22px;
}

.service-profile-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.service-profile-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.service-profile-card h2 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 24px;
}

.service-profile-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

.service-profile-card a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--background);
    color: var(--primary);
}

.service-sticky-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.service-link-box,
.service-contact-box {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 34px color-mix(in srgb, var(--text) 7%, transparent);
}

.service-link-box h2,
.service-contact-box h2 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 22px;
}

.service-link-box {
    display: grid;
    gap: 10px;
}

.service-link-box a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--primary);
    font-weight: 900;
}

.service-link-box a.is-active,
.service-link-box a:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.service-contact-box {
    display: grid;
    gap: 14px;
    background: var(--primary);
    color: var(--surface);
}

.service-contact-box h2 {
    color: var(--surface);
}

.service-contact-box a,
.service-contact-box p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid color-mix(in srgb, var(--surface) 18%, transparent);
    color: color-mix(in srgb, var(--surface) 88%, transparent);
    font-weight: 800;
}

.service-contact-box svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex: 0 0 auto;
}

.service-contact-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 18px 44px color-mix(in srgb, var(--text) 9%, transparent);
}

.service-contact-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 52%, var(--surface)));
    content: '';
}

.service-contact-card__intro {
    padding: 30px 24px 24px;
    text-align: center;
}

.service-contact-card__intro > span {
    display: block;
    margin-bottom: 6px;
    color: color-mix(in srgb, var(--accent) 74%, var(--primary));
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-contact-card__intro h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.08;
}

.service-contact-card__intro > p {
    max-width: 285px;
    margin: 10px auto 22px;
    color: var(--muted);
    line-height: 1.55;
}

.service-contact-card__profile {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--primary);
}

.service-contact-card__profile img {
    width: 106px;
    height: 106px;
    margin-bottom: 12px;
    border: 4px solid var(--surface);
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 0 0 1px var(--border), 0 12px 25px color-mix(in srgb, var(--primary) 14%, transparent);
}

.service-contact-card__profile strong {
    font-size: 21px;
    line-height: 1.2;
}

.service-contact-card__profile small {
    margin-top: 4px;
    color: color-mix(in srgb, var(--accent) 72%, var(--primary));
    font-size: 12px;
    font-weight: 900;
}

.service-contact-card__items {
    border-top: 1px solid var(--border);
}

.service-contact-card__items > a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-height: 68px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    transition: background .2s ease, color .2s ease;
}

.service-contact-card__items > a:hover {
    background: color-mix(in srgb, var(--accent) 8%, var(--surface));
}

.service-contact-card__items > a > span:last-child {
    min-width: 0;
}

.service-contact-card__items small,
.service-contact-card__items strong {
    display: block;
}

.service-contact-card__items small {
    margin-bottom: 2px;
    color: color-mix(in srgb, var(--accent) 72%, var(--primary));
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.service-contact-card__items strong {
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.38;
}

.service-contact-card__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--accent) 11%, var(--surface));
    color: color-mix(in srgb, var(--accent) 70%, var(--primary));
}

.service-contact-card__icon--whatsapp {
    background: #eaf8f0;
    color: #138a4b;
}

.service-contact-card__icon svg {
    width: 20px;
    height: 20px;
}

.service-contact-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    margin: 18px 20px 20px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.service-contact-card__cta:hover {
    background: color-mix(in srgb, var(--accent) 86%, white);
}

.service-contact-card__cta svg {
    width: 18px;
    height: 18px;
}

.vat-tool {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 16px;
    padding: 24px;
}

.vat-result {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
}

.vat-result strong {
    font-size: 28px;
}

.faq-wrap {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.faq-question {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--muted);
}

.section--contact {
    background: var(--surface);
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-grid > div:first-child {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, color-mix(in srgb, var(--surface) 82%, transparent), color-mix(in srgb, var(--background) 95%, transparent));
}

.contact-methods a {
    width: fit-content;
    color: var(--ink);
    font-weight: 800;
}

.lead-form {
    padding: 24px;
}

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

.phone-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.phone-field legend {
    margin: 0 0 7px;
    padding: 0;
    color: var(--ink-2);
    font-size: 14px;
    font-weight: 800;
}

.phone-field__inputs {
    display: grid;
    grid-template-columns: minmax(132px, 0.52fr) minmax(0, 1fr);
    gap: 10px;
}

.phone-field__inputs label {
    min-width: 0;
    gap: 5px;
}

.phone-field__inputs label > span {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink-2);
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 13px;
    background: var(--white);
    color: var(--ink);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}

.lead-form > label {
    margin-top: 16px;
}

.lead-form .btn {
    margin-top: 16px;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.consent-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.consent-check span {
    line-height: 1.45;
}

.honeypot {
    position: absolute;
    left: -10000px;
}

.has-error {
    border-color: var(--clay);
}

.form-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-alert--success {
    background: var(--background);
    color: var(--primary);
}

.form-alert--error {
    background: var(--background);
    color: var(--accent);
}

.page-hero {
    padding: 92px 0 72px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--text) 94%, transparent), color-mix(in srgb, var(--primary) 82%, transparent)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=82');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero .btn--outline {
    background: color-mix(in srgb, var(--surface) 8%, transparent);
    color: var(--white);
    border-color: color-mix(in srgb, var(--surface) 34%, transparent);
}

.content-grid,
.detail-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.rich-text {
    max-width: 760px;
}

.side-panel {
    padding: 24px;
}

.side-panel h2 {
    font-size: 24px;
}

.detail-main {
    min-width: 0;
}

.service-icon-large {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
}

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

.steps div {
    min-height: 112px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    font-weight: 800;
}

.steps span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
}

.sector-card > svg {
    color: var(--teal);
}

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

.blog-listing {
    display: grid;
    gap: 26px;
}

.blog-search {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--text) 6%, transparent);
}

.blog-search > label {
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
}

.blog-search__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
}

.blog-search__field {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search__field > svg {
    position: absolute;
    left: 16px;
    width: 19px;
    height: 19px;
    color: var(--muted);
    pointer-events: none;
}

.blog-search__field input {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px 12px 46px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--background);
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-search__field input::placeholder {
    color: var(--muted);
}

.blog-search__field input:focus {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.blog-search__submit {
    min-height: 50px;
}

.blog-search__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.blog-search__clear:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.blog-search__clear svg {
    width: 17px;
    height: 17px;
}

.blog-search__clear[hidden],
.blog-search-empty[hidden] {
    display: none;
}

.blog-search__status {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.blog-search-empty {
    padding: 44px 24px;
    border: 1px dashed color-mix(in srgb, var(--accent) 48%, var(--line));
    border-radius: var(--radius);
    background: var(--surface);
    text-align: center;
}

.blog-search-empty > span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    color: var(--accent);
}

.blog-search-empty h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 24px;
}

.blog-search-empty p {
    margin: 0;
    color: var(--muted);
}

.article-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 820px);
    margin: 30px 0 0;
}

.article-meta__item {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--surface) 18%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--surface) 8%, transparent);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--surface) 7%, transparent);
    backdrop-filter: blur(8px);
}

.article-meta__item::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: var(--accent);
    content: "";
}

.article-meta__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
    border-radius: 9px;
    background: color-mix(in srgb, var(--accent) 13%, transparent);
    color: var(--accent);
}

.article-meta__icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.article-meta__content {
    min-width: 0;
}

.article-meta dt,
.article-meta dd {
    margin: 0;
}

.article-meta dt {
    margin-bottom: 2px;
    color: color-mix(in srgb, var(--surface) 65%, transparent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.article-meta dd,
.article .page-hero .article-meta time {
    display: block;
    margin: 0;
    overflow: hidden;
    color: var(--surface);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.article-main {
    min-width: 0;
}

.article-body {
    max-width: 820px;
}

.article-detail-layout .article-body {
    max-width: none;
}

.article-detail-layout .service-rich-text {
    width: 100%;
    max-width: none;
}

.article-main-image {
    margin: 0 0 28px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 38px color-mix(in srgb, var(--text) 7%, transparent);
}

.article-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-author-card {
    margin-top: 30px;
}

.article-share {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 24px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--border));
    border-radius: 14px;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--accent) 13%, transparent), transparent 36%),
        linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--background) 76%, var(--surface)));
    box-shadow: 0 18px 42px color-mix(in srgb, var(--text) 8%, transparent);
}

.article-share::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 30%, var(--primary)), transparent 88%);
    content: "";
}

.article-share__head {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
}

.article-share__head-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 12%, var(--surface));
    color: var(--primary);
}

.article-share__head-icon svg {
    width: 21px;
    height: 21px;
}

.article-share__eyebrow {
    display: block;
    margin-bottom: 3px;
    color: color-mix(in srgb, var(--accent) 76%, var(--primary));
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.article-share__head h2 {
    margin: 0;
    color: var(--primary);
    font-size: 23px;
    line-height: 1.2;
}

.article-share__head p {
    max-width: 650px;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

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

.article-share__option {
    width: 100%;
    min-height: 74px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    color: var(--primary);
    font: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--text) 4%, transparent);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.article-share__option[hidden] {
    display: none;
}

.article-share__option:hover {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 12px 25px color-mix(in srgb, var(--text) 8%, transparent);
    transform: translateY(-2px);
}

.article-share__brand {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: var(--primary);
    color: var(--surface);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.article-share__brand svg {
    width: 20px;
    height: 20px;
}

.article-share__option--linkedin .article-share__brand {
    background: #0a66c2;
}

.article-share__option--facebook .article-share__brand {
    background: #1877f2;
    font-size: 22px;
}

.article-share__option--x .article-share__brand {
    background: #101820;
}

.article-share__option--whatsapp .article-share__brand {
    background: #168f50;
}

.article-share__option--telegram .article-share__brand {
    background: #229ed9;
}

.article-share__option--native .article-share__brand {
    background: var(--accent);
    color: var(--primary);
}

.article-share__copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.article-share__copy strong,
.article-share__copy small {
    display: block;
}

.article-share__copy strong {
    color: var(--primary);
    font-size: 14px;
    line-height: 1.25;
}

.article-share__copy small {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-share__option > svg {
    width: 17px;
    height: 17px;
    color: color-mix(in srgb, var(--primary) 52%, transparent);
}

.article-body h2 {
    margin-top: 34px;
    font-size: 30px;
}

.article-cta {
    margin-top: 34px;
    padding: 24px;
    background: var(--mist);
}

.article-cta h2 {
    margin-top: 0;
}

.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.article-cta__button {
    min-width: 190px;
}

.article-cta__button--whatsapp {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary);
}

.article-cta__button--whatsapp:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--surface);
}

.article-cta__button--phone {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--surface);
}

.article-cta__button--phone:hover {
    border-color: var(--secondary);
    background: var(--secondary);
}

.article-relations {
    display: grid;
    gap: 18px;
    margin-top: 30px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.article-relations strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

.article-relations div div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-relations a,
.article-relations span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--background);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.article-relations a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 0;
    background:
        radial-gradient(circle at 8% 28%, color-mix(in srgb, var(--secondary) 62%, transparent), transparent 34%),
        linear-gradient(145deg, color-mix(in srgb, var(--primary) 92%, #071726), #071a2b 78%);
    color: color-mix(in srgb, var(--surface) 78%, transparent);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-cta-wrap {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--surface) 10%, transparent);
    background: color-mix(in srgb, var(--surface) 3%, transparent);
}

.footer-cta {
    min-height: 205px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
    padding-block: 40px;
}

.footer-cta__copy {
    max-width: 850px;
}

.footer-cta__copy > span,
.footer-column__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-cta h2 {
    max-width: 820px;
    margin: 0;
    color: var(--white);
    font-size: clamp(29px, 2.65vw, 42px);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.footer-cta p {
    max-width: 720px;
    margin: 12px 0 0;
    color: color-mix(in srgb, var(--surface) 68%, transparent);
    font-size: 15px;
}

.footer-cta__button {
    min-height: 54px;
    padding-inline: 24px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 16px 34px color-mix(in srgb, #000 22%, transparent);
}

.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) minmax(180px, .82fr) minmax(170px, .7fr) minmax(280px, 1.05fr);
    gap: 42px;
    padding-block: 52px 56px;
}

.footer-brand .brand {
    min-width: 0;
    margin-bottom: 20px;
}

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

.brand--footer .brand__mark {
    width: 68px;
    height: 58px;
    flex-basis: 68px;
}

.brand--footer strong {
    font-size: 20px;
}

.brand--footer .brand__text small {
    max-width: 250px;
    color: color-mix(in srgb, var(--surface) 58%, transparent);
}

.footer-contact h2,
.footer-links h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 19px;
    line-height: 1.25;
}

.footer-brand__intro {
    max-width: 420px;
    margin: 0;
    color: color-mix(in srgb, var(--surface) 70%, transparent);
    font-size: 14px;
    line-height: 1.65;
}

.footer-social {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.footer-social__title {
    color: color-mix(in srgb, var(--surface) 48%, transparent);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.footer-social__links {
    display: grid;
    gap: 7px;
    max-width: 320px;
}

.footer-social__links a {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 15px;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 7px 10px;
    border: 1px solid color-mix(in srgb, var(--surface) 11%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--surface) 4%, transparent);
    color: color-mix(in srgb, var(--surface) 82%, transparent);
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social__links a:hover {
    border-color: color-mix(in srgb, var(--accent) 48%, transparent);
    background: color-mix(in srgb, var(--accent) 9%, transparent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-social__logo {
    display: block;
    width: 30px;
    height: 30px;
    padding: 3px;
    border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
    border-radius: 8px;
    background: var(--white);
    object-fit: contain;
}

.footer-social__links a > svg:last-child {
    width: 15px;
    height: 15px;
    color: color-mix(in srgb, var(--surface) 38%, transparent);
}

.footer-social__links a > span {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.footer-social__links small,
.footer-social__links strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-social__links small {
    color: color-mix(in srgb, var(--surface) 44%, transparent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-social__links strong {
    color: inherit;
    font-size: 12px;
    line-height: 1.35;
}

.footer-column {
    position: relative;
    padding-top: 4px;
}

.footer-column + .footer-column {
    padding-left: 34px;
    border-left: 1px solid color-mix(in srgb, var(--surface) 10%, transparent);
}

.footer-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: color-mix(in srgb, var(--surface) 68%, transparent);
    font-size: 13px;
    font-weight: 650;
    transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-links svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex: 0 0 auto;
}

.footer-contact {
    padding: 23px 24px 22px 32px;
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, var(--surface) 5%, transparent);
    box-shadow: 0 22px 48px color-mix(in srgb, #000 18%, transparent);
}

.footer-contact.footer-column {
    border-left-color: color-mix(in srgb, var(--accent) 20%, transparent);
}

.footer-contact__items {
    display: grid;
    gap: 14px;
}

.footer-contact__items > a,
.footer-contact__items > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
}

.footer-contact__items > a > svg,
.footer-contact__items > div > svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
    border-radius: 50%;
    color: var(--accent);
}

.footer-contact__items span {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.footer-contact__items small {
    color: color-mix(in srgb, var(--surface) 46%, transparent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.footer-contact__items strong {
    overflow-wrap: anywhere;
    color: color-mix(in srgb, var(--surface) 88%, transparent);
    font-size: 12px;
    line-height: 1.55;
}

.footer-whatsapp {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.footer-whatsapp:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-whatsapp svg {
    width: 17px;
    height: 17px;
}

.footer-bottom-wrap {
    border-top: 1px solid color-mix(in srgb, var(--surface) 10%, transparent);
    background: color-mix(in srgb, #061522 68%, transparent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 70px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .025em;
    color: color-mix(in srgb, var(--surface) 52%, transparent);
}

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

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: grid;
    gap: 10px;
}

.floating-action {
    position: relative;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.floating-action--whatsapp {
    background: var(--accent);
}

.floating-action--phone {
    background: var(--primary);
}

.floating-action:hover,
.floating-action:focus-visible {
    animation: none;
    transform: translateY(-3px) scale(1.06);
    filter: brightness(1.08);
}

.floating-action:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 72%, var(--surface));
    outline-offset: 4px;
}

@keyframes floating-action-attention {
    0%, 5%, 18%, 100% {
        transform: translateY(0) rotate(0) scale(1);
        box-shadow: var(--shadow);
    }
    7% {
        transform: translateY(-5px) rotate(0) scale(1.08);
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 42%, transparent), var(--shadow);
    }
    10% {
        transform: translateY(-3px) rotate(-7deg) scale(1.06);
        box-shadow: 0 0 0 9px color-mix(in srgb, var(--accent) 13%, transparent), var(--shadow);
    }
    13% {
        transform: translateY(-3px) rotate(7deg) scale(1.06);
        box-shadow: 0 0 0 15px transparent, var(--shadow);
    }
    16% {
        transform: translateY(0) rotate(0) scale(1);
        box-shadow: var(--shadow);
    }
}

@media (min-width: 721px) and (prefers-reduced-motion: no-preference) {
    .floating-action--whatsapp {
        animation: floating-action-attention 14s ease-in-out 4s infinite;
    }

    .floating-action--phone {
        animation: floating-action-attention 14s ease-in-out 11s infinite;
    }
}

.floating-action svg,
.mobile-sticky-actions svg {
    width: 25px;
    height: 25px;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 150px;
    z-index: 40;
    width: 50px;
    height: 50px;
    display: grid;
    padding: 0;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 62%, transparent);
    border-radius: 50%;
    background: var(--primary);
    color: var(--surface);
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.4;
}

.mobile-sticky-actions {
    display: none;
}

@media (max-width: 1220px) {
    .header-container {
        width: min(100% - 32px, 1420px);
    }

    .brand {
        min-width: 218px;
    }

    .brand strong {
        font-size: 17px;
    }

    .desktop-nav a,
    .nav-dropdown > a {
        padding-inline: 8px;
        font-size: 13px;
    }

    .nav-actions .btn {
        padding-inline: 12px;
        font-size: 13px;
    }
}

@media (max-width: 1180px) {
    .desktop-nav,
    .nav-actions .btn {
        display: none;
    }

    .icon-button {
        display: grid;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .nav {
        min-height: 82px;
    }
}

@media (max-width: 1080px) {
    .desktop-nav,
    .nav-actions .btn {
        display: none;
    }

    .icon-button {
        display: grid;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .trust-band__grid,
    .post-grid,
    .service-grid,
    .featured-service-grid,
    .tool-card-grid,
    .audience-grid,
    .sector-grid,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta {
        gap: 34px;
    }

    .footer-main > .footer-column:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .reference-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .document-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .content-grid,
    .detail-grid,
    .article-detail-layout,
    .intro-grid,
    .tool-grid,
    .contact-grid,
    .split,
    .hero__inner,
    .corporate-panel__content,
    .audience-finder,
    .calculator-layout,
    .tool-content-layout,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .tool-service-cta,
    .service-sticky-sidebar {
        position: static;
    }

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

    .audience-finder__stage {
        min-height: auto;
    }

    .hero__inner {
        gap: 34px;
        padding-top: 62px;
    }

    .hero__visual {
        min-height: 500px;
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }

    .hero-card--top {
        right: 2%;
    }

    .hero-card--bottom {
        left: 2%;
    }

    .hero__trust {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 20px;
    }

    .hero__trust strong {
        max-width: none;
    }

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

    .audience-card,
    .audience-card:nth-child(1),
    .audience-card:nth-child(2),
    .audience-card:nth-child(6),
    .audience-card:nth-child(7) {
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .topbar__inner {
        min-height: 34px;
        justify-content: space-between;
        gap: 10px;
        padding: 0;
        flex-wrap: nowrap;
    }

    .topbar__assurance,
    .topbar__contact {
        min-width: 0;
        width: auto;
    }

    .topbar__contact {
        margin-left: auto;
        justify-content: flex-end;
    }

    .topbar__assurance > span {
        gap: 6px;
        white-space: nowrap;
    }

    .topbar .topbar__assurance-long {
        display: none;
    }

    .topbar .topbar__assurance-short {
        display: inline;
        color: color-mix(in srgb, var(--surface) 82%, transparent);
        font-size: 10px;
        font-weight: 750;
        letter-spacing: .02em;
    }

    .topbar__contact a {
        padding: 0;
        font-size: 10px;
        font-weight: 750;
        white-space: nowrap;
    }

    .topbar__contact a:last-child {
        display: none;
    }

    .topbar__contact a + a::before {
        display: none;
    }

    .header-container {
        width: min(100% - 24px, 1420px);
    }

    .nav {
        min-height: 68px;
        gap: 12px;
    }

    .brand {
        min-width: 0;
        max-width: 230px;
    }

    .brand strong {
        font-size: 15px;
        line-height: 1.12;
    }

    .brand__mark {
        width: 42px;
        height: 36px;
        flex-basis: 42px;
    }

    .brand__text small {
        display: none;
    }

    .nav-actions {
        gap: 8px;
        padding-left: 0;
        border-left: 0;
    }

    .mobile-nav {
        width: min(100% - 24px, 720px);
        max-height: calc(100vh - 118px);
        max-height: calc(100dvh - 118px);
        margin-bottom: 10px;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: color-mix(in srgb, var(--accent) 62%, transparent) transparent;
    }

    .language-link {
        min-width: 42px;
        width: 42px;
        height: 42px;
        display: inline-flex;
        gap: 3px;
        padding: 0;
        border-radius: var(--radius);
        font-size: 10px;
        line-height: 1;
    }

    .language-link__label {
        display: none;
    }

    .language-link__short {
        display: inline;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .04em;
    }

    .language-link svg {
        width: 14px;
        height: 14px;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        padding: 48px 0 34px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .hero p,
    .page-hero p {
        font-size: 17px;
    }

    .blog-search {
        padding: 16px;
    }

    .blog-search__controls {
        grid-template-columns: 1fr;
    }

    .blog-search__submit,
    .blog-search__clear {
        width: 100%;
    }

    .article-meta {
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 26px;
    }

    .article-meta__item {
        padding: 13px 14px;
    }

    .article-share {
        gap: 18px;
        padding: 22px 18px 18px;
    }

    .article-share__head {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .article-share__head-icon {
        width: 42px;
        height: 42px;
    }

    .article-share__head h2 {
        font-size: 20px;
    }

    .article-share__grid {
        grid-template-columns: 1fr;
    }

    .article-share__option {
        min-height: 68px;
    }

    .article-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .article-cta__button {
        width: 100%;
    }

    .hero__visual {
        min-height: 400px;
    }

    .hero__visual::before {
        right: 0;
        width: 100%;
        height: 82%;
    }

    .hero-portrait {
        width: min(86%, 310px);
        height: 390px;
    }

    .hero-portrait__fallback {
        width: min(76vw, 280px);
        height: min(76vw, 280px);
        margin-bottom: 38px;
    }

    .hero-portrait__fallback span {
        font-size: 58px;
    }

    .hero-card {
        width: 136px;
        min-height: 108px;
        padding: 14px;
    }

    .hero-card strong {
        margin-top: 10px;
        font-size: 28px;
    }

    .hero-card--top {
        top: 12%;
        right: 0;
    }

    .hero-card--bottom {
        left: 0;
        bottom: 14%;
    }

    .hero__trust {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: auto;
        padding: 24px;
    }

    .hero__trust strong {
        font-size: 20px;
    }

    .hero__brandline {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-bottom: 12px;
        font-size: 30px;
    }

    .hero__brandline span {
        font-size: 1em;
    }

    .hero__brandline strong {
        font-size: 1em;
    }

    .hero-logo-track {
        gap: 10px;
    }

    .hero-logo-track p {
        font-size: 15px;
    }

    .hero__stats,
    .trust-band__grid,
    .post-grid,
    .post-grid--wide,
    .service-grid,
    .featured-service-grid,
    .tool-card-grid,
    .reference-logo-grid,
    .document-proof-grid,
    .audience-grid,
    .sector-grid,
    .form-grid,
    .footer-main,
    .steps,
    .check-list--columns,
    .vat-tool {
        grid-template-columns: 1fr;
    }

    .references-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .reference-logo-grid {
        gap: 14px;
        margin-bottom: 42px;
    }

    .reference-logo-card {
        min-height: 76px;
    }

    .document-proof-card__paper {
        aspect-ratio: 1;
    }

    .document-lightbox {
        padding: 12px;
    }

    .document-lightbox__dialog {
        width: 100%;
        max-height: 94vh;
    }

    .document-lightbox__header {
        min-height: 56px;
        padding: 8px 8px 8px 16px;
    }

    .document-lightbox__body {
        padding: 10px;
    }

    .document-lightbox__body img {
        max-height: calc(94vh - 80px);
    }

    .references-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .calculator-panel {
        padding: 22px;
    }

    .calculator-panel__head {
        align-items: flex-start;
    }

    .calculator-panel__head h2,
    .calculator-side h2 {
        font-size: 23px;
    }

    .calculator-form {
        grid-template-columns: 1fr;
    }

    .tool-copy-block,
    .tool-example,
    .tool-service-cta {
        padding: 22px;
    }

    .tool-copy-block h2,
    .tool-example h2,
    .tool-faq h2,
    .tool-service-cta h2 {
        font-size: 25px;
    }

    .tool-steps,
    .tool-audience-list,
    .tool-example {
        grid-template-columns: 1fr;
    }

    .tool-example > strong {
        min-width: 0;
        width: 100%;
    }

    .service-rich-text,
    .service-profile-card,
    .service-link-box,
    .service-contact-box {
        padding: 22px;
    }

    .service-profile-card {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .service-profile-card img {
        width: 72px;
        height: 72px;
    }

    .tool-faq > span,
    .tool-faq > h2 {
        padding-inline: 22px;
    }

    .tool-faq > span {
        padding-top: 22px;
    }

    .audience-finder {
        display: block;
    }

    .audience-finder__nav {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 14px;
        scroll-snap-type: x mandatory;
    }

    .audience-finder__nav button {
        min-width: 230px;
        scroll-snap-align: start;
    }

    .audience-finder__rail {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
        padding: 20px;
    }

    .audience-finder__rail strong {
        text-align: left;
    }

    .audience-profile {
        min-height: auto;
        padding: 24px 20px 92px;
    }

    .audience-profile__main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "needs"
            "next";
        gap: 22px;
    }

    .audience-profile h3 {
        font-size: 31px;
    }

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

    .audience-profile__next .btn {
        width: 100%;
    }

    .audience-finder__all {
        left: 20px;
        right: auto;
        bottom: 24px;
    }

    .audience-card,
    .audience-card:nth-child(1),
    .audience-card:nth-child(2),
    .audience-card:nth-child(6),
    .audience-card:nth-child(7) {
        grid-column: auto;
    }

    .section {
        padding: 62px 0;
    }

    .section--tight {
        padding: 18px 0;
    }

    .page-hero {
        padding: 70px 0 56px;
    }

    .breadcrumb {
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .post-card,
    .service-card,
    .sector-card {
        min-height: auto;
    }

    .section-heading--compact {
        margin-bottom: 26px;
    }

    .featured-service-card {
        min-height: 174px;
        grid-template-rows: auto auto;
        scroll-snap-align: start;
    }

    .featured-service-card__head {
        min-height: 0;
        padding: 18px 18px 7px;
    }

    .featured-service-card__head h3 {
        font-size: 18px;
    }

    .featured-service-card__body {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
        align-items: start;
        gap: 10px;
        padding: 0 18px 16px;
    }

    .featured-service-card__body p {
        max-width: none;
    }

    .featured-service-card__body a {
        flex: none;
        width: fit-content;
    }

    .featured-service-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 82vw);
        gap: 12px;
        overflow-x: auto;
        padding: 2px 2px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: color-mix(in srgb, var(--gold) 55%, transparent) transparent;
    }

    .section--cta-band {
        padding: 0 0 52px;
    }

    .cta-band {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 24px;
    }

    .cta-band h2 {
        font-size: 25px;
    }

    .cta-band .btn {
        width: 100%;
    }

    .audience-card {
        min-height: auto;
    }

    .audience-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 24px;
    }

    .audience-cta .btn {
        width: 100%;
    }

    .corporate-panel-section {
        padding: 52px 0 58px;
    }

    .corporate-panel__hero {
        min-height: 330px;
        padding: 48px 24px;
    }

    .corporate-panel__content {
        gap: 24px;
        padding: 0;
    }

    .corporate-panel__text {
        padding: 28px 0 0;
    }

    .corporate-panel__card {
        margin-top: 0;
        padding: 28px 24px;
    }

    .corporate-panel__card h3 {
        font-size: 26px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 20px 0;
    }

    .footer-main {
        gap: 28px;
        padding: 38px 0 44px;
    }

    .footer-cta {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 22px;
        padding-block: 34px;
    }

    .footer-cta h2 {
        font-size: 31px;
    }

    .footer-cta__button {
        width: 100%;
    }

    .footer-column,
    .footer-column + .footer-column,
    .footer-main > .footer-column:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .footer-contact {
        padding: 24px;
        border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .brand--footer .brand__text small {
        display: block;
    }

    body {
        padding-bottom: 74px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .floating-actions {
        display: none;
    }

    .mobile-sticky-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: color-mix(in srgb, var(--surface) 96%, transparent);
        border-top: 1px solid var(--line);
        box-shadow: 0 -12px 30px color-mix(in srgb, var(--text) 12%, transparent);
        backdrop-filter: blur(14px);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    body.menu-open .mobile-sticky-actions {
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + env(safe-area-inset-bottom)));
    }

    .back-to-top {
        right: 12px;
        bottom: calc(88px + env(safe-area-inset-bottom));
        width: 46px;
        height: 46px;
        z-index: 69;
    }

    body.menu-open .back-to-top {
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
    }

    .mobile-sticky-actions a {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: var(--radius);
        color: var(--white);
        font-weight: 900;
        line-height: 1.1;
    }

    .mobile-sticky-actions a:first-child {
        background: var(--primary);
    }

    .mobile-sticky-actions a:last-child {
        background: var(--accent);
    }
}

/* Blog article reading experience */
.article-hero {
    padding: 46px 0 40px;
}

.article-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
}

.article-hero__grid--without-image {
    grid-template-columns: minmax(0, 900px);
}

.article-hero__content {
    min-width: 0;
}

.article-hero__content h1 {
    max-width: 900px;
    margin: 10px 0 14px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
}

.article-hero__content > p {
    max-width: 760px;
    margin: 0;
    color: color-mix(in srgb, var(--surface) 78%, transparent);
    font-size: 17px;
    line-height: 1.65;
}

.article-hero__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid color-mix(in srgb, var(--surface) 24%, transparent);
    border-radius: 16px;
    background: color-mix(in srgb, var(--surface) 8%, transparent);
    box-shadow: 0 24px 55px color-mix(in srgb, #000 28%, transparent);
}

.article-hero__media::after {
    position: absolute;
    inset: 0;
    border: 1px solid color-mix(in srgb, var(--surface) 14%, transparent);
    border-radius: inherit;
    box-shadow: inset 0 0 0 5px color-mix(in srgb, var(--primary) 7%, transparent);
    content: "";
    pointer-events: none;
}

.article-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-hero .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
}

.article-hero .article-meta__item {
    flex: 1 1 155px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    padding: 9px 11px;
}

.article-hero .article-meta__icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
}

.article-hero .article-meta__icon svg {
    width: 15px;
    height: 15px;
}

.article-hero .article-meta dt {
    font-size: 9px;
}

.article-hero .article-meta dd,
.article .article-hero .article-meta time {
    font-size: 12px;
}

.article-detail-section {
    padding-top: 36px;
}

.article-detail-layout {
    gap: 32px;
}

.article-sidebar {
    max-height: calc(100vh - 126px);
    padding-right: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: color-mix(in srgb, var(--accent) 60%, transparent) transparent;
    scrollbar-width: thin;
}

.article-content {
    min-height: 0;
}

.article-content > p:first-child {
    margin-top: 0;
    color: color-mix(in srgb, var(--primary) 82%, var(--muted));
    font-size: 18px;
    line-height: 1.75;
}

.article-content h2 {
    scroll-margin-top: 126px;
    transition: color 180ms ease;
}

.article-content h2:target {
    color: var(--accent);
}

.article-toc {
    border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
    border-radius: 14px;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--accent) 10%, transparent), transparent 42%),
        var(--surface);
    box-shadow: 0 14px 34px color-mix(in srgb, var(--text) 7%, transparent);
}

.article-toc--desktop {
    padding: 20px;
}

.article-toc__heading {
    position: relative;
    padding: 0 54px 14px 0;
    border-bottom: 1px solid var(--border);
}

.article-toc__heading > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-toc__heading > span svg {
    width: 14px;
    height: 14px;
}

.article-toc .article-toc__heading h2 {
    margin: 5px 0 0;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.15;
}

.article-toc__heading small {
    position: absolute;
    top: 2px;
    right: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.article-toc ol {
    display: grid;
    gap: 2px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: article-toc;
}

.article-toc li {
    margin: 0;
    counter-increment: article-toc;
}

.article-toc a {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
    align-items: start;
    padding: 8px 7px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.article-toc a::before {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: color-mix(in srgb, var(--accent) 11%, transparent);
    color: var(--accent);
    content: counter(article-toc, decimal-leading-zero);
    font-size: 9px;
    font-weight: 900;
}

.article-toc a:hover,
.article-toc a:focus-visible {
    background: color-mix(in srgb, var(--accent) 9%, transparent);
    color: var(--primary);
    transform: translateX(2px);
}

.article-toc--mobile {
    display: none;
    margin: 0 0 18px;
    overflow: hidden;
}

.article-toc--mobile summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 18px;
    gap: 10px;
    align-items: center;
    padding: 15px 17px;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
}

.article-toc--mobile summary::-webkit-details-marker {
    display: none;
}

.article-toc--mobile summary > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 900;
}

.article-toc--mobile summary > span svg,
.article-toc--mobile summary > svg {
    width: 17px;
    height: 17px;
    color: var(--accent);
}

.article-toc--mobile summary > small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.article-toc--mobile summary > svg {
    transition: transform 180ms ease;
}

.article-toc--mobile[open] summary > svg {
    transform: rotate(180deg);
}

.article-toc--mobile nav {
    padding: 0 14px 14px;
    border-top: 1px solid var(--border);
}

@media (max-width: 1080px) {
    .article-sidebar {
        max-height: none;
        padding-right: 0;
        overflow: visible;
    }

    .article-toc--desktop {
        display: none;
    }

    .article-toc--mobile {
        display: block;
    }
}

@media (max-width: 860px) {
    .article-hero__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .article-hero__media {
        width: 100%;
        max-height: none;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 720px) {
    .article-hero {
        padding: 28px 0 24px;
    }

    .article-hero__grid {
        gap: 18px;
    }

    .article-hero__content h1 {
        margin: 8px 0 11px;
        font-size: 32px;
        line-height: 1.1;
    }

    .article-hero__content > p {
        font-size: 15px;
        line-height: 1.55;
    }

    .article-hero .article-meta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-top: 15px;
    }

    .article-hero .article-meta__item {
        display: block;
        min-width: 0;
        padding: 9px 7px;
        text-align: center;
    }

    .article-hero .article-meta__icon {
        display: none;
    }

    .article-hero .article-meta dt {
        margin-bottom: 3px;
        font-size: 8px;
        white-space: nowrap;
    }

    .article-hero .article-meta dd,
    .article .article-hero .article-meta time {
        font-size: 11px;
    }

    .article-hero__media {
        max-height: none;
        border-radius: 12px;
    }

    .article-detail-section {
        padding: 22px 0 48px;
    }

    .article-detail-layout {
        gap: 24px;
    }

    .article-content > p:first-child {
        font-size: 16px;
        line-height: 1.68;
    }

    .article-content h2 {
        scroll-margin-top: 104px;
    }

    .article-toc--mobile summary {
        padding: 14px;
    }

    .article-toc--mobile summary > small {
        display: none;
    }

    .article-toc--mobile summary {
        grid-template-columns: minmax(0, 1fr) 18px;
    }
}
