/* Compact, accessible navigation for phones. */
.nav-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible {
    background: rgba(126, 230, 222, 0.16);
    border-color: rgba(126, 230, 222, 0.55);
    outline: none;
}

.nav-menu-icon,
.nav-menu-icon::before,
.nav-menu-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-menu-icon {
    position: relative;
}

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

.nav-menu-icon::before { top: -6px; }
.nav-menu-icon::after { top: 6px; }

.nav-menu-toggle[aria-expanded="true"] .nav-menu-icon {
    background: transparent;
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-menu-toggle[aria-expanded="true"] .nav-menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 720px) {
    .main-navbar-wrapper {
        padding: 10px 10px 0;
    }

    .floating-navbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        justify-content: initial;
        gap: 8px;
        padding: 9px 10px 9px 16px;
        border-radius: 24px;
    }

    .navbar-brand {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        font-size: 16px;
    }

    .navbar-actions {
        grid-column: 2;
        grid-row: 1;
        order: initial;
        gap: 0;
    }

    .lang-btn {
        padding: 4px 7px;
        font-size: 10.5px;
    }

    .btn-cta-nav {
        display: none;
    }

    .nav-menu-toggle {
        display: flex;
        grid-column: 3;
        grid-row: 1;
    }

    .navbar-links {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        padding: 8px 4px 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .navbar-links.is-open {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 12px;
        text-align: left;
    }

    .nav-item:hover,
    .nav-item.active {
        background: rgba(126, 230, 222, 0.10);
    }

    .nav-item.active::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-menu-toggle,
    .nav-menu-icon,
    .nav-menu-icon::before,
    .nav-menu-icon::after {
        transition: none;
    }
}

/* Compact company disclosures shared by every localized footer. */
.footer-legal {
    max-width: 1320px;
    margin: 0 auto;
    padding: 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #aab2c0;
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
}

.footer-legal p {
    margin: 2px 0;
}

.footer-legal strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-legal a {
    color: #7ee6de;
    text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: #ffffff;
}

.footer-legal-separator {
    margin: 0 7px;
    color: #677080;
}

/* Cinematic transition between company values and product sectors. */
.home-video-divider {
    position: relative;
    width: 100%;
    height: clamp(260px, 24vw, 340px);
    overflow: hidden;
    background: #b8e6e9 url("img2/home mandorle.jpeg") center / cover no-repeat;
    isolation: isolate;
}

.home-video-divider video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 48%;
}

.home-video-divider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(11, 18, 27, 0.08) 0%,
        rgba(11, 18, 27, 0.01) 45%,
        rgba(11, 18, 27, 0.12) 100%
    );
}

@media (max-width: 720px) {
    .footer-legal {
        padding: 20px 24px;
        font-size: 11.5px;
    }

    .footer-legal-separator {
        display: block;
        height: 2px;
        overflow: hidden;
    }

    .home-video-divider {
        height: 220px;
    }

    .home-video-divider video {
        object-position: center center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-video-divider video {
        display: none;
    }
}

/* Privacy and cookie information pages. */
.policy-main {
    min-height: 70vh;
    padding: 150px 24px 80px;
    background: linear-gradient(180deg, #f7fbfb 0%, #ffffff 34%);
}

.policy-article {
    width: min(920px, 100%);
    margin: 0 auto;
    color: #263238;
    line-height: 1.75;
}

.policy-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #087f78;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.policy-article h1 {
    margin: 0 0 12px;
    color: #111820;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.08;
}

.policy-updated {
    margin: 0 0 46px;
    color: #66727b;
}

.policy-article h2 {
    margin: 40px 0 12px;
    color: #15232b;
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    line-height: 1.25;
}

.policy-article p,
.policy-article li {
    font-size: 1rem;
}

.policy-article ul {
    padding-left: 22px;
}

.policy-article a,
.form-privacy-note a {
    color: #087f78;
    text-underline-offset: 3px;
}

.policy-note {
    margin-top: 42px;
    padding: 22px 24px;
    border: 1px solid rgba(8, 127, 120, 0.18);
    border-radius: 18px;
    background: #effafa;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-top: 12px;
    font-size: 12px;
}

.footer-policy-links a {
    color: #c7d0d7;
    text-underline-offset: 3px;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
    color: #7ee6de;
}

.form-privacy-note {
    margin: 14px 0 0;
    color: #56636c;
    font-size: 0.78rem;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .policy-main {
        padding: 120px 20px 60px;
    }

    .policy-updated {
        margin-bottom: 34px;
    }
}
