:root {
    --primary: #1689f7;
    --primary-dark: #0b68c9;
    --primary-soft: #eef7ff;
    --surface: #ffffff;
    --surface-alt: #f4f7fb;
    --surface-blue: #eef6fd;
    --surface-warm: #fbfaf7;
    --ink: #17202b;
    --muted: #667085;
    --line: #e4eaf1;
    --line-strong: #cfd9e5;
    --pattern-line: rgba(22, 137, 247, 0.07);
    --pattern-ink: rgba(16, 24, 40, 0.045);
    --stripe-soft: rgba(22, 137, 247, 0.055);
    --success: #1a7f78;
    --warning: #b7791f;
    --warning-bg: #fff8e6;
    --footer: #101828;
    --shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(90deg, rgba(22, 137, 247, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(16, 24, 40, 0.025) 1px, transparent 1px),
        var(--surface-alt);
    background-size: 72px 72px, 72px 72px, auto;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: var(--primary-dark);
}

.site-header {
    align-items: center;
    backdrop-filter: blur(12px);
    background:
        linear-gradient(90deg, rgba(22, 137, 247, 0.045) 1px, transparent 1px),
        rgba(255, 255, 255, 0.96);
    background-size: 76px 100%, auto;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
    display: grid;
    grid-template-areas:
        "lang contact contact"
        "brand nav nav";
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.65rem 1.25rem;
    isolation: isolate;
    min-height: 86px;
    padding: 0.55rem 5% 0.85rem;
    position: sticky;
    top: 0;
    z-index: 30;
}

.site-header::after {
    align-self: end;
    border-bottom: 1px solid rgba(207, 217, 229, 0.72);
    content: "";
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: stretch;
    margin-left: -5vw;
    margin-right: -5vw;
    pointer-events: none;
}

.header-contact {
    align-items: center;
    border-bottom: 0;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 680;
    gap: 0.55rem 1rem;
    grid-area: contact;
    justify-content: flex-end;
    line-height: 1.25;
    min-width: 0;
    padding-bottom: 0.5rem;
}

.header-contact a,
.header-contact span,
.nav-contact a,
.nav-contact span {
    align-items: center;
    color: inherit;
    display: inline-flex;
    gap: 0.38rem;
    text-decoration: none;
}

.header-contact a:hover,
.nav-contact a:hover {
    color: var(--primary-dark);
}

.header-contact > *::before,
.nav-contact > *::before {
    content: "";
    background: var(--primary-dark);
    flex: 0 0 auto;
    height: 0.9rem;
    opacity: 0.88;
    width: 0.9rem;
    -webkit-mask: var(--contact-icon) center / contain no-repeat;
    mask: var(--contact-icon) center / contain no-repeat;
}

.header-contact a[href^="mailto:"],
.nav-contact a[href^="mailto:"] {
    --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.header-contact a[href^="https://wa.me"],
.nav-contact a[href^="https://wa.me"] {
    --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.91.32 1.8.59 2.65a2 2 0 0 1-.45 2.11L8 9.73a16 16 0 0 0 6.27 6.27l1.25-1.25a2 2 0 0 1 2.11-.45c.85.27 1.74.47 2.65.59A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.header-contact span,
.nav-contact span {
    --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.19-7.4 11.79a1 1 0 0 1-1.2 0C9.54 20.19 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.brand {
    align-items: center;
    color: inherit;
    display: flex;
    gap: 0.7rem;
    grid-area: brand;
    min-width: max-content;
    position: relative;
    text-decoration: none;
    z-index: 32;
}

.brand-logo {
    flex: 0 0 auto;
    height: 38px;
    width: 38px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1.1;
}

.brand-tagline {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.055em;
    line-height: 1.25;
    text-transform: uppercase;
}

.nav-toggle {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    color: var(--ink);
    cursor: pointer;
    display: none;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 0.5rem;
    grid-area: toggle;
    justify-self: end;
    padding: 0.62rem 0.78rem;
    position: relative;
    z-index: 32;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    background: currentColor;
    display: block;
    height: 2px;
    width: 17px;
}

.nav-toggle-lines {
    position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: "";
    left: 0;
    position: absolute;
}

.nav-toggle-lines::before {
    top: -6px;
}

.nav-toggle-lines::after {
    top: 6px;
}

.language-switcher {
    grid-area: lang;
    justify-self: start;
    padding-bottom: 0.28rem;
    position: relative;
    z-index: 34;
}

.language-toggle {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 760;
    gap: 0.34rem;
    line-height: 1;
    padding: 0.5rem 0.58rem;
    text-transform: uppercase;
}

.language-toggle::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    content: "";
    display: inline-block;
    margin-left: 0.08rem;
}

.language-flag {
    font-size: 0.98rem;
    line-height: 1;
}

.language-menu {
    background: #ffffff;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.14);
    display: grid;
    gap: 0.12rem;
    min-width: 10.5rem;
    opacity: 0;
    padding: 0.35rem;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.42rem);
    transform: translateY(-0.25rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher.is-open .language-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.language-option {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 5px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-size: 0.86rem;
    gap: 0.5rem;
    padding: 0.55rem 0.62rem;
    text-align: left;
}

.language-option:hover,
.language-option[aria-pressed="true"] {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 1rem;
    grid-area: nav;
    justify-self: end;
    max-width: 100%;
    min-width: 0;
}

.nav-contact {
    display: none;
}

.nav-close {
    display: none;
}

.site-nav > ul {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.1rem;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav li {
    position: relative;
}

.site-nav a {
    align-items: center;
    border-radius: 5px;
    color: #344054;
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 650;
    gap: 0.4rem;
    line-height: 1.2;
    padding: 0.62rem 0.68rem;
    position: relative;
    text-decoration: none;
}

.site-nav > ul a::before {
    background: currentColor;
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    height: 0.92rem;
    opacity: 0.9;
    width: 0.92rem;
    -webkit-mask: var(--nav-icon) center / contain no-repeat;
    mask: var(--nav-icon) center / contain no-repeat;
}

.site-nav > ul a[href*="index.html"] {
    --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

.site-nav > ul a[href*="germany.html"]::before {
    background: linear-gradient(180deg, #111111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
    border-radius: 2px;
    height: 0.66rem;
    width: 1.02rem;
    -webkit-mask: none;
    mask: none;
}

.site-nav > ul a[href*="france.html"]::before {
    background: linear-gradient(90deg, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
    border-radius: 2px;
    height: 0.66rem;
    width: 1.02rem;
    -webkit-mask: none;
    mask: none;
}

.site-nav > ul a[href*="spain.html"]::before {
    background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
    border-radius: 2px;
    height: 0.66rem;
    width: 1.02rem;
    -webkit-mask: none;
    mask: none;
}

.site-nav > ul a[href*="germany.html"],
.site-nav > ul a[href*="france.html"],
.site-nav > ul a[href*="spain.html"] {
    background: transparent;
    box-shadow: none;
}

.nav-guide-group {
    --guide-label-gap: clamp(2.45rem, 3.2vw, 3.35rem);
    padding: 0.76rem 0.28rem 0;
    position: relative;
}

.nav-guide-group::before,
.nav-guide-group::after {
    border-color: rgba(22, 137, 247, 0.78);
    border-style: solid;
    bottom: -0.12rem;
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0.36rem;
    width: calc(50% - var(--guide-label-gap));
}

.nav-guide-group::before {
    border-radius: 5px 0 0 0;
    border-width: 1px 0 0 1px;
    left: 0;
}

.nav-guide-group::after {
    border-radius: 0 5px 0 0;
    border-width: 1px 1px 0 0;
    right: 0;
}

.nav-guide-label {
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary-dark);
    font-size: 0.56rem;
    font-weight: 800;
    left: 50%;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 0 0.38rem;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 1;
}

.nav-guide-list {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav > ul a[href*="partners.html"] {
    --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.site-nav > ul a[href*="about-us.html"] {
    --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
}

.site-nav > ul a[href*="legal.html"] {
    --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.site-nav > ul a[href*="contact-us.html"] {
    --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.site-nav a.active {
    color: var(--primary-dark);
}

.site-nav a:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.site-nav a.active::after {
    background: var(--primary);
    border-radius: 999px;
    bottom: 0.32rem;
    content: "";
    height: 1px;
    left: 0.68rem;
    pointer-events: none;
    position: absolute;
    right: 0.68rem;
}

.nav-overlay {
    background: rgba(16, 24, 40, 0.42);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.2s ease;
    z-index: 38;
}

.breadcrumb-wrap {
    background:
        repeating-linear-gradient(-45deg, rgba(22, 137, 247, 0.035) 0 1px, transparent 1px 14px),
        #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 0.72rem 5%;
}

.breadcrumb {
    margin: 0 auto;
    max-width: 1180px;
}

.breadcrumb ol {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    align-items: center;
    color: var(--muted);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 650;
}

.breadcrumb li + li::before {
    color: #98a2b3;
    content: "/";
    margin-right: 0.35rem;
}

.breadcrumb a {
    color: var(--primary-dark);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hero {
    background:
        linear-gradient(90deg, var(--pattern-line) 1px, transparent 1px),
        linear-gradient(0deg, var(--pattern-ink) 1px, transparent 1px),
        linear-gradient(135deg, #edf7ff 0%, #f8fbff 58%, #eef6fd 100%);
    background-size: 64px 64px, 64px 64px, auto;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    overflow: hidden;
    padding: 4.6rem 5% 4rem;
    position: relative;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 740px;
}

.eyebrow {
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    color: var(--ink);
    font-size: 2.55rem;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 1rem;
}

.hero p,
.page-hero p {
    color: var(--muted);
    font-size: 1.08rem;
    margin: 0;
}

.hero-image,
.section-image,
.card-image {
    background:
        linear-gradient(90deg, rgba(22, 137, 247, 0.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px),
        #fbfdff;
    background-size: 36px 36px, 36px 36px, auto;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.hero-image img,
.section-image img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.hero-image {
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.page-hero {
    background:
        linear-gradient(90deg, var(--pattern-line) 1px, transparent 1px),
        linear-gradient(0deg, var(--pattern-ink) 1px, transparent 1px),
        linear-gradient(135deg, #edf7ff 0%, #f8fbff 58%, #eef6fd 100%);
    background-size: 64px 64px, 64px 64px, auto;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    overflow: hidden;
    padding: 4rem 5%;
    position: relative;
}

.content-section {
    background: var(--surface);
    overflow: hidden;
    padding: 4rem 5%;
    position: relative;
}

.content-section + .content-section {
    padding-top: 4rem;
}

.content-section::before {
    background: linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px);
    background-size: 92px 100%;
    content: "";
    inset: 0;
    opacity: 0.36;
    pointer-events: none;
    position: absolute;
}

.content-section > .section-inner,
.content-section > .notice {
    position: relative;
    z-index: 1;
}

main > .content-section:nth-of-type(odd) {
    background: var(--surface-alt);
}

main > .content-section:nth-of-type(even) {
    background: var(--surface);
}

main > .content-section:nth-of-type(odd)::before {
    background: repeating-linear-gradient(-45deg, var(--stripe-soft) 0 1px, transparent 1px 18px);
    opacity: 0.7;
}

main > .content-section:nth-of-type(even)::before {
    background:
        linear-gradient(90deg, rgba(22, 137, 247, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(16, 24, 40, 0.025) 1px, transparent 1px);
    background-size: 88px 88px, 88px 88px;
    opacity: 0.32;
}

.section-inner {
    margin: 0 auto;
    max-width: 1180px;
}

.split-section {
    align-items: center;
    display: grid;
    gap: 2.4rem;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.split-section.reverse {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.section-image {
    aspect-ratio: 16 / 11;
    box-shadow: var(--shadow);
}

.section-title {
    color: var(--ink);
    font-size: 1.82rem;
    font-weight: 740;
    letter-spacing: 0;
    line-height: 1.18;
    margin: 0 0 1rem;
}

.section-header {
    margin: 0 0 1.7rem;
    max-width: 780px;
}

.section-header .section-title {
    margin-bottom: 0.7rem;
}

.section-header .lead {
    margin-bottom: 0;
}

.section-label,
.card-label {
    align-items: center;
    color: var(--primary-dark);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-label {
    border-left: 3px solid var(--primary);
    margin-bottom: 0.75rem;
    padding-left: 0.6rem;
}

.card-label {
    color: #1a7f78;
    margin-bottom: 0.55rem;
}

.lead {
    color: var(--muted);
    font-size: 1.02rem;
    margin: 0 0 1.5rem;
}

.notice {
    background: var(--surface-warm);
    border: 1px solid var(--line);
    border-left: 4px solid var(--warning);
    border-radius: 5px;
    color: #594019;
    margin: 0 auto 2.2rem;
    max-width: 1180px;
    padding: 1rem 1.15rem;
}

.grid,
.card-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flow-grid {
    counter-reset: flow-card;
    position: relative;
}

.flow-grid::before {
    background: linear-gradient(90deg, rgba(22, 137, 247, 0), rgba(22, 137, 247, 0.52), rgba(26, 127, 120, 0.44), rgba(22, 137, 247, 0));
    content: "";
    height: 2px;
    left: 7%;
    pointer-events: none;
    position: absolute;
    right: 7%;
    top: 1.3rem;
    z-index: 0;
}

.flow-grid > .card,
.flow-grid > .info-card,
.flow-grid > .policy-card {
    counter-increment: flow-card;
    z-index: 1;
}

.flow-grid > .card::after,
.flow-grid > .info-card::after,
.flow-grid > .policy-card::after {
    align-items: center;
    background: #ffffff;
    border: 1px solid #b7dafe;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
    color: var(--primary-dark);
    content: counter(flow-card, decimal-leading-zero);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    height: 2.1rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 0.9rem;
    top: 0.78rem;
    width: 2.1rem;
    z-index: 2;
}

.card,
.info-card,
.policy-card {
    background:
        linear-gradient(180deg, rgba(22, 137, 247, 0.038), rgba(255, 255, 255, 0) 48px),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: inherit;
    display: block;
    overflow: hidden;
    padding: 1.35rem;
    position: relative;
    text-decoration: none;
}

.card::before,
.info-card::before,
.policy-card::before {
    background: linear-gradient(90deg, var(--primary), rgba(26, 127, 120, 0.78), rgba(183, 121, 31, 0.48));
    content: "";
    height: 3px;
    inset: 0 0 auto;
    opacity: 0.88;
    pointer-events: none;
    position: absolute;
}

.card:hover {
    border-color: #b7dafe;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
}

.card.with-image,
.policy-card.with-image {
    padding: 0;
}

.card-body {
    padding: 1.25rem;
}

.card-image {
    aspect-ratio: 16 / 9;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    object-fit: contain;
    padding: 0.35rem;
    width: 100%;
}

.card h2,
.card h3,
.card h4,
.info-card h2,
.info-card h3,
.policy-card h2,
.policy-card h3 {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 740;
    line-height: 1.25;
    margin: 0 0 0.65rem;
}

.card p,
.info-card p,
.policy-card p,
.policy-card li {
    color: var(--muted);
}

.step-list {
    counter-reset: step-item;
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.step-list::before {
    background: linear-gradient(180deg, rgba(22, 137, 247, 0.08), rgba(22, 137, 247, 0.45), rgba(26, 127, 120, 0.3));
    bottom: 1.1rem;
    content: "";
    left: 1.55rem;
    position: absolute;
    top: 1.1rem;
    width: 2px;
}

.step-list li {
    background: #ffffff;
    border: 1px solid var(--line);
    border-left: 3px solid #b7dafe;
    border-radius: 5px;
    counter-increment: step-item;
    padding: 0.92rem 1rem 0.92rem 2.65rem;
    position: relative;
    z-index: 1;
}

.step-list li::before {
    align-items: center;
    background: var(--primary-soft);
    border: 1px solid #b7dafe;
    border-radius: 50%;
    color: var(--primary-dark);
    content: counter(step-item);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    height: 1.25rem;
    justify-content: center;
    left: 0.9rem;
    line-height: 1;
    position: absolute;
    top: 0.98rem;
    width: 1.25rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.button,
.btn-outline {
    align-items: center;
    border-radius: 5px;
    display: inline-flex;
    gap: 0.45rem;
    font-weight: 740;
    line-height: 1.2;
    padding: 0.78rem 0.95rem;
    text-decoration: none;
}

.button::after,
.btn-outline::after {
    content: "\2192";
    font-size: 1.05em;
    line-height: 1;
    transition: transform 0.18s ease;
}

.btn-outline::after {
    color: var(--primary);
}

.button:hover::after,
.btn-outline:hover::after {
    transform: translateX(2px);
}

.button {
    background: var(--primary);
    color: #ffffff;
}

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

.btn-outline {
    background: #ffffff;
    border: 1px solid var(--line-strong);
    color: var(--ink);
}

.card-body > strong {
    align-items: center;
    color: var(--primary-dark);
    display: inline-flex;
    font-size: 0.92rem;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.card-body > strong::after {
    color: var(--primary);
    content: "\2192";
    font-size: 1.04em;
    transition: transform 0.18s ease;
}

.card:hover .card-body > strong::after {
    transform: translateX(2px);
}

.info-card ul,
.legal-document ul {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
}

.info-card li,
.legal-document li {
    color: var(--muted);
    margin-bottom: 0.55rem;
    padding-left: 1.45rem;
    position: relative;
}

.info-card li::before,
.legal-document li::before {
    background: var(--primary);
    border-radius: 50%;
    content: "";
    height: 0.42rem;
    left: 0.18rem;
    position: absolute;
    top: 0.62rem;
    width: 0.42rem;
}

.contact-list {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.contact-list li {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--muted);
    display: grid;
    gap: 0.12rem;
    margin: 0;
    min-height: 3.65rem;
    padding: 0.72rem 0.85rem 0.72rem 2.7rem;
    position: relative;
}

.contact-list li::before {
    background: var(--primary-dark);
    border-radius: 0;
    content: "";
    height: 1.05rem;
    left: 0.95rem;
    position: absolute;
    top: 0.95rem;
    width: 1.05rem;
    -webkit-mask: var(--contact-list-icon) center / contain no-repeat;
    mask: var(--contact-list-icon) center / contain no-repeat;
}

.contact-list span {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 760;
    line-height: 1.25;
}

.contact-list a {
    color: var(--primary-dark);
    font-size: 0.92rem;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-list .contact-email {
    --contact-list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.contact-list .contact-phone {
    --contact-list-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.91.32 1.8.59 2.65a2 2 0 0 1-.45 2.11L8 9.73a16 16 0 0 0 6.27 6.27l1.25-1.25a2 2 0 0 1 2.11-.45c.85.27 1.74.47 2.65.59A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.doc-panel {
    background:
        linear-gradient(180deg, rgba(22, 137, 247, 0.035), rgba(255, 255, 255, 0) 68px),
        #ffffff;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.doc-panel-header {
    align-items: center;
    background:
        repeating-linear-gradient(90deg, rgba(22, 137, 247, 0.07) 0 1px, transparent 1px 24px),
        #f3f7fb;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 0.95rem 1rem;
}

.doc-panel-header h2,
.doc-panel-header h3 {
    color: var(--ink);
    font-size: 1rem;
    margin: 0;
}

.doc-panel-body {
    padding: 1.25rem;
}

.data-table {
    border-collapse: collapse;
    font-size: 0.95rem;
    width: 100%;
}

.data-table th,
.data-table td {
    border-bottom: 1px solid var(--line);
    padding: 0.85rem;
    text-align: left;
    vertical-align: top;
}

.data-table th {
    color: var(--ink);
    font-weight: 740;
    width: 30%;
}

.data-table tbody tr:nth-child(even) {
    background: #fbfdff;
}

.resource-list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-list li {
    background:
        linear-gradient(90deg, rgba(22, 137, 247, 0.04), rgba(255, 255, 255, 0) 34%),
        #ffffff;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 1rem;
}

.resource-list strong {
    color: var(--ink);
    display: block;
}

.form-section {
    background:
        linear-gradient(180deg, rgba(22, 137, 247, 0.045), rgba(255, 255, 255, 0) 76px),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
    overflow: hidden;
    padding: 1.7rem;
    position: relative;
}

.form-section::before,
.legal-document::before {
    background: linear-gradient(90deg, var(--primary), rgba(26, 127, 120, 0.78), rgba(183, 121, 31, 0.45));
    content: "";
    height: 3px;
    inset: 0 0 auto;
    pointer-events: none;
    position: absolute;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    color: var(--ink);
    display: block;
    font-size: 0.9rem;
    font-weight: 720;
    margin-bottom: 0.4rem;
}

.form-control {
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    color: var(--ink);
    font: inherit;
    padding: 0.78rem;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 137, 247, 0.12);
    outline: 0;
}

.consent-group {
    align-items: flex-start;
    background: #f7fbff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--primary);
    border-radius: 5px;
    display: flex;
    gap: 0.75rem;
    margin: 1.4rem 0;
    padding: 0.95rem;
}

.consent-group input {
    margin-top: 0.25rem;
}

.submit-btn {
    align-items: center;
    background: var(--primary);
    border: 0;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    gap: 0.45rem;
    justify-content: center;
    font: inherit;
    font-weight: 760;
    padding: 0.88rem 1rem;
    width: 100%;
}

.submit-btn::after {
    content: "\2192";
    font-size: 1.05em;
    line-height: 1;
    transition: transform 0.18s ease;
}

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

.submit-btn:hover::after {
    transform: translateX(2px);
}

.honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.map-container {
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.map-container iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.legal-layout {
    align-items: start;
    display: grid;
    gap: 2rem;
    grid-template-columns: 280px minmax(0, 1fr);
}

.legal-nav {
    background:
        linear-gradient(180deg, rgba(22, 137, 247, 0.035), rgba(255, 255, 255, 0) 54px),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 1.15rem;
    position: sticky;
    top: 96px;
}

.legal-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-nav a {
    display: block;
    font-weight: 700;
    padding: 0.42rem 0;
    text-decoration: none;
}

.legal-document {
    background:
        linear-gradient(180deg, rgba(22, 137, 247, 0.035), rgba(255, 255, 255, 0) 76px),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    padding: 1.8rem;
    position: relative;
}

.legal-section + .legal-section {
    border-top: 1px solid var(--line);
    margin-top: 2rem;
    padding-top: 2rem;
}

.legal-section h2,
.legal-section h3 {
    color: var(--ink);
}

.site-footer {
    background:
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.042) 0 1px, transparent 1px 18px),
        linear-gradient(90deg, rgba(22, 137, 247, 0.11) 1px, transparent 1px),
        var(--footer);
    background-size: auto, 70px 70px, auto;
    color: #d0d5dd;
    overflow: hidden;
    padding: 3rem 5% 2rem;
    position: relative;
}

.site-footer::before {
    background: linear-gradient(90deg, var(--primary), rgba(26, 127, 120, 0.95), rgba(255, 255, 255, 0.24));
    content: "";
    height: 4px;
    inset: 0 0 auto;
    position: absolute;
    z-index: 1;
}

.site-footer::after {
    background:
        linear-gradient(135deg, rgba(22, 137, 247, 0.22), rgba(22, 137, 247, 0) 58%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 48%);
    clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
    content: "";
    inset: 0 -5rem 0 auto;
    pointer-events: none;
    position: absolute;
    width: min(42vw, 34rem);
    z-index: 0;
}

.footer-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin: 0 auto 1.5rem;
    max-width: 1180px;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid::before {
    border-bottom: 1px solid rgba(22, 137, 247, 0.42);
    border-left: 1px solid rgba(22, 137, 247, 0.42);
    bottom: -0.8rem;
    content: "";
    height: 4.2rem;
    left: -1.2rem;
    pointer-events: none;
    position: absolute;
    transform: skewX(-24deg);
    width: 9rem;
}

.footer-grid::after {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    content: "";
    height: 5.4rem;
    pointer-events: none;
    position: absolute;
    right: -1.2rem;
    top: -1.4rem;
    transform: skewX(-24deg);
    width: 10.5rem;
}

.site-footer h2,
.site-footer h3,
.site-footer h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 740;
    margin: 0 0 0.75rem;
}

.site-footer h2::after,
.site-footer h3::after,
.site-footer h5::after {
    background: rgba(22, 137, 247, 0.78);
    content: "";
    display: block;
    height: 2px;
    margin-top: 0.55rem;
    width: 2.25rem;
}

.site-footer p,
.site-footer address {
    font-style: normal;
    margin: 0 0 0.45rem;
}

.site-footer .footer-grid > div:not(:first-child) p {
    padding-left: 0;
    position: relative;
}

.site-footer .footer-grid > div:not(:first-child) p::before {
    display: none;
}

.site-footer address {
    border-left: 2px solid rgba(22, 137, 247, 0.75);
    margin-top: 0.8rem;
    padding-left: 1.65rem;
    position: relative;
}

.site-footer address::before {
    background: #d0d5dd;
    content: "";
    height: 0.95rem;
    left: 0.4rem;
    opacity: 0.9;
    position: absolute;
    top: 0.2rem;
    width: 0.95rem;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.19-7.4 11.79a1 1 0 0 1-1.2 0C9.54 20.19 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.19-7.4 11.79a1 1 0 0 1-1.2 0C9.54 20.19 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer a {
    align-items: center;
    color: #d0d5dd;
    display: inline-flex;
    gap: 0.48rem;
    text-decoration: none;
}

.site-footer a::before {
    background: currentColor;
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    height: 0.92rem;
    opacity: 0.92;
    width: 0.92rem;
    -webkit-mask: var(--footer-icon) center / contain no-repeat;
    mask: var(--footer-icon) center / contain no-repeat;
}

.site-footer a[href*="germany.html"]::before {
    background: linear-gradient(180deg, #111111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
    border-radius: 2px;
    height: 0.62rem;
    width: 1rem;
    -webkit-mask: none;
    mask: none;
}

.site-footer a[href*="france.html"]::before {
    background: linear-gradient(90deg, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
    border-radius: 2px;
    height: 0.62rem;
    width: 1rem;
    -webkit-mask: none;
    mask: none;
}

.site-footer a[href*="spain.html"]::before {
    background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
    border-radius: 2px;
    height: 0.62rem;
    width: 1rem;
    -webkit-mask: none;
    mask: none;
}

.site-footer a[href*="partners.html"] {
    --footer-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.site-footer a[href*="about-us.html"] {
    --footer-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
}

.site-footer a[href*="legal.html"] {
    --footer-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.site-footer a[href^="mailto:"] {
    --footer-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.site-footer a[href^="https://wa.me"] {
    --footer-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.91.32 1.8.59 2.65a2 2 0 0 1-.45 2.11L8 9.73a16 16 0 0 0 6.27 6.27l1.25-1.25a2 2 0 0 1 2.11-.45c.85.27 1.74.47 2.65.59A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.placeholder-note {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

@media (max-width: 1240px) {
    .site-header {
        gap: 0.52rem 0.45rem;
        grid-template-areas:
            "contact lang"
            "brand toggle";
        grid-template-columns: minmax(0, 1fr) auto;
        padding-top: 0.65rem;
    }

    .site-header::after {
        align-self: end;
        border-bottom: 1px solid rgba(207, 217, 229, 0.72);
        content: "";
        grid-column: 1 / -1;
        grid-row: 1;
        justify-self: stretch;
        margin-left: -5vw;
        margin-right: -5vw;
        pointer-events: none;
    }

    .header-contact {
        border-bottom: 0;
        flex-wrap: nowrap;
        font-size: 0.68rem;
        gap: 0.36rem;
        justify-content: flex-end;
        line-height: 1;
        overflow: hidden;
        padding-bottom: 0.45rem;
        white-space: nowrap;
    }

    .header-contact a,
    .header-contact span {
        gap: 0.22rem;
        min-width: 0;
    }

    .header-contact a[href^="mailto:"] {
        flex: 1 1 auto;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-contact a[href^="https://wa.me"] {
        flex: 0 0 auto;
    }

    .header-contact > span {
        display: none;
    }

    .header-contact > *::before {
        height: 0.72rem;
        width: 0.72rem;
    }

    .language-switcher {
        align-items: flex-start;
        align-self: stretch;
        border-bottom: 0;
        display: flex;
        justify-self: end;
        padding-bottom: 0.45rem;
    }

    .language-toggle {
        font-size: 0.68rem;
        gap: 0.22rem;
        padding: 0.36rem 0.42rem;
    }

    .language-flag {
        font-size: 0.82rem;
    }

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

    .site-nav {
        align-items: stretch;
        background: #ffffff;
        background-image:
            repeating-linear-gradient(-45deg, rgba(22, 137, 247, 0.045) 0 1px, transparent 1px 14px),
            linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border-left: 1px solid var(--line-strong);
        bottom: 0;
        box-shadow: -24px 0 54px rgba(16, 24, 40, 0.24);
        flex-direction: column;
        gap: 0.5rem;
        height: 100dvh;
        isolation: isolate;
        max-height: 100dvh;
        max-width: 82vw;
        overflow-y: auto;
        padding: 1rem;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(105%);
        transition: transform 0.22s ease;
        width: 300px;
        z-index: 100;
    }

    .site-nav::before {
        border-bottom: 1px solid var(--line);
        color: var(--ink);
        content: attr(data-label);
        display: block;
        font-size: 0.86rem;
        font-weight: 760;
        letter-spacing: 0.08em;
        margin: -1rem -1rem 0.75rem;
        padding: 1.05rem 3.5rem 0.9rem 1rem;
        text-transform: uppercase;
    }

    .nav-close {
        align-items: center;
        background: #ffffff;
        border: 1px solid var(--line-strong);
        border-radius: 5px;
        cursor: pointer;
        display: inline-flex;
        height: 2rem;
        justify-content: center;
        padding: 0;
        position: absolute;
        right: 0.72rem;
        top: 0.62rem;
        width: 2rem;
        z-index: 2;
    }

    .nav-close::before,
    .nav-close::after {
        background: var(--ink);
        content: "";
        height: 2px;
        position: absolute;
        width: 0.95rem;
    }

    .nav-close::before {
        transform: rotate(45deg);
    }

    .nav-close::after {
        transform: rotate(-45deg);
    }

    .nav-close:hover {
        border-color: #b7dafe;
        color: var(--primary-dark);
    }

    .nav-close:hover::before,
    .nav-close:hover::after {
        background: var(--primary-dark);
    }

    .site-nav > ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0.26rem;
        justify-content: flex-start;
    }

    .site-nav a {
        align-items: center;
        border: 1px solid transparent;
        display: flex;
        font-size: 1rem;
        gap: 0.65rem;
        padding: 0.82rem 0.85rem;
    }

    .site-nav > ul a::before {
        content: "";
        background: currentColor;
        display: inline-block;
        flex: 0 0 auto;
        height: 1.08rem;
        opacity: 0.92;
        width: 1.08rem;
        -webkit-mask: var(--nav-icon) center / contain no-repeat;
        mask: var(--nav-icon) center / contain no-repeat;
    }

    .site-nav > ul a[href*="index.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
    }

    .site-nav > ul a[href*="germany.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 17h12l-1.5-5h-9L6 17Z'/%3E%3Cpath d='M8 12l1.5-4h5L16 12'/%3E%3Ccircle cx='8' cy='17' r='2'/%3E%3Ccircle cx='16' cy='17' r='2'/%3E%3C/svg%3E");
    }

    .site-nav > ul a[href*="germany.html"]::before {
        background: linear-gradient(180deg, #111111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
        border-radius: 2px;
        height: 0.78rem;
        width: 1.18rem;
        -webkit-mask: none;
        mask: none;
    }

    .site-nav > ul a[href*="france.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M9 13h6'/%3E%3Cpath d='M9 17h4'/%3E%3C/svg%3E");
    }

    .site-nav > ul a[href*="france.html"]::before {
        background: linear-gradient(90deg, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
        border-radius: 2px;
        height: 0.78rem;
        width: 1.18rem;
        -webkit-mask: none;
        mask: none;
    }

    .site-nav > ul a[href*="spain.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3C/svg%3E");
    }

    .site-nav > ul a[href*="spain.html"]::before {
        background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
        border-radius: 2px;
        height: 0.78rem;
        width: 1.18rem;
        -webkit-mask: none;
        mask: none;
    }

    .site-nav > ul a[href*="partners.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    }

    .site-nav > ul a[href*="about-us.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
    }

    .site-nav > ul a[href*="legal.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
    }

    .site-nav > ul a[href*="contact-us.html"] {
        --nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
    }

    .site-nav a.active {
        background: transparent;
        border-color: transparent;
        color: var(--primary-dark);
    }

    .site-nav a.active::after {
        bottom: 0.62rem;
        height: auto;
        left: 0;
        right: auto;
        top: 0.62rem;
        width: 2px;
    }

    .site-nav > ul a[href*="germany.html"],
    .site-nav > ul a[href*="france.html"],
    .site-nav > ul a[href*="spain.html"] {
        background: transparent;
        border-color: transparent;
        border-radius: 5px;
        box-shadow: none;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 0.64rem;
        padding-top: 0.64rem;
    }

    .nav-guide-list a.active {
        border-color: transparent;
    }

    .nav-guide-group {
        --guide-mobile-gap: 0.48rem;
        --guide-mobile-line: 0.38rem;
        align-self: flex-start;
        display: inline-grid;
        grid-template-columns: minmax(0, max-content) 1.28rem;
        justify-items: start;
        column-gap: var(--guide-mobile-gap);
        padding: 0.08rem 0 0.12rem;
        width: max-content;
        max-width: 100%;
    }

    .nav-guide-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.08rem;
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .nav-guide-list a {
        max-width: min(12.8rem, calc(82vw - 5.4rem));
        overflow-wrap: anywhere;
        padding-right: 0.55rem;
        white-space: normal;
        width: fit-content;
    }

    .nav-guide-group::before {
        border-color: rgba(22, 137, 247, 0.78);
        border-style: solid;
        border-width: 1px 1px 1px 0;
        border-radius: 0 5px 5px 0;
        bottom: 0.42rem;
        content: "";
        left: auto;
        pointer-events: none;
        position: absolute;
        right: var(--guide-mobile-line);
        top: 0.42rem;
        width: 0.62rem;
    }

    .nav-guide-group::after {
        display: none;
    }

    .nav-guide-label {
        background: #ffffff;
        left: auto;
        padding: 0.26rem 0;
        right: var(--guide-mobile-line);
        text-orientation: mixed;
        top: 50%;
        transform: translate(50%, -50%);
        writing-mode: vertical-rl;
        z-index: 1;
    }

    .nav-contact {
        background: transparent;
        border-top: 1px solid var(--line);
        color: var(--muted);
        display: grid;
        font-size: 0.8rem;
        gap: 0.38rem;
        line-height: 1.35;
        margin-top: 0.7rem;
        padding: 0.72rem 0 0;
    }

    .nav-contact::before {
        color: var(--ink);
        content: attr(data-label);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        margin-bottom: 0.12rem;
        text-transform: uppercase;
    }

    .nav-contact a,
    .nav-contact span {
        align-items: flex-start;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 5px;
        font-size: 0.8rem;
        gap: 0.5rem;
        padding: 0.48rem 0.55rem;
    }

    .nav-contact > *::before {
        background: var(--primary-dark);
        content: "";
        display: inline-block;
        flex: 0 0 auto;
        height: 1rem;
        margin-top: 0.12rem;
        opacity: 0.9;
        width: 1rem;
        -webkit-mask: var(--contact-icon) center / contain no-repeat;
        mask: var(--contact-icon) center / contain no-repeat;
    }

    .nav-contact a[href^="mailto:"] {
        --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
    }

    .nav-contact a[href^="https://wa.me"] {
        --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.2 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.91.32 1.8.59 2.65a2 2 0 0 1-.45 2.11L8 9.73a16 16 0 0 0 6.27 6.27l1.25-1.25a2 2 0 0 1 2.11-.45c.85.27 1.74.47 2.65.59A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
    }

    .nav-contact span {
        --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.19-7.4 11.79a1 1 0 0 1-1.2 0C9.54 20.19 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    }

    .flow-grid::before {
        background: linear-gradient(180deg, rgba(22, 137, 247, 0.08), rgba(22, 137, 247, 0.45), rgba(26, 127, 120, 0.3));
        bottom: 1rem;
        height: auto;
        left: auto;
        right: 1.95rem;
        top: 1rem;
        width: 2px;
    }

    .nav-open .site-nav {
        transform: translateX(0);
    }

    .nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-grid,
    .split-section,
    .split-section.reverse,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .split-section.reverse .section-image {
        order: 2;
    }

    .legal-nav {
        position: static;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .site-header {
        min-height: 68px;
        padding: 0.68rem 0.72rem;
    }

    .site-header::after {
        margin-left: -0.72rem;
        margin-right: -0.72rem;
    }

    .header-contact {
        font-size: 0.58rem;
        gap: 0.2rem;
    }

    .header-contact > *::before {
        height: 0.58rem;
        width: 0.58rem;
    }

    .language-toggle {
        font-size: 0.6rem;
        padding: 0.3rem 0.34rem;
    }

    .language-toggle::after {
        border-left-width: 3px;
        border-right-width: 3px;
        border-top-width: 4px;
    }

    .language-flag {
        font-size: 0.72rem;
    }

    .brand-logo {
        height: 34px;
        width: 34px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-tagline {
        font-size: 0.58rem;
    }

    .hero,
    .page-hero,
    .content-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero-image {
        aspect-ratio: 1.2 / 1;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .flow-grid::before,
    .footer-grid::before,
    .footer-grid::after {
        display: none;
    }

    .flow-grid > .card::after,
    .flow-grid > .info-card::after,
    .flow-grid > .policy-card::after {
        height: 1.85rem;
        width: 1.85rem;
    }

    .form-section,
    .legal-document {
        padding: 1.15rem;
    }

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