@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css') layer(bootstrap);

@layer bootstrap, app;

@layer app {

    :root {
        --smart-blue: #3066be;
        --baltic-blue: #065fa2;
        --yale-blue: #064c7f;
        --pale-sky: #adcfe6;
        --amber-flame: #fbb815;
        --sunflower-gold: #f1ae04;
        --silver: #cccccc;
        --blue-slate: #5d707f;
        --white: #ffffff;
        --black: #000000;
        --header-height: 78px;
    }

    html {
        scroll-padding-top: calc(var(--header-height) + 1rem);
        scroll-behavior: auto;
    }

    body {
        margin: 0;
        font-family: "Poppins", sans-serif;
        overflow-x: hidden;
    }

    body.modal-open {
        padding-right: 0 !important;
    }

    a,
    img,
    svg {
        -webkit-user-drag: none;
    }

    a[draggable="false"],
    img[draggable="false"] {
        -webkit-user-drag: none;
    }

    button,
    a {
        touch-action: manipulation;
    }

    a {
        text-underline-offset: 0.2em;
    }

    :focus-visible {
        outline: 3px solid var(--amber-flame);
        outline-offset: 4px;
    }

    ::selection {
        color: var(--white);
        background: var(--smart-blue);
    }

    .site-header {
        position: fixed;
        top: 1.25rem;
        left: 0;
        z-index: 1050;
        width: 100%;
        transition:
            opacity 400ms ease,
            transform 400ms ease,
            visibility 400ms ease;
    }

    .site-header--hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-140%);
        pointer-events: none;
    }

    .site-header__navbar {
        padding: 0;
    }

    .site-header__container {
        position: relative;
        display: grid;
        grid-template-columns: minmax(180px, 1fr) auto auto auto;
        align-items: center;
        column-gap: clamp(0.75rem, 1.4vw, 1.5rem);
        width: calc(100% - 3rem);
        max-width: 1460px;
        min-height: 68px;
        padding: 0.5rem 1.15rem;
        background: rgba(100, 101, 100, 0.86);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.95rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .site-header__brand {
        position: static;
        display: inline-flex;
        align-items: center;
        justify-self: start;
        width: max-content;
        margin: 0;
        padding: 0;
        border-radius: 5px;
    }

    .site-header__logo {
        display: block;
        width: clamp(145px, 13vw, 180px);
        height: auto;
    }

    .site-header__cta {
        position: relative;
        justify-self: end;
        min-width: 210px;
        padding: 0.72rem 1.25rem;
        font-family: inherit;
        font-size: 0.8rem;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: 0.02em;
        text-align: center;
        text-transform: uppercase;
        color: var(--black);
        background: linear-gradient(120deg, #f7a900, #ffd05a, #f7a900);
        background-size: 200% 100%;
        border: 0;
        border-radius: 999px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        transform: translateY(0);
        transition:
            transform 180ms ease,
            box-shadow 180ms ease;
        animation:
            request-pulse 6s ease-in-out infinite,
            request-gradient 7s linear infinite;
    }

    .site-header__cta:hover {
        color: var(--black);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
        transform: translateY(-1px);
    }

    .site-header__cta:active {
        transform: translateY(0);
    }

    .site-header__language {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-self: end;
        min-width: 88px;
        height: 42px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        transition:
            background-color 180ms ease,
            border-color 180ms ease,
            box-shadow 180ms ease;
    }

    .site-header__language:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .site-header__language:focus-within {
        border-color: var(--amber-flame);
        box-shadow: 0 0 0 3px rgba(251, 184, 21, 0.2);
    }

    .site-header__language-icon {
        position: absolute;
        left: 0.85rem;
        z-index: 1;
        display: grid;
        place-items: center;
        width: 16px;
        height: 16px;
        pointer-events: none;
    }

    .site-header__language-icon svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .site-header__language-select {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        padding: 0 2rem 0 2.35rem;
        font-size: 0.76rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0.06em;
        color: var(--white);
        background: transparent;
        border: 0;
        outline: 0;
        appearance: none;
        cursor: pointer;
    }

    .site-header__language-select option {
        color: var(--black);
        background: var(--white);
    }

    .site-header__language-arrow {
        position: absolute;
        right: 0.8rem;
        z-index: 1;
        display: grid;
        place-items: center;
        width: 10px;
        height: 10px;
        pointer-events: none;
    }

    .site-header__language-arrow svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .legal-page {
        min-height: 100vh;
        padding: 140px 20px 70px;
        background: var(--black);
    }

    .legal-container {
        max-width: 900px;
        margin: auto;
        padding: 50px;
        background: var(--white);
        border-radius: 14px;
    }

    .legal-title {
        margin-bottom: 10px;
        font-size: 2.3rem;
        font-weight: 700;
        color: var(--yale-blue);
    }

    .legal-date {
        margin-bottom: 35px;
        font-size: 0.95rem;
        color: var(--blue-slate);
    }

    .legal-intro {
        margin-bottom: 35px;
        padding: 18px 22px;
        line-height: 1.7;
        background: #f8f9fc;
        border-left: 5px solid var(--yale-blue);
        border-radius: 6px;
    }

    .legal-section {
        margin-bottom: 35px;
    }

    .legal-section h2 {
        margin-bottom: 15px;
        padding-bottom: 8px;
        font-size: 1.3rem;
        color: var(--yale-blue);
        border-bottom: 2px solid #ececec;
    }

    .legal-section p {
        margin-bottom: 15px;
        line-height: 1.8;
        color: var(--black);
    }

    .legal-section ul {
        padding-left: 22px;
    }

    .legal-section li {
        margin-bottom: 10px;
        line-height: 1.7;
        color: var(--black);
    }

    .legal-email {
        font-weight: 600;
        text-decoration: none;
        color: var(--yale-blue);
    }

    .legal-email:hover {
        text-decoration: underline;
    }

    .legal-footer {
        margin-top: 50px;
        padding-top: 20px;
        font-size: 0.9rem;
        text-align: center;
        border-top: 2px solid #ececec;
    }

    .legal-footer__copyright {
        font-size: 0.95rem;
        color: var(--blue-slate);
    }

    .site-footer {
        position: relative;
        padding: 2rem 0 0;
        color: var(--white);
        background: var(--black);
    }

    .site-footer__brand-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 2.75rem;
    }

    .site-footer__brand {
        display: inline-flex;
        text-decoration: none;
        border-radius: 5px;
    }

    .site-footer__logo {
        display: block;
        width: clamp(175px, 18vw, 220px);
        height: auto;
        transition: transform 180ms ease;
    }

    .site-footer__logo:hover {
        transform: translateX(3px);
    }

    .site-footer__main {
        align-items: flex-start;
        padding-inline: 2rem;
    }

    .site-footer__links {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-footer__link {
        display: inline-block;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--white);
        border-radius: 5px;
        transition:
            color 180ms ease,
            transform 180ms ease;
    }

    .site-footer__link:hover {
        color: var(--pale-sky);
        transform: translateX(3px);
    }

    .site-footer__schedule {
        max-width: 270px;
    }

    .site-footer__title {
        display: inline-block;
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--pale-sky);
    }

    .site-footer__title-line {
        width: 100%;
        max-width: 170px;
        height: 1px;
        margin-top: 0.4rem;
        margin-bottom: 1rem;
        background: var(--pale-sky);
    }

    .site-footer__schedule-text {
        margin: 0;
        font-size: 1rem;
        line-height: 1.2;
        color: var(--white);
    }

    .site-footer__newsletter-wrapper {
        max-width: 500px;
        margin-left: auto;
    }

    .newsletter {
        width: 100%;
    }

    .newsletter__label {
        display: block;
        margin-bottom: 0.75rem;
        font-size: clamp(1rem, 1.7vw, 1.15rem);
        font-weight: 800;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        color: var(--amber-flame);
    }

    .newsletter__control {
        position: relative;
        display: flex;
        width: 100%;
        height: 40px;
        background: var(--white);
        border-radius: 999px;
        overflow: hidden;
    }

    .newsletter__input {
        flex: 1;
        min-width: 0;
        height: 100%;
        padding: 0.4rem 4.5rem 0.4rem 1.4rem;
        font-size: 1rem;
        font-style: italic;
        color: var(--black);
        background: var(--white);
        border: 0;
        border-radius: 999px;
        outline: 0;
        transition:
            background-color 180ms ease,
            transform 180ms ease;
    }

    .newsletter__input::placeholder {
        color: var(--blue-slate);
        opacity: 1;
    }

    .newsletter__input:focus-visible {
        outline: 3px solid var(--amber-flame);
        outline-offset: -3px;
    }

    .newsletter__button {
        position: absolute;
        top: 0;
        right: 0;
        display: grid;
        place-items: center;
        width: 50px;
        height: 100%;
        padding: 0;
        color: var(--white);
        background: var(--amber-flame);
        border: 0;
        border-radius: 999px;
        transition:
            background-color 180ms ease,
            transform 180ms ease;
        cursor: pointer;
    }

    .newsletter__button:hover {
        background: var(--sunflower-gold);
    }

    .newsletter__button:active {
        transform: scale(0.94);
    }

    .newsletter__button:disabled {
        opacity: 0.45;
        cursor: not-allowed;
        pointer-events: none;
    }

    .newsletter__icon {
        display: block;
        width: 32px;
        height: 32px;
    }

    .newsletter__error {
        display: block;
        min-height: 1.2rem;
        margin-top: 0.3rem;
        font-size: 0.75rem;
    }

    .site-footer__social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.75rem;
    }

    .site-footer__social-link {
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        text-decoration: none;
        color: var(--black);
        background: var(--pale-sky);
        border-radius: 50%;
        transition:
            background-color 180ms ease,
            transform 180ms ease;
    }

    .site-footer__social-link:hover {
        background: var(--white);
        transform: translateY(-3px);
    }

    .site-footer__social-icon {
        display: block;
        width: 24px;
        height: 24px;
    }

    .site-footer__social-link:last-child {
        background: transparent;
        border-radius: 50%;
    }

    .site-footer__social-icon-google {
        display: block;
        width: 30px;
        height: 30px;
    }

    .site-footer__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        margin-top: 2.75rem;
        padding: 0 0.5rem 1.2rem;
    }

    .site-footer__copyright {
        font-size: 0.95rem;
        color: var(--pale-sky);
    }

    .site-footer__legal {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.95rem;
        color: var(--silver);
    }

    .site-footer__legal-link {
        text-decoration: none;
        color: var(--silver);
        border-radius: 5px;
        transition: color 180ms ease;
    }

    .site-footer__legal-link:hover {
        color: var(--white);
    }

    .site-footer__accent {
        width: 100%;
        height: 20px;
        background: var(--baltic-blue);
    }

    .language-modal__content {
        color: var(--white);
        background: linear-gradient(140deg, #071522, #02070d);
        border: 2px solid rgba(173, 207, 230, 0.45);
        border-radius: 1.6rem;
    }

    .language-modal__logo {
        max-width: 210px;
        height: auto;
        margin-bottom: 2rem;
    }

    .language-modal__title {
        font-weight: 800;
    }

    .language-modal__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .language-modal__button {
        min-width: 140px;
        color: var(--white);
        background: transparent;
        border: 2px solid var(--baltic-blue);
        border-radius: 999px;
    }

    .language-modal__button:hover {
        color: var(--white);
        background: var(--baltic-blue);
    }

    .contact-modal {
        --bs-modal-zindex: 1060;
    }

    .contact-modal__dialog {
        width: calc(100% - 2rem);
        max-width: 960px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-modal__content {
        position: relative;
        color: var(--white, #ffffff);
        background: linear-gradient(115deg, rgba(2, 6, 9, 0.68) 0%, rgba(2, 8, 13, 0.62) 55%, rgba(3, 38, 61, 0.62) 100%);
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 1rem;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(14px) saturate(120%);
        -webkit-backdrop-filter: blur(14px) saturate(120%);
        overflow: hidden;
    }

    .contact-modal__content::before {
        content: "";
        position: absolute;
        right: -12%;
        bottom: -35%;
        z-index: 0;
        width: 65%;
        height: 90%;
        background: radial-gradient(circle, rgba(0, 113, 184, 0.24) 0%, rgba(0, 113, 184, 0) 70%);
        pointer-events: none;
    }

    .contact-modal__header {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: flex-end;
        min-height: 3.25rem;
        padding: 1rem 1.5rem 0;
        border: 0;
    }

    .contact-modal__close {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        color: var(--white, #ffffff);
        background: var(--amber-flame, #ffb51b);
        border: 0;
        border-radius: 50%;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
        transition:
            background-color 180ms ease,
            transform 180ms ease;
        cursor: pointer;
    }

    .contact-modal__close span {
        position: absolute;
        width: 19px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        pointer-events: none;
    }

    .contact-modal__close span:first-child {
        transform: rotate(45deg);
    }

    .contact-modal__close span:last-child {
        transform: rotate(-45deg);
    }

    .contact-modal__close:hover {
        background: var(--amber-flame, #ffb51b);
        transform: rotate(90deg);
    }

    .contact-modal__close:focus-visible {
        outline: 3px solid rgba(255, 181, 27, 0.45);
        outline-offset: 4px;
    }

    .contact-modal__body {
        position: relative;
        z-index: 1;
        padding: 0.25rem clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3rem);
    }

    .contact-form__column {
        display: flex;
        flex-direction: column;
        gap: 1.15rem;
    }

    .contact-form__column--message {
        align-items: center;
    }

    .contact-form__group {
        width: 100%;
    }

    .contact-form__group--message {
        flex: 1;
    }

    .contact-form__label {
        display: block;
        margin: 0 0 0.45rem 0.65rem;
        font-size: 0.9rem;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: var(--white, #ffffff);
    }

    .contact-form__required {
        color: var(--baltic-blue, #065fa2);
    }

    .contact-form__control {
        width: 100%;
        min-height: 48px;
        padding: 0.7rem 1rem;
        font-size: 1rem;
        color: var(--black, #111111);
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid transparent;
        border-radius: 1rem;
        outline: 0;
        box-shadow: none;
        transition:
            background-color 180ms ease,
            border-color 180ms ease,
            box-shadow 180ms ease;
    }

    .contact-form__control:hover {
        color: var(--black, #111111);
        background: var(--white, #ffffff);
        border-color: rgba(22, 134, 201, 0.5);
    }

    .contact-form__control:focus {
        color: var(--black, #000000);
        background: var(--white, #ffffff);
        border-color: var(--baltic-blue, #065fa2);
        box-shadow: 0 0 0 0.25rem rgba(22, 134, 201, 0.2);
    }

    .contact-form__control.is-invalid,
    .was-validated .contact-form__control:invalid {
        background-image: none;
        border-color: #dc3545;
    }

    .contact-form__textarea {
        min-height: 246px;
        resize: vertical;
    }

    .contact-form__submit {
        min-width: 162px;
        padding: 0.7rem 1.75rem;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        color: var(--white, #ffffff);
        background: var(--baltic-blue, #065fa2);
        border: 1px solid rgba(255, 255, 255, 0.85);
        border-radius: 1rem;
        box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
        transition:
            background-color 180ms ease,
            box-shadow 180ms ease,
            transform 180ms ease;
    }

    .contact-form__submit:hover {
        color: var(--white, #ffffff);
        background: #0d8bd7;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
        transform: translateY(-2px);
    }

    .contact-form__submit:active {
        transform: translateY(0);
    }

    .contact-form__submit:focus-visible {
        outline: 3px solid rgba(22, 134, 201, 0.4);
        outline-offset: 4px;
    }

    .contact-modal.modal {
        background: rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .modal-backdrop.show {
        opacity: 0.28;
    }

     /* Newsletter Modal */
    #newsletterModal {
        --bs-modal-zindex: 1060;
    }

    #newsletterModal .newsletter-modal__dialog {
        width: calc(100% - 2rem);
        max-width: 460px;
        margin-right: auto;
        margin-left: auto;
    }

    #newsletterModal .newsletter-modal__content {
        position: relative;
        color: var(--white);
        background: linear-gradient(115deg, rgba(0, 0, 0, 0.68) 0%, rgba(6, 76, 127, 0.62) 55%, rgba(6, 95, 162, 0.58) 100%);
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 1rem;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(14px) saturate(120%);
        -webkit-backdrop-filter: blur(14px) saturate(120%);
        overflow: hidden;
        isolation: isolate;
    }

    #newsletterModal .newsletter-modal__content::before {
        position: absolute;
        right: -12%;
        bottom: -35%;
        z-index: 0;
        width: 65%;
        height: 90%;
        background: radial-gradient(circle, rgba(48, 102, 190, 0.28) 0%, rgba(48, 102, 190, 0) 70%);
        content: "";
        pointer-events: none;
    }

    #newsletterModal .newsletter-modal__content::after {
        position: absolute;
        top: -28%;
        left: -22%;
        z-index: 0;
        width: 70%;
        height: 65%;
        background: radial-gradient(circle, rgba(251, 184, 21, 0.13) 0%, rgba(251, 184, 21, 0) 72%);
        content: "";
        pointer-events: none;
    }

    
    #newsletterModal .newsletter-modal__close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        z-index: 5;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        color: var(--white);
        background: var(--amber-flame);
        border: 0;
        border-radius: 50%;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
        transition:
            background-color var(--transition-fast),
            transform var(--transition-fast);
        cursor: pointer;
    }

    #newsletterModal .newsletter-modal__close span {
        position: absolute;
        width: 19px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        pointer-events: none;
    }

    #newsletterModal .newsletter-modal__close span:first-child {
        transform: rotate(45deg);
    }

    #newsletterModal .newsletter-modal__close span:last-child {
        transform: rotate(-45deg);
    }

    #newsletterModal .newsletter-modal__close:hover {
        background: var(--amber-flame);
        transform: rotate(90deg);
    }

    #newsletterModal .newsletter-modal__close:focus-visible {
        outline: 3px solid rgba(251, 184, 21, 0.45);
        outline-offset: 4px;
    }

    #newsletterModal .newsletter-modal__body {
        position: relative;
        z-index: 1;
        padding: 4rem 1.5rem 1.75rem;
    }

    #newsletterModal .newsletter-modal__header {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    #newsletterModal .newsletter-modal__eyebrow {
        margin: 0 0 0.65rem;
        color: var(--amber-flame);
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        font-weight: 800;
        font-style: italic;
        line-height: 1.25;
        text-transform: uppercase;
    }

    #newsletterModal .newsletter-modal__title {
        margin: 0;
        color: var(--white);
        font-size: clamp(1.35rem, 4vw, 1.8rem);
        font-weight: 700;
        line-height: 1.2;
    }

    #newsletterModal .newsletter-modal__title-accent {
        display: inline-block;
        color: var(--amber-flame);
        text-decoration: underline;
        text-underline-offset: 0.18em;
    }

    #newsletterModal .newsletter-modal__form {
        display: grid;
        gap: 1rem;
    }

    #newsletterModal .newsletter-modal__field {
        margin: 0;
    }

    #newsletterModal .newsletter-modal__input {
        min-height: 58px;
        padding-right: 1rem;
        padding-left: 1rem;
        color: var(--black);
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid transparent;
        border-radius: 1rem;
        box-shadow: none;
        transition:
            background-color var(--transition-fast),
            border-color var(--transition-fast),
            box-shadow var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__input:hover {
        background: var(--white);
        border-color: rgba(48, 102, 190, 0.5);
    }

    #newsletterModal .newsletter-modal__input:focus {
        color: var(--black);
        background: var(--white);
        border-color: var(--baltic-blue);
        box-shadow: 0 0 0 0.25rem rgba(48, 102, 190, 0.2);
    }

    #newsletterModal .newsletter-modal__input.is-invalid,
    #newsletterModal .was-validated .newsletter-modal__input:invalid {
        background-image: none;
        border-color: #dc3545;
    }

    #newsletterModal .newsletter-modal__label {
        color: var(--blue-slate);
    }

    #newsletterModal .newsletter-modal__consent {
        display: flex;
        gap: 0.7rem;
        align-items: flex-start;
        margin: 0;
        padding: 0.9rem 1rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 0.95rem;
        transition:
            background-color var(--transition-fast),
            border-color var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__consent:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(251, 184, 21, 0.55);
    }

    #newsletterModal .newsletter-modal__consent-input {
        flex: 0 0 auto;
        width: 1.3rem;
        height: 1.3rem;
        margin: 0.15rem 0 0;
        background-color: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.78);
        cursor: pointer;
    }

    #newsletterModal .newsletter-modal__consent-input:checked {
        background-color: var(--amber-flame);
        border-color: var(--amber-flame);
    }

    #newsletterModal .newsletter-modal__consent-input:focus {
        border-color: var(--amber-flame);
        box-shadow: 0 0 0 0.25rem rgba(251, 184, 21, 0.2);
    }

    #newsletterModal .newsletter-modal__consent-label {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.82rem;
        line-height: 1.45;
        cursor: pointer;
    }

    #newsletterModal .newsletter-modal__privacy-link {
        color: var(--white);
        font-weight: 700;
        text-underline-offset: 0.18em;
        transition: color var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__privacy-link:hover,
    #newsletterModal .newsletter-modal__privacy-link:focus-visible {
        color: var(--amber-flame);
    }

    #newsletterModal .newsletter-modal__submit {
        display: inline-flex;
        gap: 0.65rem;
        align-items: center;
        justify-content: center;
        min-width: 170px;
        min-height: 52px;
        margin-right: auto;
        margin-left: auto;
        padding: 0.75rem 1.5rem;
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        background: var(--baltic-blue);
        border: 1px solid rgba(255, 255, 255, 0.85);
        border-radius: 1rem;
        box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition:
            background-color var(--transition-fast),
            box-shadow var(--transition-fast),
            transform var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__submit:hover {
        color: var(--white);
        background: var(--smart-blue);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
        transform: translateY(-2px);
    }

    #newsletterModal .newsletter-modal__submit:active {
        background: var(--yale-blue);
        transform: translateY(0);
    }

    #newsletterModal .newsletter-modal__submit:focus-visible {
        outline: 3px solid rgba(48, 102, 190, 0.45);
        outline-offset: 4px;
    }

    #newsletterModal .newsletter-modal__submit svg {
        width: 20px;
        height: 20px;
        color: var(--white);
    }

    #newsletterModal .newsletter-modal__status {
        min-height: 1.4em;
        margin: 0;
        color: var(--white);
        font-size: 0.85rem;
        text-align: center;
    }

    #newsletterModal.modal {
        background: rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .floating-message {
        position: fixed;
        right: 24px;
        bottom: 24px;
        z-index: 1050;
        width: 50px;
        height: 50px;
        color: var(--baltic-blue);
        background-color: var(--amber-flame);
        border-radius: 50%;
        transition:
            background-color 0.3s ease,
            transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
    }

    .floating-message:hover,
    .floating-message:focus {
        background-color: var(--sunflower-gold);
        transform: scale(1.1) translateY(-4px);
    }

    .floating-message__icon {
        width: 32px;
        height: 32px;
    }

    @media (max-width: 991.98px) {

        .site-header {
            top: 0.75rem;
        }

        .site-header__container {
            display: grid;
            grid-template-columns: 140px 1fr 76px;
            grid-template-areas: "cta logo language";
            align-items: center;
            width: calc(100% - 1.5rem);
            min-height: 64px;
            padding: 0.45rem 0.6rem;
        }

        .site-header__brand {
            position: static;
            grid-area: logo;
            justify-self: center;
            width: max-content;
            margin: 0;
            transform: none;
        }

        .site-header__logo {
            width: clamp(115px, 18vw, 150px);
        }

        .site-header__cta {
            grid-area: cta;
            justify-self: start;
            width: 130px;
            min-width: 0;
            max-width: none;
            padding: 0.68rem 0.7rem;
            font-size: 0.62rem;
            line-height: 1.05;
            white-space: normal;
        }

        .site-header__language {
            grid-area: language;
            justify-self: end;
            min-width: 76px;
            height: 40px;
        }

        .site-header__language-icon {
            left: 0.7rem;
            width: 14px;
            height: 14px;
        }

        .site-header__language-select {
            padding-right: 1.7rem;
            padding-left: 1.9rem;
            font-size: 0.7rem;
        }

        .site-header__language-arrow {
            right: 0.65rem;
        }

        .site-footer {
            padding-top: 2.5rem;
        }

        .site-footer__brand-wrapper {
            margin-bottom: 2.5rem;
        }

        .site-footer__main {
            padding-inline: 1rem;
        }

        .site-footer__newsletter-wrapper {
            margin-inline: auto;
        }

        .site-footer__bottom {
            margin-top: 2.5rem;
        }

        .contact-modal__dialog {
            max-width: 680px;
        }

        .contact-modal__body {
            max-height: calc(100svh - 6rem);
            padding: 0.25rem 1.5rem 2rem;
            overflow-y: auto;
        }

        .contact-form__column--message {
            align-items: stretch;
        }

        .contact-form__textarea {
            min-height: 180px;
        }

        .contact-form__submit {
            align-self: center;
        }

    }

    @media (max-width: 767.98px) {

        .legal-page {
            padding: 110px 15px 30px;
        }

        .legal-container {
            padding: 30px 25px;
        }

        .legal-title {
            font-size: 1.8rem;
        }

        .site-footer {
            text-align: center;
        }

        .site-footer__main {
            row-gap: 2.5rem;
        }

        .site-footer__links {
            align-items: center;
        }

        .site-footer__schedule {
            margin-inline: auto;
        }

        .site-footer__title-line {
            margin-inline: auto;
        }

        .site-footer__bottom {
            flex-direction: column;
            gap: 0.85rem;
            text-align: center;
        }

        .site-footer__legal {
            flex-wrap: wrap;
            justify-content: center;
        }

        #newsletterModal .newsletter-modal__dialog {
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }

        #newsletterModal .newsletter-modal__content {
            max-height: calc(100svh - 1rem);
            overflow-y: auto;
        }

    }

    @media (max-width: 575.98px) {

        .site-header {
            top: 0.5rem;
        }

        .site-header__container {
            grid-template-columns: 90px 1fr 66px;
            width: calc(100% - 1rem);
            min-height: 58px;
            padding: 0.4rem 0.5rem;
            border-radius: 0.8rem;
        }

        .site-header__logo {
            width: 108px;
        }

        .site-header__cta {
            width: 86px;
            padding: 0.5rem 0.3rem;
            font-size: 0.5rem;
            line-height: 1;
        }

        .site-header__language {
            min-width: 66px;
            height: 36px;
        }

        .site-header__language-icon {
            left: 0.55rem;
            width: 12px;
            height: 12px;
        }

        .site-header__language-select {
            padding-right: 1.35rem;
            padding-left: 1.55rem;
            font-size: 0.64rem;
        }

        .site-header__language-arrow {
            right: 0.5rem;
            width: 8px;
            height: 8px;
        }

        .site-footer__brand-wrapper {
            margin-bottom: 2rem;
        }

        .site-footer__logo {
            width: 175px;
        }

        .newsletter__label {
            font-size: 0.95rem;
        }

        .newsletter__control {
            height: 44px;
        }

        .site-footer__copyright,
        .site-footer__legal {
            font-size: 0.8rem;
        }

        .site-footer__accent {
            height: 14px;
        }

        .contact-modal__dialog {
            width: calc(100% - 1rem);
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .contact-modal__content {
            border-radius: 0.85rem;
        }

        .contact-modal__header {
            min-height: 3rem;
            padding: 0.75rem 0.85rem 0;
        }

        .contact-modal__close {
            width: 32px;
            height: 32px;
        }

        .contact-modal__body {
            max-height: calc(100svh - 4rem);
            padding: 0.25rem 1rem 1.5rem;
        }

        .contact-form__column {
            gap: 1rem;
        }

        .contact-form__label {
            margin-left: 0.35rem;
            font-size: 0.8rem;
        }

        .contact-form__control {
            min-height: 46px;
            border-radius: 0.85rem;
        }

        .contact-form__textarea {
            min-height: 150px;
        }

        .contact-form__submit {
            width: 100%;
            min-width: 0;
        }

        #newsletterModal .newsletter-modal__dialog {
            width: calc(100% - 1rem);
        }

        #newsletterModal .newsletter-modal__body {
            padding: 3.75rem 1rem 1.25rem;
        }

        #newsletterModal .newsletter-modal__title {
            font-size: 1.4rem;
        }

        #newsletterModal .newsletter-modal__consent {
            padding: 0.8rem;
        }

        #newsletterModal .newsletter-modal__consent-label {
            font-size: 0.76rem;
        }

        #newsletterModal .newsletter-modal__submit {
            width: 100%;
        }

    }

    @keyframes request-pulse {

        0%,
        16%,
        100% {
            box-shadow:
                0 5px 15px rgba(0, 0, 0, 0.12),
                0 0 0 0 rgba(249, 181, 31, 0);
        }

        4% {
            box-shadow:
                0 5px 15px rgba(0, 0, 0, 0.12),
                0 0 0 8px rgba(249, 181, 31, 0.24);
        }

        8% {
            box-shadow:
                0 5px 15px rgba(0, 0, 0, 0.12),
                0 0 0 15px rgba(249, 181, 31, 0);
        }

        11% {
            box-shadow:
                0 5px 15px rgba(0, 0, 0, 0.12),
                0 0 0 6px rgba(249, 181, 31, 0.18);
        }

        15% {
            box-shadow:
                0 5px 15px rgba(0, 0, 0, 0.12),
                0 0 0 12px rgba(249, 181, 31, 0);
        }

    }

    @keyframes request-gradient {

        from {
            background-position: 0 50%;
        }

        to {
            background-position: 200% 50%;
        }

    }

    @media (prefers-reduced-motion: reduce) {
        
        *,
        *::before,
        *::after {
            scroll-behavior: auto !important;
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .site-header,
        .site-header__cta {
            transition: none;
            animation: none;
        }

    }

}   