:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-alt: #e8eff8;
    --border: #c6d1df;
    --text: #132238;
    --muted: #46556d;
    --accent: #0f3d88;
    --accent-soft: #dfeafa;
    --success: #1f7a45;
    --warning: #8f5a00;
    --danger: #9f2a2a;
}

* { box-sizing: border-box; }
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: "Geom", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 61, 136, 0.08), transparent 28%),
        linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
}

button,
input,
select,
textarea,
label,
summary,
.button-link,
.link-button,
.icon-button {
    font-family: inherit;
}

button,
input,
select,
textarea,
summary {
    font-size: inherit;
    line-height: inherit;
}

a { color: var(--accent); }
.button-link:focus-visible,
button:focus-visible,
a[href]:focus-visible,
input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
[role="tab"]:focus-visible {
    outline: 3px solid rgba(91, 152, 185, 0.45);
    outline-offset: 3px;
}
input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):focus-visible,
select:focus-visible,
textarea:focus-visible {
    border-color: rgba(15, 61, 136, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 0 0 4px rgba(91, 152, 185, 0.14);
}
.skip-link {
    position: absolute;
    top: 14px;
    left: 24px;
    z-index: 500;
    padding: 10px 16px;
    border-radius: 12px;
    background: #0f3d88;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(15, 61, 136, 0.22);
    transform: translateY(-160%);
    transition: transform 0.18s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid rgba(91, 152, 185, 0.38);
    outline-offset: 2px;
}

.page-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
}

.page-back-link:hover,
.page-back-link:focus-visible {
    color: var(--text);
}

.page-back-link i {
    font-size: 0.95rem;
    line-height: 1;
}

.shell { max-width: 1320px; margin: 0 auto; padding: 28px 24px 56px; overflow-x: clip; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 61, 136, 0.1);
    box-shadow: 0 18px 42px rgba(15, 61, 136, 0.08);
}
.site-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}
.site-header-top {
    display: grid;
    grid-template-columns: minmax(290px, 1.05fr) minmax(360px, auto) minmax(280px, 1fr);
    grid-template-areas: "logo eu actions";
    align-items: center;
    gap: 24px;
    min-height: 100px;

}
.site-logo-link,
.site-eu-logo-wrap {
    display: inline-flex;
    align-items: center;
}
.site-logo-link {
    grid-area: logo;
    justify-self: start;
    text-decoration: none;
    width: clamp(182px, 16vw, 232px);
}
.site-eu-logo-wrap {
    grid-area: eu;
    justify-self: center;
}
.site-logo-image {
    display: block;
    width: 100%;
    height: auto;
}
.site-eu-logo-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: clamp(64px, 5.2vw, 88px);
    object-fit: contain;
}
.site-header-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    justify-self: end;
}
.header-utility-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid rgba(15, 61, 136, 0.14);
    border-radius: 14px;
    background: #ffffff;
    color: var(--accent);
    box-shadow: 0 10px 22px rgba(15, 61, 136, 0.08);
}
.nav-toggle:hover {
    background: #f8fbff;
    color: var(--accent);
    box-shadow: 0 12px 26px rgba(15, 61, 136, 0.1);
    transform: none;
}
.nav-toggle i {
    font-size: 1.1rem;
}
.lang-form-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding-left: 2px;
}
.lang-link {
    min-height: 0;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3f648e;
    box-shadow: none;
    font-size: 0.96rem;
    font-weight: 700;
}
.lang-link:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
    color: var(--accent);
}
.lang-link.is-active {
    color: var(--accent);
}
.lang-divider {
    color: rgba(19, 34, 56, 0.58);
    font-weight: 600;
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
@media (max-width: 1180px) and (min-width: 761px) {
    .site-header-top {
        grid-template-columns: minmax(260px, 1fr) auto;
        grid-template-areas:
            "eu eu"
            "logo actions";
        row-gap: 12px;
        min-height: 0;
        padding: 12px 0 10px;
    }
    .site-logo-link {
        width: clamp(194px, 19.5vw, 240px);
    }
    .site-eu-logo-image {
        height: clamp(56px, 5.8vw, 74px);
    }
    .site-header-actions {
        gap: 14px;
    }
    .site-nav-row {
        gap: 14px;
    }
}
.nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    flex-wrap: nowrap;
    overflow: visible;
    min-width: 0;
}
.site-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 2px 0 14px;
    border-top: 0;
}
.nav-account {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    flex: 0 0 auto;
}
.nav a { text-decoration: none; font-weight: 700; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.nav-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    flex-wrap: nowrap;
    width: 100%;
    overflow: visible;
    padding: 0;
}
.nav-menu {
    position: relative;
    flex: 0 0 auto;
}
.nav-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: none;
    transition: color 0.18s ease;
}
.nav-menu-trigger:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #9f2a2a;
}
.nav-menu-trigger i {
    color: currentColor;
}
.nav-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 280px;
    margin-top: 10px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(15, 61, 136, 0.12);
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(15, 61, 136, 0.12);
    display: none;
    z-index: 10;
}
.nav-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
}
.nav-menu.open .nav-dropdown {
    display: grid;
    gap: 10px;
}
.nav-dropdown-group {
    display: grid;
    gap: 4px;
}
.nav-dropdown-group + .nav-dropdown-group {
    padding-top: 10px;
    border-top: 1px solid rgba(15, 61, 136, 0.08);
}
.nav-dropdown-heading {
    color: #5B98B9;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.nav-dropdown a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
}
.nav-dropdown .button-link,
.nav-dropdown .button-link.secondary {
    min-height: 0;
    width: 100%;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #000000;
    box-shadow: none;
    justify-content: flex-start;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}
.nav-dropdown .button-link:hover,
.nav-dropdown .button-link:focus-visible,
.nav-dropdown .button-link.secondary:hover,
.nav-dropdown .button-link.secondary:focus-visible {
    background: transparent;
    color: #8D3639;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}
.nav-simple-link {
    flex: 0 0 auto;
    white-space: nowrap;
}
.site-nav-row .nav-simple-link {
    min-height: 0;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #000000;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 500;
}
.site-nav-row .nav-simple-link:hover {
    background: transparent;
    color: #000000;
    box-shadow: none;
}
.site-nav-row .nav-cta-link {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: #8CA543;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(140, 165, 67, 0.24);
    font-size: 1.02rem;
    font-weight: 700;
}
.site-nav-row .nav-cta-link:hover {
    background: #789238;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(120, 146, 56, 0.28);
}
.top-tools {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
}
.button-link, button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 61, 136, 0.18);
    transition: transform 0.3s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.button-link:hover, button:hover {
    transform: translateY(-1px);
    background: #12479e;
    box-shadow: 0 14px 28px rgba(15, 61, 136, 0.22);
}
.button-link.secondary, button.secondary {
    background: #f7faff;
    color: #132238;
    box-shadow: none;
    border: 1px solid rgba(15, 61, 136, 0.18);
}
.button-link.secondary:hover, button.secondary:hover {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: rgba(15, 61, 136, 0.28);
    box-shadow: 0 10px 22px rgba(15, 61, 136, 0.08);
}
.button-link.secondary.filter-reset-link,
button.secondary.filter-reset-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(92, 103, 128, 0.1);
    color: #5c6780;
    border-color: rgba(92, 103, 128, 0.2);
    box-shadow: none;
}
.button-link.secondary.filter-reset-link:hover,
.button-link.secondary.filter-reset-link:focus-visible,
button.secondary.filter-reset-link:hover,
button.secondary.filter-reset-link:focus-visible {
    background: #5c6780;
    color: #ffffff;
    border-color: #5c6780;
    box-shadow: 0 12px 24px rgba(92, 103, 128, 0.22);
}
.lang-form {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin: 0;
}
.notification-menu {
    position: relative;
}
.notification-trigger,
.notification-trigger.secondary {
    position: relative;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 14px;
    border: 0;
    background: #5B98B9;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(91, 152, 185, 0.26);
}
.notification-trigger:hover,
.notification-trigger.secondary:hover,
.notification-trigger:focus-visible,
.notification-trigger.secondary:focus-visible {
    background: #4a87a8;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(74, 135, 168, 0.3);
    transform: none;
}
.notification-trigger i {
    font-size: 1.05rem;
    line-height: 1;
    color: #ffffff;
}
.notification-badge {
    position: absolute;
    right: -6px;
    bottom: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #8D3639;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(141, 54, 57, 0.24);
}
.account-menu {
    position: relative;
    width: min(320px, 38vw);
}
.account-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    min-width: 0;
    text-align: left;
    padding: 8px 14px 8px 8px;
    border-radius: 14px;
    border: 1px solid rgba(15, 61, 136, 0.12);
    background: var(--surface);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(15, 61, 136, 0.05);
}
.account-trigger:hover {
    background: #f8fbff;
    color: var(--text);
    box-shadow: 0 12px 26px rgba(15, 61, 136, 0.08);
    border-color: rgba(15, 61, 136, 0.18);
    transform: none;
}
.account-trigger-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.account-trigger-name {
    display: block;
    font-size: 0.98rem;
    line-height: 1.25;
}
.account-trigger-organization {
    display: block;
    margin-top: 2px;
    color: #3f516a;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
}
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 42px;
    font-size: 0.98rem;
    font-weight: 700;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.account-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(15, 61, 136, 0.12);
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(15, 61, 136, 0.12);
    display: none;
    z-index: 10;
}
.notification-dropdown {
    position: absolute;
    left: 0;
    right: auto;
    top: calc(100% + 10px);
    width: min(380px, calc(100vw - 24px));
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(15, 61, 136, 0.12);
    background: var(--surface);
    box-shadow: 0 18px 40px rgba(15, 61, 136, 0.12);
    display: none;
    z-index: 12;
    transform-origin: top left;
}
.notification-menu.open .notification-dropdown {
    display: block;
}
.notification-dropdown-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.notification-title {
    margin: 0;
    font-weight: 800;
    color: var(--text);
}
.notification-subtitle {
    margin: 2px 0 0;
    color: #3f516a;
    font-size: 0.88rem;
}
.notification-mark-all {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: none;
}
.notification-mark-all:hover,
.notification-mark-all:focus-visible {
    background: transparent;
    color: #8D3639;
    box-shadow: none;
}
.notification-list {
    display: grid;
    gap: 8px;
    max-height: 420px;
    overflow-y: auto;
}
.notification-item {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(63, 81, 106, 0.14);
    background: #f4f7fa;
    position: relative;
}
.notification-item:hover,
.notification-item:focus-visible {
    text-decoration: none;
    color: inherit;
    background: #f8fbff;
    border-color: rgba(15, 61, 136, 0.16);
}
.notification-item.is-unread {
    border-color: rgba(91, 152, 185, 0.4);
    background: linear-gradient(180deg, rgba(91, 152, 185, 0.16) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: inset 4px 0 0 #5B98B9;
}
.notification-item.is-unread::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8D3639;
}
.notification-item:not(.is-unread) {
    border-color: rgba(63, 81, 106, 0.12);
    background: #f2f4f7;
}
.notification-item:not(.is-unread) .notification-item-top strong {
    color: #5b6c81;
}
.notification-item:not(.is-unread) .notification-item-body {
    color: #637488;
}
.notification-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-right: 14px;
}
.notification-item-top strong {
    color: var(--text);
    line-height: 1.4;
}
.notification-item-top span {
    color: #41556e;
    font-size: 0.8rem;
    white-space: nowrap;
}
.notification-item-body {
    color: #24364d;
    font-size: 0.92rem;
    line-height: 1.55;
}
.notification-empty {
    padding: 18px 14px;
    border-radius: 16px;
    border: 1px dashed rgba(15, 61, 136, 0.14);
    color: #41556e;
    text-align: center;
}
.account-menu.open .account-dropdown {
    display: block;
}
.account-name {
    margin: 0 0 4px;
    font-weight: 700;
}
.account-meta {
    margin: 0 0 12px;
    color: #3f516a;
    font-size: 0.92rem;
}
.inline-form {
    display: inline;
}
.link-button {
    width: 100%;
    justify-content: center;
}
.account-links {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}
.account-organization-switcher {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
}
.account-organization-switcher label {
    font-size: 0.88rem;
    color: #3f516a;
}
.panel {
    background: var(--surface);
    border: 1px solid rgba(15, 61, 136, 0.1);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 44px rgba(15, 61, 136, 0.07);
}
.form-layout {
    display: grid;
    gap: 22px;
}
.form-section {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(15, 61, 136, 0.09);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.form-section h2,
.form-section h3 {
    margin-bottom: 0;
    font-size: 1.05rem;
}
.section-intro {
    margin: 0;
    font-size: 0.96rem;
}
.grid { display: grid; gap: 18px; }
@media (min-width: 900px) {
    .grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .field.span-2 { grid-column: span 2; }
}
.stats { display: grid; gap: 12px; }
@media (min-width: 800px) {
    .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.stat {
    padding: 16px;
    border-radius: 16px;
    background: var(--surface-alt);
}
h1, h2, h3 {
    margin-top: 0;
    line-height: 1.12;
}
h1, h2 { color: var(--accent); }
h1 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
}
h2 {
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}
h3 {
    font-size: 1.08rem;
}
p { color: var(--muted); line-height: 1.6; }
form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
label { font-weight: 600; }
.is-hidden { display: none !important; }
.field ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.field ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.field ul li label {
    font-weight: 500;
}
input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 61, 136, 0.14);
    font: inherit;
    color: var(--text);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
select:not([multiple]) {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.25L6 6.25L11 1.25' stroke='%235B98B9' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    padding-right: 2.8rem;
}
select[multiple] {
    min-height: 150px;
    padding: 8px;
}
textarea { resize: vertical; }
input[type="checkbox"],
input[type="radio"] {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    accent-color: var(--accent);
}
.field > input[type="checkbox"],
.field > input[type="radio"] {
    justify-self: start;
}
.helptext { color: #3f516a; font-size: 0.92rem; }
.field.has-errors > label,
.field.has-errors .field-label,
.field.has-errors .field-label label {
    color: var(--danger);
}
.field.has-errors input[aria-invalid="true"],
.field.has-errors select[aria-invalid="true"],
.field.has-errors textarea[aria-invalid="true"] {
    border-color: #d16b6b;
    box-shadow: 0 0 0 4px rgba(166, 59, 45, 0.12);
    background: #fffafa;
}
.help-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.help-trigger {
    width: 18px;
    height: 18px;
    min-height: 18px;
    min-width: 18px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: help;
    line-height: 1;
    appearance: none;
    vertical-align: middle;
}
.help-trigger:hover,
.help-trigger:focus-visible {
    background: #dbe8fa;
    color: var(--accent);
    box-shadow: none;
    transform: none;
}
.help-bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    min-width: 220px;
    max-width: 280px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--text);
    color: #fff;
    font-size: 0.86rem;
    line-height: 1.45;
    box-shadow: 0 10px 24px rgba(19, 34, 56, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 20;
}
.help-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--text) transparent transparent transparent;
}
.help-tooltip:hover .help-bubble,
.help-tooltip:focus-within .help-bubble {
    opacity: 1;
    visibility: visible;
}
.help-bubble[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
}
.help-bubble[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}
.native-multiselect {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.enhanced-multiselect,
.enhanced-single-select,
.tokenized-input {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.enhanced-multiselect:focus-within,
.enhanced-single-select:focus-within,
.tokenized-input:focus-within,
.file-input-enhanced:focus-within {
    border-color: rgba(15, 61, 136, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 0 0 4px rgba(91, 152, 185, 0.12);
}
.enhanced-multiselect[aria-invalid="true"],
.enhanced-single-select[aria-invalid="true"],
.tokenized-input[aria-invalid="true"],
.file-input-enhanced[aria-invalid="true"] {
    border-color: #d16b6b;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 0 0 4px rgba(166, 59, 45, 0.12);
    background: #fffafa;
}
.enhanced-multiselect-search,
.enhanced-single-select-search,
.tokenized-input-entry {
    width: 100%;
}
.enhanced-single-select-options,
.enhanced-multiselect-options {
    display: grid;
    gap: 6px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;
}
.enhanced-single-select-option,
.enhanced-multiselect-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f8fbff;
    border: 1px solid transparent;
    cursor: pointer;
}
.enhanced-single-select-option:hover,
.enhanced-single-select-option:focus-within,
.enhanced-single-select-option:focus-visible,
.enhanced-multiselect-option:hover,
.enhanced-multiselect-option:focus-within,
.enhanced-multiselect-option:focus-visible {
    border-color: var(--border);
    outline: 3px solid rgba(91, 152, 185, 0.28);
    outline-offset: 2px;
}
.enhanced-single-select-option.is-selected {
    border-color: rgba(15, 61, 136, 0.24);
    background: var(--accent-soft);
}
.enhanced-multiselect-option.is-disabled,
.enhanced-single-select-option.is-disabled {
    cursor: not-allowed;
    opacity: 0.68;
    background: rgba(91, 152, 185, 0.08);
}
.enhanced-multiselect-option.is-disabled:hover,
.enhanced-multiselect-option.is-disabled:focus-within,
.enhanced-multiselect-option.is-disabled:focus-visible,
.enhanced-single-select-option.is-disabled:hover,
.enhanced-single-select-option.is-disabled:focus-within,
.enhanced-single-select-option.is-disabled:focus-visible {
    border-color: transparent;
    outline: none;
}
.enhanced-multiselect-option input[type="checkbox"]:focus-visible,
.enhanced-single-select-option input[type="radio"]:focus-visible,
.tokenized-input-entry:focus-visible,
.enhanced-multiselect-search:focus-visible,
.enhanced-single-select-search:focus-visible,
.file-input-button:focus-visible {
    outline: none;
    box-shadow: none;
}
.enhanced-single-select-option input[type="radio"],
.enhanced-multiselect-option input[type="checkbox"] {
    margin-top: 2px;
    flex: 0 0 18px;
}
.tokenized-input-selected,
.enhanced-multiselect-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 28px;
}
.tokenized-input-empty,
.enhanced-multiselect-empty {
    color: #41556e;
    font-size: 0.92rem;
}
.file-input-enhanced {
    display: grid;
    gap: 10px;
}
.file-input-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}
.file-input-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.file-input-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--accent);
    border-radius: 14px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 61, 136, 0.14);
}
.file-input-button:hover {
    background: #12479e;
    color: #ffffff;
    border-color: #12479e;
    box-shadow: 0 12px 24px rgba(18, 71, 158, 0.18);
    transform: none;
}
.file-input-status {
    color: #384d67;
    font-size: 0.95rem;
    line-height: 1.4;
}
.file-input-status.has-file {
    color: var(--text);
}
.enhanced-multiselect-title {
    margin: 0;
    color: #3f516a;
    font-size: 0.9rem;
    font-weight: 600;
}
.multiselect-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.9rem;
    line-height: 1.2;
}
.multiselect-chip-remove {
    min-width: 16px;
    min-height: 16px;
    width: 16px;
    height: 16px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
}
.multiselect-chip-remove:hover,
.multiselect-chip-remove:focus-visible {
    background: rgba(15, 61, 136, 0.12);
    color: inherit;
    box-shadow: none;
    transform: none;
}
[data-filter-panel-toggle]:hover,
[data-filter-panel-toggle]:focus-visible {
    background: transparent;
    color: var(--accent);
    box-shadow: none;
    transform: none;
}
[data-filter-panel-toggle] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(91, 152, 185, 0.42);
    border-radius: 999px;
    background: rgba(91, 152, 185, 0.18);
    color: #245f7c;
    box-shadow: none;
    white-space: nowrap;
}
[data-filter-panel-toggle] i {
    color: currentColor;
    line-height: 1;
}
[data-filter-panel-toggle]:hover,
[data-filter-panel-toggle]:focus-visible {
    background: #5B98B9;
    color: #ffffff;
    border-color: #5B98B9;
    box-shadow: 0 10px 22px rgba(91, 152, 185, 0.22);
    transform: translateY(-1px);
}
[data-filter-panel-toggle][aria-expanded="true"] {
    background: #5B98B9;
    color: #ffffff;
    border-color: #5B98B9;
    box-shadow: 0 10px 22px rgba(91, 152, 185, 0.22);
}
.errorlist { margin: 0; padding-left: 18px; color: var(--danger); }
.banner {
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    border: 1px solid;
}
.banner.info {
    background: var(--accent-soft);
    border-color: #b9cae6;
    color: #183e68;
}
.banner.success {
    background: #e6f4eb;
    border-color: #badac7;
    color: #1d5d34;
}
.banner.warning {
    background: #fff1dd;
    border-color: #ebc98b;
    color: #734400;
}
.error-summary {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #e1b0b0;
    background: #fff4f4;
}
.error-summary:focus-visible {
    outline: 3px solid rgba(166, 59, 45, 0.24);
    outline-offset: 3px;
}
.error-summary h2 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--danger);
}
.error-summary p {
    margin: 0 0 10px;
    color: var(--muted);
}
.error-summary ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}
.error-summary a {
    color: var(--danger);
    font-weight: 600;
}
.messages { display: grid; gap: 10px; margin-bottom: 16px; padding: 0; }
.messages li {
    list-style: none;
    padding: 14px 16px;
    border-radius: 14px;
    background: #e6f4eb;
    border: 1px solid #badac7;
    color: var(--text);
}
.messages li:focus-visible {
    outline: 3px solid rgba(91, 152, 185, 0.24);
    outline-offset: 3px;
}
.messages li.error {
    background: #fff4f4;
    border-color: #e1b0b0;
    color: var(--danger);
}
.messages li.warning {
    background: #fff1dd;
    border-color: #ebc98b;
    color: #734400;
}
.messages li.info {
    background: var(--accent-soft);
    border-color: #b9cae6;
    color: var(--text);
}
.messages li.success {
    background: #e6f4eb;
    border-color: #badac7;
    color: #1d5d34;
}
.site-footer {
    margin-top: 42px;
    padding: 22px 0 0;
    background: #ffffff;
    border-top: 1px solid rgba(15, 61, 136, 0.08);
}
.site-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}
.site-footer-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: stretch;
    gap: 32px;
}
.footer-brand-group {
    display: grid;
    grid-template-columns: max-content 1px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    min-width: 0;
}
.footer-group-title {
    color: #000000;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: uppercase;
}
.footer-group-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    background: rgba(15, 61, 136, 0.7);
    flex: 0 0 1px;
}
.footer-logo-strip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    min-width: 0;
}
.footer-logo {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.footer-logo-papel {
    height: 60px;
}
.footer-logo-perpel {
    height: 62px;
}
.footer-logo-breakeven {
    height: 52px;
}
.footer-logo-iccs {
    height: 56px;
}
.site-footer-note {
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(0, 1.85fr);
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 10px 0 6px;
}
.site-footer-note-logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    min-width: 0;
    justify-self: start;
    object-fit: contain;
}
.site-footer-note-text {
    margin: 0;
    color: #2d3d54;
    font-size: 0.98rem;
    line-height: 1.7;
}
.site-footer-lower {
    margin-top: 26px;
    width: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 30px 0;
    background: linear-gradient(to bottom, #ececec 0%, #fff 100%);
}
.site-footer-lower-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    grid-template-areas:
        "nav divider contact"
        "bottom bottom bottom";
    gap: 28px;
    align-items: start;
}
.footer-lower-nav {
    grid-area: nav;
    min-width: 0;
    align-self: start;
}
.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
}
.footer-nav-column {
    display: grid;
    align-content: start;
    gap: 20px;
}
.footer-nav-group {
    display: grid;
    gap: 10px;
}
.footer-nav-home,
.footer-nav-heading {
    color: #000000;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    text-decoration: none;
}
.footer-nav-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-nav-list a {
    color: #27394f;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
}
.footer-nav-list a:hover,
.footer-nav-home:hover {
    color: var(--accent);
}
.footer-lower-divider,
.footer-contact-inner-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(15, 61, 136, 0.7);
}
.footer-lower-divider {
    grid-area: divider;
}
.footer-lower-contact {
    grid-area: contact;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
    align-self: stretch;
    min-width: 0;
}
.footer-contact-block,
.footer-social-block {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
}
.footer-contact-heading {
    color: #000000;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}
.footer-contact-content {
    display: grid;
    gap: 10px;
}
.footer-contact-content a {
    color: #27394f;
    font-size: 1.04rem;
    line-height: 1.55;
    text-decoration: none;
}
.footer-contact-content a:hover {
    color: var(--accent);
}
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.footer-social-links a:hover {
    color: #ffffff;
    background: #12479e;
    transform: translateY(-1px);
}
.footer-social-links i {
    font-size: 1.15rem;
    line-height: 1;
}
.footer-bottom-bar {
    grid-area: bottom;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 10px;
    color: #27394f;
    font-size: 0.96rem;
    line-height: 1.45;
}
.footer-bottom-copy {
    text-align: left;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: #27394f;
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: var(--accent);
}
@media (max-width: 1120px) and (min-width: 761px) {
    .site-footer-row {
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        gap: 24px;
    }
    .footer-brand-group {
        width: auto;
        max-width: 100%;
        justify-content: center;
    }
    .footer-logo-strip {
        justify-content: center;
    }
    .site-footer-note {
        grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1.9fr);
        gap: 18px;
        margin-top: 24px;
        padding: 8px 0 4px;
    }
    .site-footer-lower {
        padding: 30px 0;
    }
    .site-footer-lower-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "nav"
            "divider"
            "contact"
            "bottom";
        gap: 22px;
    }
    .footer-lower-divider {
        height: 1px;
        width: 100%;
    }
}
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; }
th, td {
    text-align: left;
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.responsive-table {
    min-width: 640px;
}
.responsive-table td::before {
    display: none;
    content: attr(data-label);
}
.status-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #d8e8fb;
    color: #143c74;
    border: 1px solid rgba(15, 61, 136, 0.26);
    font-size: 0.9rem;
    font-weight: 700;
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tag,
.meta-pill,
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e7f1fb 0%, #dce9f7 100%);
    border: 1px solid rgba(91, 152, 185, 0.42);
    color: #143f63;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}
.tag a,
.meta-pill a,
.status-tag a {
    color: inherit;
    text-decoration: none;
}
.tag a:hover,
.meta-pill a:hover,
.status-tag a:hover {
    text-decoration: underline;
}
.icon-button,
.icon-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px;
    max-height: 36px;
    padding: 0;
    flex: 0 0 36px;
    border-radius: 50%;
    border: 0;
    background: var(--surface-alt);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.icon-button:hover,
.icon-button:focus-visible,
.icon-link:hover,
.icon-link:focus-visible {
    background: var(--accent-soft);
    color: var(--accent);
    transform: translateY(-1px);
}
.icon-button i,
.icon-link i {
    font-size: 1rem;
    line-height: 1;
}
.icon-button-edit,
.icon-link-edit {
    background: var(--accent);
    color: #ffffff;
    border: 0;
    box-shadow: 0 10px 22px rgba(15, 61, 136, 0.16);
}
.icon-button-edit i,
.icon-link-edit i {
    color: #ffffff;
}
.icon-button-edit:hover,
.icon-button-edit:focus-visible,
.icon-link-edit:hover,
.icon-link-edit:focus-visible {
    background: #0b316f;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 61, 136, 0.22);
    transform: translateY(-1px);
}
.icon-button-edit:hover i,
.icon-button-edit:focus-visible i,
.icon-link-edit:hover i,
.icon-link-edit:focus-visible i {
    color: #ffffff;
}
.icon-button-contrast {
    background: var(--icon-button-contrast-bg, var(--accent));
    color: var(--icon-button-contrast-fg, #ffffff);
    border: 0;
    box-shadow: 0 10px 22px rgba(15, 61, 136, 0.1);
}
.icon-button-contrast i {
    color: var(--icon-button-contrast-fg, #ffffff);
}
.icon-button-contrast:hover,
.icon-button-contrast:focus-visible {
    background: var(--icon-button-contrast-bg-hover, var(--icon-button-contrast-bg, var(--accent)));
    color: var(--icon-button-contrast-fg-hover, var(--icon-button-contrast-fg, #ffffff));
    box-shadow: 0 12px 24px rgba(15, 61, 136, 0.14);
}
.icon-button-contrast:hover i,
.icon-button-contrast:focus-visible i {
    color: var(--icon-button-contrast-fg-hover, var(--icon-button-contrast-fg, #ffffff));
}
.section-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-heading i {
    width: 18px;
    flex: 0 0 18px;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1;
}
.detail-item,
.fact-card {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(15, 61, 136, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    min-width: 0;
}
.detail-label,
.fact-label {
    color: #33465f;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}
.detail-value,
.fact-value {
    color: var(--text);
    line-height: 1.6;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.empty-state {
    margin: 0;
    color: #41556e;
    line-height: 1.6;
}
.kv { display: grid; gap: 8px; }
.kv div {
    padding: 12px 14px;
    border-radius: 12px;
    background: #fcfdff;
    border: 1px solid var(--border);
}

@media (max-width: 1366px) and (min-width: 961px) {
    .shell {
        padding: 22px 18px 42px;
    }

    .site-header-inner {
        padding: 0 18px;
    }

    .site-header-top {
        gap: 16px;
        min-height: 88px;
    }

    .site-logo-link {
        width: clamp(162px, 13.8vw, 204px);
    }

    .site-eu-logo-image {
        height: clamp(54px, 4.4vw, 76px);
    }

    .site-nav-row {
        gap: 12px;
        padding: 0 0 10px;
    }

    .nav-group {
        gap: 18px;
    }

    .nav-menu-trigger {
        font-size: 1rem;
        gap: 6px;
    }

    .nav-dropdown {
        min-width: 248px;
        padding: 12px;
    }

    .site-nav-row .nav-simple-link,
    .nav-dropdown .button-link,
    .nav-dropdown .button-link.secondary {
        font-size: 0.92rem;
    }

    .site-nav-row .nav-cta-link,
    .button-link,
    button {
        min-height: 40px;
        padding: 0 16px;
        font-size: 0.92rem;
        border-radius: 11px;
    }

    h1 {
        font-size: clamp(1.62rem, 2.32vw, 2.45rem);
    }

    h2 {
        font-size: clamp(1.22rem, 1.55vw, 1.74rem);
    }

    h3 {
        font-size: 0.98rem;
    }

    .grid {
        gap: 16px;
    }

    .stats {
        gap: 10px;
    }

    .stat {
        padding: 14px;
        border-radius: 14px;
    }

    form {
        gap: 16px;
    }

    .button-row,
    .top-tools {
        gap: 10px;
    }

    .detail-item,
    .fact-card {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .kv div {
        padding: 10px 12px;
        border-radius: 11px;
    }

    .icon-button,
    .icon-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        max-width: 32px;
        min-height: 32px;
        max-height: 32px;
        flex-basis: 32px;
    }

    .icon-button i,
    .icon-link i {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .skip-link,
    .button-link,
    button,
    .icon-button,
    .icon-link,
    .nav-toggle,
    .notification-trigger,
    .account-trigger,
    .footer-social-links a,
    [data-filter-panel-toggle] {
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 760px) {
    .skip-link {
        left: 14px;
        right: 14px;
        top: 10px;
        text-align: center;
    }
    .shell {
        padding: 20px 14px 40px;
    }
    .site-header-inner {
        padding: 0 14px;
    }
    .site-footer-inner {
        padding: 0 14px;
    }
    .top-tools,
    .button-row,
    .site-header-top,
    .site-header-actions {
        width: 100%;
    }
    .site-header-top {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "eu eu"
            "logo actions";
        gap: 14px;
        min-height: 0;
        padding: 14px 0 10px;
    }
    .site-logo-link,
    .site-eu-logo-wrap {
        justify-content: center;
    }
    .site-logo-link {
        justify-self: start;
        width: 100%;
        max-width: 164px;
        margin: 0;
    }
    .site-eu-logo-wrap,
    .site-header-actions {
        justify-self: stretch;
    }
    .site-eu-logo-image {
        height: clamp(56px, 10vw, 70px);
    }
    .site-header-actions {
        align-items: stretch;
        gap: 10px;
    }
    .header-utility-row {
        order: 1;
        justify-content: flex-end;
        width: auto;
        gap: 10px;
    }
    .lang-form-header {
        width: auto;
        justify-content: flex-end;
    }
    .site-nav-row {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 12px;
        padding-bottom: 12px;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav {
        display: none;
        width: 100%;
        align-items: stretch;
        gap: 12px;
        flex-wrap: wrap;
        overflow: visible;
    }
    .site-nav-row.open .nav {
        display: flex;
    }
    .nav-account {
        width: 100%;
        margin-left: 0;
        order: -1;
    }
    .top-tools,
    .account-menu,
    .account-trigger {
        width: 100%;
    }
    .account-trigger-copy {
        flex: 1;
    }
    .header-utility-row,
    .lang-form-header,
    .nav-toggle {
        width: auto;
    }
    .nav-group,
    .nav-menu,
    .nav-menu-trigger {
        width: 100%;
    }
    .nav-menu-trigger {
        gap: 10px;
        min-height: 44px;
        padding: 0 18px;
        border: 1px solid rgba(15, 61, 136, 0.12);
        border-radius: 14px;
        background: #ffffff;
        color: var(--accent);
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 10px 22px rgba(15, 61, 136, 0.05);
    }
    .nav-menu-trigger:hover {
        background: #f8fbff;
        box-shadow: 0 12px 26px rgba(15, 61, 136, 0.08);
        color: var(--accent);
    }
    .site-nav-row .nav-simple-link {
        min-height: 44px;
        padding: 0 18px;
        border: 1px solid rgba(15, 61, 136, 0.12);
        border-radius: 14px;
        background: #ffffff;
        color: var(--accent);
        box-shadow: 0 10px 22px rgba(15, 61, 136, 0.05);
        font-weight: 700;
    }
    .site-nav-row .nav-cta-link {
        border: 0;
        background: #8CA543;
        color: #ffffff;
        box-shadow: 0 12px 24px rgba(140, 165, 67, 0.24);
        font-size: 1rem;
    }
    .site-nav-row .nav-cta-link:hover {
        background: #789238;
        color: #ffffff;
        box-shadow: 0 14px 28px rgba(120, 146, 56, 0.28);
    }
    .button-row {
        display: grid;
        grid-template-columns: 1fr;
    }
    .nav-group {
        flex-wrap: wrap;
        gap: 10px;
    }
    .button-link,
    button {
        width: 100%;
    }
    .icon-button,
    .icon-link,
    button.icon-button,
    a.icon-button,
    a.icon-link {
        width: 36px;
    }
    .nav-toggle {
        width: auto;
    }
    .site-footer {
        margin-top: 32px;
        padding: 20px 0 0;
    }
    .site-footer-row {
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        gap: 24px;
    }
    .footer-brand-group {
        width: min(100%, 28rem);
        max-width: 100%;
        grid-template-columns: 1fr;
        justify-content: center;
        justify-items: center;
        row-gap: 12px;
        column-gap: 0;
    }
    .footer-group-title {
        white-space: normal;
        text-align: center;
    }
    .footer-group-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
    .footer-logo-strip {
        gap: 14px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-logo-papel {
        height: 52px;
    }
    .footer-logo-perpel {
        height: 54px;
    }
    .footer-logo-breakeven {
        height: 46px;
    }
    .footer-logo-iccs {
        height: 48px;
    }
    .site-footer-note {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        margin-top: 22px;
        padding: 8px 0 4px;
    }
    .site-footer-note-logo {
        height: 76px;
    }
    .site-footer-lower {
        margin-top: 22px;
        width: auto;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 24px 0;
    }
    .site-footer-lower-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "nav"
            "divider"
            "contact"
            "bottom";
        gap: 20px;
        padding: 0 14px;
    }
    .footer-nav-columns,
    .footer-lower-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-nav-columns.is-staff-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }
    .footer-lower-divider,
    .footer-contact-inner-divider {
        height: 1px;
        width: 100%;
    }
    .footer-contact-block,
    .footer-social-block {
        align-content: start;
    }
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-bottom-links {
        justify-content: flex-start;
        gap: 12px;
    }
    .account-dropdown {
        left: 0;
        right: 0;
        min-width: 0;
    }
    .nav-dropdown {
        position: static;
        min-width: 0;
        margin-top: 10px;
    }
    .panel {
        padding: 18px;
    }
    .form-section {
        padding: 16px;
    }
    .help-bubble {
        left: 0;
        transform: none;
        max-width: min(280px, calc(100vw - 52px));
    }
    .help-bubble::after {
        left: 18px;
        transform: none;
    }
    .lang-form {
        width: 100%;
        justify-content: space-between;
    }
    .responsive-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0;
    }
    .responsive-table thead {
        display: none;
    }
    .responsive-table,
    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        width: 100%;
    }
    .responsive-table tr {
        margin-bottom: 14px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fcfdff;
    }
    .responsive-table td {
        padding: 8px 0;
        border: 0;
    }
    .responsive-table td::before {
        display: block;
        margin-bottom: 4px;
        color: var(--muted);
        font-size: 0.86rem;
        font-weight: 700;
        text-transform: uppercase;
    }
    .responsive-table td[data-label=""]::before {
        display: none;
    }
    .responsive-table td[colspan] {
        padding: 0;
    }
}
