:root {
    --color-bg: #f8faff;
    --color-bg-soft: #f0f4ff;
    --color-surface: rgba(255, 255, 255, 0.98);
    --color-surface-strong: #ffffff;
    --color-text: #0b1830;
    --color-text-dark: #0b1830;
    --color-text-soft: rgba(11, 24, 48, 0.7);
    --color-muted-dark: #5a6f8e;
    --color-border: rgba(18, 146, 255, 0.15);
    --color-primary: #1292ff;
    --color-primary-dark: #0b4eb2;
    --color-secondary: #11c8ff;
    --color-success: #65c53b;
    --color-accent: rgba(18, 146, 255, 0.08);
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 14px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at top center, rgba(18, 146, 255, 0.08), transparent 30%),
        radial-gradient(circle at 72% 18%, rgba(101, 197, 59, 0.06), transparent 25%),
        linear-gradient(180deg, #f8faff 0%, #f5f7fa 50%, #f0f4ff 100%);
    color: var(--color-text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(248, 250, 255, 0.92);
    border-bottom: 1px solid rgba(18, 146, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    min-width: 0;
}

.site-header__brand-image {
    flex: 0 0 auto;
    width: clamp(70px, 9vw, 108px);
    height: auto;
    filter: drop-shadow(0 0 18px rgba(18, 146, 255, 0.28));
}

.site-header__brand-copy {
    display: flex;
    align-items: center;
    transform: translateY(0.18rem);
    min-width: 0;
    flex: 1 1 auto;
}

.site-header__brand-tagline {
    color: rgba(11, 24, 48, 0.85);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    letter-spacing: 0.01em;
    line-height: 1.2;
    overflow-wrap: anywhere;
    display: block;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-header__menu,
.site-footer__menu {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header__menu {
    flex-wrap: wrap;
    justify-content: flex-end;
    color: rgba(11, 24, 48, 0.8);
    gap: 0.65rem;
}

.site-header__menu a {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible {
    background: rgba(18, 146, 255, 0.1);
    color: #0b4eb2;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid rgba(18, 146, 255, 0.2);
    border-radius: 999px;
    background: rgba(18, 146, 255, 0.06);
}

.language-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    min-height: 2.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    color: rgba(11, 24, 48, 0.7);
    font-size: 0.95rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible {
    background: rgba(18, 146, 255, 0.12);
    color: #0b4eb2;
    transform: translateY(-1px);
}

.language-switcher__link.is-active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(18, 146, 255, 0.16);
}

.site-main {
    display: block;
}

.site-main--default {
    padding: 5rem 0;
}

.entry {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    color: var(--color-text-dark);
}

.entry__content,
.entry__header {
    color: var(--color-text-dark);
}

.content-section {
    padding: 2rem 0 5rem;
}

.content-section--accent {
    background:
        radial-gradient(circle at top left, rgba(18, 146, 255, 0.06), transparent 35%),
        radial-gradient(circle at right center, rgba(101, 197, 59, 0.04), transparent 30%),
        linear-gradient(180deg, rgba(245, 247, 250, 0.5) 0%, rgba(240, 244, 255, 0) 100%);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.section-heading--compact {
    margin-bottom: 1.5rem;
}

.section-heading__eyebrow {
    display: inline-flex;
    margin: 0 0 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(18, 146, 255, 0.1);
    color: #0b4eb2;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(18, 146, 255, 0.2);
}

.section-heading__title {
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: #0b1830;
    overflow-wrap: anywhere;
}

.section-heading__intro {
    margin: 1rem 0 0;
    color: var(--color-text-soft);
    font-size: 1.05rem;
    line-height: 1.72;
}

.narrative-panel .section-heading__title,
.callout-panel .section-heading__title {
    color: var(--color-text-dark);
}

.narrative-panel .section-heading__intro,
.callout-panel .section-heading__intro {
    color: var(--color-muted-dark);
}

.feature-grid,
.service-grid {
    display: grid;
    gap: 1.25rem;
}

.about-copy {
    max-width: 780px;
    display: grid;
    gap: 1rem;
    padding: 2rem 2.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.94) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about-copy__lead {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.75;
    color: var(--color-text-dark);
}

.about-copy p {
    margin: 0;
    color: var(--color-muted-dark);
    font-size: 0.98rem;
    line-height: 1.78;
}

.about-copy strong {
    color: var(--color-text-dark);
}

.editorial-layout,
.process-layout {
    display: grid;
    gap: 1.5rem;
}

.editorial-layout {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    align-items: stretch;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.feature-card,
.service-card,
.editorial-card,
.narrative-panel,
.callout-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.94) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.feature-card,
.service-card {
    padding: 1.6rem;
}

.editorial-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.editorial-card__image {
    width: 100%;
    min-height: 240px;
    aspect-ratio: 4 / 3.25;
    object-fit: cover;
}

.editorial-card__caption {
    position: static;
    padding: 1.15rem 1.2rem 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.94) 100%);
    border-top: 1px solid rgba(82, 170, 255, 0.12);
}

.editorial-card__caption h3 {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.editorial-card__caption p {
    margin: 0.6rem 0 0;
    color: var(--color-muted-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-card h3,
.service-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
}

.feature-card p,
.service-card p {
    margin: 0;
    color: var(--color-muted-dark);
    line-height: 1.68;
}

.service-card {
    position: relative;
    min-height: 100%;
    padding: 1.85rem;
    display: flex;
    flex-direction: column;
    gap: 1.45rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(18, 146, 255, 0.28);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.10);
}

.service-card__icon-wrap {
    width: 3.4rem;
    height: 3.4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(101, 197, 59, 0.18), transparent 46%),
        linear-gradient(135deg, rgba(18, 146, 255, 0.12), rgba(17, 200, 255, 0.08));
    border: 1px solid rgba(18, 146, 255, 0.16);
}

.service-card__icon {
    width: 1.75rem;
    height: 1.75rem;
    fill: none;
    stroke: var(--color-primary-dark);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__body {
    display: grid;
    gap: 0.95rem;
    flex: 1;
    align-content: start;
}

.service-card h3,
.service-card p {
    margin: 0;
}

.service-card__tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow: hidden;
}

.service-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(18, 146, 255, 0.08);
    border: 1px solid rgba(18, 146, 255, 0.16);
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.service-card p {
    line-height: 1.78;
    font-size: 0.98rem;
}

.service-card p + p {
    margin-top: 0.2rem;
}

.narrative-panel,
.callout-panel {
    padding: 2rem;
}

.callout-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: center;
    gap: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(18, 146, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.94) 100%);
}

.contact-cta {
    max-width: 780px;
    padding: 2rem 2.1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    text-align: left;
}

.contact-cta .section-heading__eyebrow,
.contact-cta .section-heading__title,
.contact-cta .section-heading__intro {
    max-width: none;
}

.contact-cta .section-heading__eyebrow {
    width: fit-content;
    justify-self: start;
}

.contact-cta .section-heading__title {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.contact-cta__content {
    display: grid;
    gap: 1.1rem;
}

.contact-cta__intro {
    display: grid;
    gap: 0.8rem;
}

.contact-cta__intro p {
    margin: 0;
}

.contact-panel__simple {
    display: grid;
    gap: 0.85rem;
    justify-items: start;
}

.contact-panel__button {
    width: fit-content;
    min-width: 0;
}

.contact-cta__actions {
    display: grid;
    justify-items: start;
    margin-top: 0.2rem;
}

.references-section {
    overflow: hidden;
}

.references-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.25rem 0;
}

.references-marquee::before,
.references-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 4rem;
    pointer-events: none;
}

.references-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg) 0%, rgba(248, 250, 255, 0) 100%);
}

.references-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-bg) 0%, rgba(248, 250, 255, 0) 100%);
}

.references-marquee__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}

.references-marquee:not(.references-marquee--scrolling) .references-marquee__track {
    width: auto;
    flex-wrap: wrap;
}

.references-marquee--scrolling .references-marquee__track {
    animation: references-marquee 68s linear infinite;
}

.references-marquee--scrolling:hover .references-marquee__track,
.references-marquee--scrolling:focus-within .references-marquee__track {
    animation-play-state: paused;
}

.reference-card {
    width: 210px;
    min-height: 124px;
    display: grid;
    place-items: center;
    gap: 0.75rem;
    padding: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.94) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(15, 36, 64, 0.035);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.reference-card:hover,
a.reference-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(18, 146, 255, 0.28);
    box-shadow: 0 12px 30px rgba(15, 36, 64, 0.055);
}

.reference-card__logo {
    max-width: 154px;
    max-height: 52px;
    object-fit: contain;
}

.reference-card__name {
    color: var(--color-text-dark);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

@keyframes references-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    .references-marquee--scrolling .references-marquee__track {
        width: auto;
        flex-wrap: wrap;
        animation: none;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.news-card,
.news-empty {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.94) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.6rem;
}

.news-card__image-link {
    display: block;
    margin: -1.6rem -1.6rem 1.1rem;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background:
        radial-gradient(circle at top left, rgba(18, 146, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #eef6ff 0%, #dcecff 100%);
}

.news-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-card__image-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, rgba(18, 146, 255, 0.18), rgba(101, 197, 59, 0.08)),
        linear-gradient(180deg, #eef6ff 0%, #dbe9fb 100%);
    position: relative;
}

.news-card__image-placeholder::before,
.news-card__image-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 30px rgba(11, 24, 48, 0.08);
}

.news-card__image-placeholder::before {
    width: 42%;
    height: 56%;
    left: 14%;
    top: 18%;
}

.news-card__image-placeholder::after {
    width: 22%;
    height: 38%;
    right: 14%;
    bottom: 16%;
}

.news-card__meta {
    margin: 0 0 0.8rem;
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.news-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: -0.2rem 0 0.9rem;
}

.news-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(18, 146, 255, 0.08);
    border: 1px solid rgba(18, 146, 255, 0.14);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
}

.news-card__title {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 1.2rem;
    line-height: 1.35;
}

.news-card__title a:hover,
.news-card__title a:focus-visible {
    color: var(--color-primary-dark);
}

.news-card__excerpt,
.news-empty p {
    margin: 1rem 0 0;
    color: var(--color-muted-dark);
    line-height: 1.8;
}

.news-card__link {
    display: inline-flex;
    margin-top: 1.2rem;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.news-card__link:hover,
.news-card__link:focus-visible {
    color: var(--color-primary);
}

.legal-entry {
    max-width: 860px;
    margin: 0 auto;
}

.article-entry {
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
}

.article-entry__media {
    margin: -2rem -2rem 1.75rem;
}

.article-entry__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.article-entry__header {
    margin-bottom: 1.5rem;
}

.article-entry__meta {
    margin: 0 0 0.85rem;
    color: var(--color-primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.article-entry__content {
    color: var(--color-text-dark);
}

.article-entry__content p,
.article-entry__content li {
    color: var(--color-muted-dark);
    line-height: 1.85;
}

.article-entry__content a {
    color: var(--color-primary-dark);
}

.article-entry__content a:hover,
.article-entry__content a:focus-visible {
    color: var(--color-primary);
}

.article-entry__cta {
    margin-top: 2rem;
    padding: 1.75rem;
    display: grid;
    gap: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 255, 0.94) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.article-entry__cta .section-heading__eyebrow {
    width: fit-content;
    justify-self: start;
}

.article-entry__cta .section-heading__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.article-entry__cta .section-heading__intro {
    max-width: none;
}

.legal-entry__header {
    margin-bottom: 1.5rem;
}

.legal-entry__intro,
.legal-entry__note {
    color: var(--color-muted-dark);
    line-height: 1.75;
}

.legal-entry__intro {
    margin: 0.9rem 0 0;
}

.legal-entry__note {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.legal-section + .legal-section {
    margin-top: 2rem;
}

.legal-section h2 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.legal-section p,
.legal-section li {
    color: var(--color-muted-dark);
    line-height: 1.8;
}

.legal-section ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(11, 24, 48, 0.68);
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: #0b1830;
}

a:focus-visible,
.hero__button:focus-visible,
.language-switcher__link:focus-visible,
.site-footer__legal a:focus-visible,
.site-header__menu a:focus-visible {
    outline: 2px solid #0b4eb2;
    outline-offset: 3px;
}

.hero {
    padding: 5.5rem 0 4.5rem;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    max-width: 700px;
    min-width: 0;
}

.hero__title {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: #0b1830;
    overflow-wrap: anywhere;
}

.hero__subtitle {
    margin: 1.25rem 0 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(11, 24, 48, 0.75);
    max-width: 60ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.875rem 1.375rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero__button:hover,
.hero__button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.hero__button--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 146, 255, 0.24);
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible {
    box-shadow: 0 18px 40px rgba(18, 146, 255, 0.32);
}

.hero__button--secondary {
    background: rgba(18, 146, 255, 0.08);
    color: #0b1830;
    border: 1px solid rgba(18, 146, 255, 0.16);
}

.hero__button--secondary:hover,
.hero__button--secondary:focus-visible {
    background: rgba(18, 146, 255, 0.12);
    border-color: rgba(18, 146, 255, 0.28);
}

.hero__figure {
    margin: 0;
    min-width: 0;
}

.hero__image-placeholder {
    position: relative;
    min-height: 460px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top center, rgba(18, 146, 255, 0.12), transparent 40%),
        radial-gradient(circle at bottom right, rgba(101, 197, 59, 0.08), transparent 30%),
        linear-gradient(140deg, #f0f4ff 0%, #e8eef8 52%, #dce6f7 100%);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(18, 146, 255, 0.15);
    overflow: hidden;
    display: grid;
    place-items: center;
    gap: 1rem;
    padding: 2rem;
    min-width: 0;
}

.hero__image-placeholder::before,
.hero__image-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(18, 146, 255, 0.06);
}

.hero__image-placeholder::before {
    width: 280px;
    height: 280px;
    top: -40px;
    right: -40px;
}

.hero__image-placeholder::after {
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: -30px;
}

.hero__brand-image {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.1));
}

.hero__image-text {
    position: relative;
    z-index: 1;
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
    background: rgba(248, 250, 255, 0.9);
    color: #0b1830;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
    display: block;
    line-height: 1.35;
}

.site-footer {
    border-top: 1px solid rgba(18, 146, 255, 0.12);
    background: rgba(240, 244, 255, 0.5);
}

.site-footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
}

.site-footer__copy {
    margin: 0;
    color: rgba(11, 24, 48, 0.68);
}

@media (max-width: 900px) {
    .editorial-layout,
    .feature-grid,
    .news-grid,
    .hero__container {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero__media {
        order: -1;
    }

    .hero__image-placeholder {
        min-height: 320px;
    }

    .editorial-card__image,
    .editorial-card__image {
        min-height: 280px;
        aspect-ratio: 16 / 10;
    }

    .site-footer__container,
    .site-header__container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 1rem 0;
    }

    .site-header__actions {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .callout-panel {
        grid-template-columns: 1fr;
    }

    .site-header__menu {
        justify-content: flex-start;
    }

    .language-switcher {
        align-self: flex-end;
    }
}

@media (min-width: 901px) and (max-width: 1180px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100vw - 1.5rem);
        max-width: calc(100vw - 1.5rem);
    }

    .site-header__container {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .site-header__brand {
        width: auto;
        gap: 0.65rem;
        display: grid;
        grid-template-columns: auto;
    }

    .site-header__brand-image {
        width: clamp(64px, 22vw, 84px);
    }

    .site-header__brand-copy {
        display: none;
    }

    .hero {
        padding-top: 4rem;
    }

    .hero__title {
        font-size: clamp(1.72rem, 7vw, 2.1rem);
        letter-spacing: -0.02em;
        line-height: 1.12;
    }

    .hero__subtitle,
    .section-heading__intro {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__button {
        width: 100%;
    }

    .contact-panel__button {
        width: fit-content;
    }

    .site-header__menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.1rem;
    }

    .site-header__nav {
        width: 100%;
    }

    .site-header__actions,
    .language-switcher {
        width: auto;
    }

    .site-header__actions {
        justify-self: end;
        align-items: center;
    }

    .language-switcher {
        justify-content: flex-end;
        align-self: center;
        padding: 0.25rem;
    }

    .site-header__menu,
    .site-footer__menu {
        width: 100%;
    }

    .site-header__actions,
    .site-header__menu {
        flex-direction: row;
        align-items: flex-end;
    }

    .site-header__menu {
        gap: 0.75rem;
    }

    .language-switcher {
        width: auto;
        justify-content: flex-end;
        align-self: center;
    }

    .language-switcher__link {
        flex: 0 0 auto;
        min-width: 2.4rem;
        min-height: 2rem;
        padding: 0.35rem 0.7rem;
        font-size: 0.82rem;
    }

    .site-header__brand {
        align-items: center;
    }

    .site-header__brand-tagline {
        font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    }

    .content-section {
        padding-bottom: 4rem;
    }

    .feature-card,
    .service-card,
    .narrative-panel,
    .callout-panel,
    .entry {
        padding: 1.5rem;
    }

    .article-entry__media {
        margin: -1.5rem -1.5rem 1.35rem;
    }

    .hero__image-placeholder {
        min-height: 260px;
        padding: 1.25rem;
        border-radius: 24px;
        width: 100%;
        max-width: 100%;
    }

    .hero__brand-image {
        width: min(100%, 250px);
    }

    .contact-cta {
        padding: 2rem 1.35rem;
    }

    .hero__image-text {
        font-size: 0.78rem;
        padding: 0.7rem 0.8rem;
    }

    .entry__title {
        font-size: clamp(1.6rem, 6.6vw, 1.95rem);
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
}
