/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-navy: #003C71;
    --color-ocean: #005EB8;
    --color-sky: #0093D0;
    --color-green: #8CC63F;
    --color-platinum: #ACACAC;
    --text-primary: #003C71;
    --text-body: #4D4F53;
    --text-muted: #7C878E;
    --text-soft: #A7A8AA;
    --white: #FFFFFF;
    --bg-base: #F3F7FB;
    --bg-alt: #E6EFF7;
    --border-color: #D4D8DE;
}

html:not([lang]) {
    opacity: 0;
}

html[lang] {
    transition: opacity 0.15s ease-in;
    opacity: 1;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-base);
    overflow-x: hidden;
    max-width: 100vw;
}


.support-widget {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(0, 60, 113, 0.12);
    box-shadow: 0 16px 36px rgba(0, 60, 113, 0.2);
    color: inherit;
    max-width: 220px;
    z-index: 1300;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    border: none;
    font: inherit;
    text-align: left;
    height: 67px;
    box-sizing: border-box;
}

.support-widget:hover,
.support-widget:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(0, 60, 113, 0.26);
}

.support-widget:focus-visible {
    outline: 3px solid var(--color-sky);
    outline-offset: 4px;
}

.support-widget__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 147, 208, 0.22);
}

.support-widget__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.support-widget__content {
    display: flex;
    flex-direction: column;
}

.support-widget__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.support-chat {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.support-chat.is-open {
    pointer-events: auto;
    opacity: 1;
}

.support-chat__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 33, 64, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 99999;
    pointer-events: none;
}

.support-chat.is-open .support-chat__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.support-chat__dialog {
    position: relative;
    width: min(420px, calc(100vw - 2rem));
    max-height: min(640px, calc(100vh - 3rem));
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 26, 53, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 100000;
    pointer-events: auto;
}

.support-chat.is-open .support-chat__dialog {
    transform: translateY(0);
    opacity: 1;
}

.support-chat__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 60, 113, 0.08);
    background: linear-gradient(135deg, rgba(0, 94, 184, 0.08), rgba(0, 147, 208, 0.12));
}

.support-chat__header-persona {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-chat__header-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 94, 184, 0.2);
    flex-shrink: 0;
}

.support-chat__header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-chat__header-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.support-chat__header-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.support-chat__header-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.support-chat__consent-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1.4;
    background-color: rgba(0, 102, 204, 0.08);
    color: #1f3a63;
}

.support-chat__consent-pill[hidden] {
    display: none !important;
}

.support-chat__consent-pill--granted {
    background-color: rgba(46, 125, 50, 0.12);
    color: #1b5e20;
}

.support-chat__consent-pill--declined {
    background-color: rgba(198, 40, 40, 0.12);
    color: #8b1f1f;
}

.support-chat__consent-action {
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.1em;
}

.support-chat__consent-action:hover,
.support-chat__consent-action:focus-visible {
    text-decoration: none;
    outline: none;
}

.support-chat__close {
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.support-chat__close:hover,
.support-chat__close:focus-visible {
    background-color: rgba(0, 147, 208, 0.12);
    color: var(--color-ocean);
    outline: none;
}

.support-chat__body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(243, 247, 251, 0.8) 0%, rgba(255, 255, 255, 0.95) 80%);
}

.support-chat__messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-chat__message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.support-chat__message--user {
    flex-direction: row-reverse;
}

.support-chat__message--user .support-chat__message-avatar {
    display: none;
}

.support-chat__message--user .support-chat__message-bubble {
    margin-left: auto;
}

.support-chat__message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-ocean);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.support-chat__message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-chat__message-bubble {
    max-width: 260px;
    background: var(--white);
    border-radius: 18px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 60, 113, 0.12);
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.support-chat__message--agent .support-chat__message-bubble {
    border-top-left-radius: 6px;
    background: var(--white);
}

.support-chat__message--user .support-chat__message-bubble {
    border-top-right-radius: 6px;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-sky));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 94, 184, 0.35);
}

.support-chat__message--pending .support-chat__message-bubble {
    color: var(--text-muted);
    font-style: italic;
}

.support-chat__message--error .support-chat__message-bubble {
    background: rgba(226, 35, 26, 0.1);
    color: #9b1b17;
    box-shadow: none;
}

.support-chat__message--system .support-chat__message-bubble {
    background: rgba(0, 60, 113, 0.08);
    color: var(--text-primary);
}

.support-chat__message--consent .support-chat__message-bubble,
.support-chat__message--handoff .support-chat__message-bubble,
.support-chat__message--csat .support-chat__message-bubble {
    max-width: 100%;
}

.support-chat__consent-message p,
.support-chat__handoff-message p,
.support-chat__csat-title {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}

.support-chat__consent-actions,
.support-chat__handoff-actions,
.support-chat__csat-followup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.support-chat__consent-button,
.support-chat__handoff-button,
.support-chat__csat-button,
.support-chat__csat-submit,
.support-chat__csat-followup-actions button {
    border: 1px solid var(--color-ocean);
    background: var(--white);
    color: var(--color-ocean);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.support-chat__consent-button:hover,
.support-chat__consent-button:focus-visible,
.support-chat__handoff-button:hover,
.support-chat__handoff-button:focus-visible,
.support-chat__csat-submit:hover,
.support-chat__csat-submit:focus-visible,
.support-chat__csat-followup-actions button:hover,
.support-chat__csat-followup-actions button:focus-visible {
    background: var(--color-ocean);
    color: var(--white);
    outline: none;
    box-shadow: 0 6px 18px rgba(0, 60, 113, 0.25);
}

.support-chat__csat-stars {
    display: flex;
    gap: 0.35rem;
}

.support-chat__csat-button {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-chat__csat-button.is-selected {
    background: var(--color-ocean);
    color: var(--white);
}

.support-chat__csat-details {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.65rem;
}

.support-chat__csat-details[hidden],
.support-chat__csat-followup[hidden] {
    display: none !important;
}

.support-chat__csat-comment-label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.85rem;
}

.support-chat__csat-comment {
    width: 100%;
    min-height: 60px;
    border-radius: 12px;
    border: 1px solid rgba(0, 60, 113, 0.18);
    padding: 0.5rem 0.75rem;
    font: inherit;
    resize: vertical;
}

.support-chat__csat-comment:focus {
    outline: none;
    border-color: var(--color-sky);
    box-shadow: 0 0 0 2px rgba(0, 147, 208, 0.2);
}

.support-chat__csat-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border: 0;
    padding: 0;
    margin: 0;
}

.support-chat__csat-tags legend {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.support-chat__csat-followup {
    display: grid;
    gap: 0.35rem;
}

.support-chat__form {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(0, 60, 113, 0.08);
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.support-chat__form-row {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.support-chat__honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
    opacity: 0;
}

.support-chat__input {
    flex: 1;
    min-height: 46px;
    max-height: 140px;
    resize: none;
    border: 1px solid rgba(0, 60, 113, 0.16);
    border-radius: 16px;
    padding: 0.65rem 1rem;
    font: inherit;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    pointer-events: auto;
    cursor: text;
}

.support-chat__input:focus {
    outline: none;
    border-color: var(--color-sky);
    box-shadow: 0 0 0 3px rgba(0, 147, 208, 0.18);
}

.support-chat__send {
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-sky));
    color: var(--white);
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.support-chat__send:hover,
.support-chat__send:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(0, 94, 184, 0.35);
    outline: none;
}

.support-chat__send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.support-chat__status {
    font-size: 0.75rem;
    color: var(--text-muted);
    min-height: 1.1rem;
}

.support-chat__status.is-error {
    color: #9b1b17;
}

.support-chat__status.is-success {
    color: var(--color-green);
}

.support-chat__status.is-pending {
    color: var(--color-ocean);
}

@media (max-width: 720px) {
    .support-widget {
        right: 1rem;
        bottom: 1rem;
        padding: 0.6rem 0.75rem;
        border-radius: 18px;
        max-width: 200px;
        gap: 0.6rem;
        height: 59px !important;
        box-sizing: border-box;
    }

    .support-widget__avatar {
        width: 40px;
        height: 40px;
    }

    .support-widget__title {
        font-size: 0.85rem;
    }

    .support-chat {
        z-index: 99999 !important;
    }

    .support-chat__backdrop {
        z-index: 99999 !important;
    }

    .support-chat__dialog {
        z-index: 100000 !important;
    }

    /* Match back-to-top button size and position to support widget on mobile */
    .back-to-top {
        width: 59px !important;
        height: 59px !important;
        bottom: 1rem !important;
        left: 1rem !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure both widgets maintain same size and position when chatbot changes */
    .back-to-top,
    .support-widget {
        transition: height 0.2s ease, width 0.2s ease, bottom 0.2s ease, padding 0.2s ease;
    }

    .support-chat {
        padding: 1rem;
        align-items: stretch;
    }

    .support-chat__dialog {
        width: 100%;
        max-height: calc(100vh - 1.5rem);
    }

    .support-chat__body {
        padding: 1rem 1.1rem;
    }

    .support-chat__form {
        padding: 0.85rem 1.1rem 1rem;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Ensure all sections respect viewport width */
section,
.section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: var(--color-navy);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.35s ease;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Ensure navbar container allows menu to overflow */
.navbar > .container {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

.navbar--scrolled {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow: visible;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.nav-brand:focus-visible {
    outline: 2px solid var(--color-sky);
    outline-offset: 4px;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-brand span {
    display: inline-block;
    font-size: 1.1rem !important;
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 300 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 300;
    color: inherit;
    margin: 0;
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.03em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1 1 auto;
}

@media (max-width: 1200px) {
    .nav-menu {
        flex: 0 0 0 !important;
    }
}

.nav-menu li {
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    color: var(--white);
    font-size: 0.9rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Language Selector - Small, subtle utility control */
.language-switcher__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3E%3Cpath d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 10.06l3.71-2.83a.75.75 0 0 1 .92 1.18l-4.24 3.24a.75.75 0 0 1-.92 0L5.21 8.39a.75.75 0 0 1 .02-1.18z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 0.75rem;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    min-width: 90px !important;
    max-width: 110px !important;
    width: auto !important;
    box-sizing: border-box;
    color: inherit;
    font: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    height: 44px;
    padding: 0 1.75rem 0 0.625rem;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    display: flex;
    align-items: center;
}

.language-switcher__select:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.language-switcher__select:focus-visible {
    outline: 2px solid var(--color-sky);
    outline-offset: 2px;
}

.language-switcher__select:active {
    background-color: rgba(255, 255, 255, 0.12);
}

/* Native select dropdown styling - subtle and compact */
.language-switcher__select option {
    background-color: var(--color-navy);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hamburger menu button - hidden by default */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: transparent;
    color: var(--white);
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 44px;
    max-width: 44px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle__icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle__icon-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    border-radius: 0.75px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Mobile navigation - simple and clean */
@media (max-width: 1200px) {
    .navbar .container {
        overflow: visible !important;
        overflow-y: visible !important;
    }
    
    /* Navigation Menu - Prominent, full-width dropdown */
    .nav-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        display: none !important;
        flex-direction: column;
        gap: 0;
        padding: 0.75rem 0;
        margin-top: 0.5rem;
        background-color: var(--color-navy);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        border-radius: 6px;
        z-index: 10000;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        flex: none !important;
        flex-basis: 0 !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .nav-menu.is-open {
        display: flex !important;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin-top: 0.5rem !important;
        padding: 0.75rem 0 !important;
    }
    
    .nav-toggle {
        display: flex !important;
        margin-left: auto;
        margin-right: 0.75rem;
        order: 1;
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        min-width: 44px !important;
        max-width: 44px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .language-switcher {
        margin-left: 0;
        order: 2;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
    }
    
    /* Language selector - compact on mobile */
    .language-switcher__select {
        min-width: 90px !important;
        max-width: 110px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        font-size: 0.85rem !important;
    }
    
    .navbar .container {
        flex-wrap: nowrap !important;
    }

    .navbar {
        overflow: visible !important;
        overflow-y: visible !important;
    }

    .nav-menu li {
        width: 100%;
    }

    /* Navigation menu items - larger, more prominent */
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: background-color 0.15s ease, color 0.15s ease;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus-visible {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--color-sky);
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-menu a::after {
        display: none;
    }
}

/* On very small screens, maintain button sizes */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }

    .nav-toggle {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        min-width: 44px !important;
        max-width: 44px !important;
        margin-right: 0.5rem;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .language-switcher {
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        margin-left: 0;
    }

    .language-switcher__select {
        min-width: 90px !important;
        max-width: 110px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        font-size: 0.85rem;
    }
    
    .navbar .container {
        flex-wrap: nowrap !important;
    }
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-sky);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    opacity: 0;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
    color: var(--color-sky);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-menu a.active::after {
    opacity: 1;
    animation: nav-underline-grow 0.45s ease forwards;
}

/* Parallax Sections */

.parallax-section {
    position: relative;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    --parallax-image: none;
    --parallax-overlay: linear-gradient(135deg, rgba(0, 60, 113, 0.88), rgba(0, 147, 208, 0.65));
    --parallax-shift: 0px;
    --parallax-overscan: clamp(16vh, 12vh + 5vw, 28vh);
    --parallax-inline-overscan: clamp(6vw, 2vw + 6vh, 16vw);
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: calc(-1 * var(--parallax-overscan, 0px));
    bottom: calc(-1 * var(--parallax-overscan, 0px));
    left: calc(-1 * var(--parallax-inline-overscan, var(--parallax-overscan, 0px)));
    right: calc(-1 * var(--parallax-inline-overscan, var(--parallax-overscan, 0px)));
    background-image: var(--parallax-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: translate3d(0, var(--parallax-shift), 0);
    will-change: transform, background-position;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 768px) {
    .parallax-section::before {
        background-size: cover;
        background-position: center;
        transform: none !important;
        will-change: auto;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
    }
}

.parallax-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--parallax-overlay);
    z-index: -1;
}

.hero {
    padding: 5rem 0;
    --parallax-image: url('images/hero-architecture.webp');
    --parallax-overscan: clamp(20vh, 14vh + 6vw, 32vh);
    --parallax-inline-overscan: clamp(8vw, 4vw + 8vh, 18vw);
}

@media (max-width: 768px) {
    .hero {
        --parallax-overscan: clamp(14vh, 10vh + 4vw, 22vh);
        --parallax-inline-overscan: clamp(6vw, 2vw + 6vh, 14vw);
    }
}

/* Hero Section */

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1,
.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero--home {
    --parallax-image: url('images/hero-architecture.webp');
}

.hero--services {
    --parallax-image: url('images/consulting-services.webp');
}

.hero--industries {
    --parallax-image: url('images/industries.webp');
}

.hero--about {
    --parallax-image: url('images/change-management.webp');
}

.hero--listings {
    --parallax-image: url('images/business-acquisition.webp');
}

.hero--canada-msb {
    --parallax-image: url('images/compliance.webp');
}

.company-listings {
    padding: 4rem 0;
    background: #ffffff;
}

.company-listings__header {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.company-listings__header h2 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
    margin-bottom: 0.75rem;
}

.company-listings__header p {
    color: var(--text-muted);
}

/* Canada MSB Page */
.msb-section {
    padding: 5rem 0;
}

.msb-section--light {
    background-color: var(--bg-alt);
}

.msb-section h2 {
    text-align: center;
    font-size: clamp(2rem, 1.4rem + 1.2vw, 2.4rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.msb-section__lead {
    max-width: 840px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.8;
}

.msb-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
    display: grid;
    gap: 0.85rem;
    color: var(--text-body);
}

.msb-list li {
    line-height: 1.75;
}

.msb-sublist {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.75rem;
    display: grid;
    gap: 0.5rem;
}

.msb-service-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .msb-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.msb-service-card {
    background-color: var(--white);
    padding: 2.25rem;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 60, 113, 0.12);
    border-top: 4px solid var(--color-ocean);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.msb-service-card--full {
    grid-column: 1 / -1;
}

.msb-service-card h3 {
    color: var(--text-primary);
    font-size: 1.55rem;
    margin: 0;
}

.msb-service-card ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--text-body);
}

.msb-service-card__intro {
    color: var(--color-sky);
    font-weight: 600;
    margin-bottom: -0.25rem;
}

.msb-grid-two-column {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .msb-grid-two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.msb-grid-two-column h2 {
    text-align: left;
    font-size: 1.95rem;
    margin-bottom: 1rem;
}

.company-listings__panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-listings__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.company-listings__filter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.company-listings__filter-label {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.company-listings__filter-select {
    min-width: 200px;
    padding: 0.65rem 2.5rem 0.65rem 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(17, 45, 78, 0.2);
    background-color: var(--white);
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: 0 10px 24px rgba(14, 30, 58, 0.08);
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8" fill="none"><path d="M2 2.5 L6 5.5 L10 2.5" stroke="%23112D4E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 0.75rem;
    cursor: pointer;
}

.company-listings__filter-select:focus {
    outline: 3px solid rgba(0, 94, 184, 0.25);
    outline-offset: 2px;
    border-color: rgba(0, 94, 184, 0.45);
}

.company-listings__filter-select:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.company-listings__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-listings__sentinel {
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.company-listings__status {
    color: var(--text-muted);
    font-size: 0.95rem;
    background: var(--bg-alt);
    border-radius: 0.75rem;
    padding: 1.5rem;
    line-height: 1.6;
}

.company-listings__status a {
    color: var(--color-sky);
    font-weight: 600;
}

.company-card {
    background: var(--bg-alt);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 18px 35px rgba(14, 30, 58, 0.08);
    border: 1px solid rgba(17, 45, 78, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.company-card__pin {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--color-ocean);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 94, 184, 0.18);
    z-index: 1;
}

.company-card__meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.company-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.company-card__meta-time {
    font-weight: 600;
    color: var(--color-ocean);
}

.company-card__meta-country {
    font-weight: 600;
    color: var(--text-primary);
}

.company-card__title {
    font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem);
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0;
}

.company-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-card__intro {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.company-card__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: var(--text-primary);
}

.company-card__body p {
    margin: 0;
    line-height: 1.65;
}

.company-card__list {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: disc;
}

.company-card__list li {
    line-height: 1.6;
}

.company-card__section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.company-card__section-title {
    font-size: 1.05rem;
    margin: 0;
    font-weight: 600;
    color: var(--color-ocean);
}

.company-card__summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.company-card__summary .company-card__intro {
    color: var(--text-muted);
}


.hero--contact {
    --parallax-image: url('images/contact-building.webp');
}

.hero--subpage {
    padding: 4rem 0;
}

.hero--subpage .hero-content h1,
.hero--subpage .hero-content h2 {
    font-size: 2.75rem;
}

.hero--subpage .hero-description {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.cta--services {
    --parallax-image: url('images/operations.webp');
}

.cta--industries {
    --parallax-image: url('images/industries.webp');
}

.cta--home {
    --parallax-image: url('images/consulting-services.webp');
}

.cta--about {
    --parallax-image: url('images/change-management.webp');
}

.cta--contact {
    --parallax-image: url('images/contact-building.webp');
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, var(--color-ocean), var(--color-sky));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(0, 94, 184, 0.25);
    will-change: transform;
}

.btn:hover,
.btn:focus-visible {
    transform: scale(1.02);
    box-shadow: 0 18px 42px rgba(0, 94, 184, 0.38);
    filter: brightness(1.08);
}

.btn:active {
    transform: scale(0.98);
    box-shadow: 0 10px 24px rgba(0, 94, 184, 0.28);
}

.btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.btn .linkedin-icon-inline,
.btn .contact-cta-icon {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.btn .contact-cta-icon--telegram {
    filter: none;
}

.btn:hover .linkedin-icon-inline,
.btn:focus-visible .linkedin-icon-inline,
.btn:hover .contact-cta-icon,
.btn:focus-visible .contact-cta-icon {
    transform: translateX(4px);
}

@keyframes nav-underline-grow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-menu a::after {
        transition-duration: 0.001ms;
        animation: none;
    }

    .nav-menu a.active::after {
        transform: scaleX(1);
    }

    .btn,
    .btn:hover,
    .btn:focus-visible,
    .btn:active {
        transition-duration: 0.001ms;
        transform: none;
        box-shadow: 0 12px 28px rgba(0, 94, 184, 0.25);
        filter: none;
    }

    .btn .linkedin-icon-inline,
    .btn .contact-cta-icon {
        transform: none !important;
    }
}

/* Featured Promo Banner */
.promo-banner[hidden] {
    display: none;
}

.promo-banner {
    position: relative;
    margin: 4rem 0 3rem;
    color: var(--text-primary);
}

.promo-banner__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 12px 32px rgba(0, 60, 113, 0.12);
    overflow: hidden;
    min-height: 100%;
}

.promo-banner__text {
    max-width: 48rem;
}

.promo-banner__eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    opacity: 0.85;
}

.promo-banner__title {
    font-size: clamp(1.75rem, 2.4vw, 2.5rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.promo-banner__summary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.promo-banner__cta {
    align-self: flex-start;
}

@media (min-width: 768px) {
    .promo-banner__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .promo-banner__text {
        max-width: 38rem;
    }

    .promo-banner__cta {
        align-self: center;
    }
}

@media (max-width: 767px) {
    .promo-banner {
        margin: 3rem 0 2rem;
    }

    .promo-banner__content {
        padding: 2rem;
    }

    .promo-banner__title {
        font-size: 1.75rem;
    }
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 60, 113, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 60, 113, 0.18);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-sky), var(--color-ocean));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 147, 208, 0.25);
}

.service-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: var(--white);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon svg .icon-fill {
    fill: var(--white);
    stroke: none;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .company-listings {
        padding: 3rem 0;
    }

    .company-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .company-listings__grid {
        gap: 1.25rem;
    }

    .company-card {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--color-navy);
    --parallax-image: url('images/project-management.webp');
    --parallax-overlay: linear-gradient(135deg, rgba(0, 60, 113, 0.88), rgba(0, 147, 208, 0.55));
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* About Content */
.about-content {
    padding: 5rem 0;
}

.about-main {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-main p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--color-sky);
    box-shadow: 0 12px 24px rgba(0, 94, 184, 0.12);
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
}

.connect-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.connect-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.connect-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Services Detail */
.services-overview {
    padding: 5rem 0;
}

.services-lead {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-lead h2 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.services-lead p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.service-area-list {
    display: grid;
    gap: 2.5rem;
}

.service-area {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(0, 60, 113, 0.14);
    border-top: 4px solid var(--color-ocean);
}

.service-area h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.service-area .service-subheading {
    color: var(--color-sky);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-area p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-area h4 {
    color: var(--color-ocean);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.service-area ul {
    padding-left: 1.5rem;
    color: var(--text-body);
    line-height: 1.75;
}

.service-area ul li {
    margin-bottom: 0.75rem;
}

.service-area ul li strong {
    color: var(--text-primary);
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.industries-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.8;
}

.industries-tagline {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.industries-list {
    display: grid;
    gap: 2rem;
}

.industry-profile {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(0, 60, 113, 0.14);
}

.industry-profile h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.industry-subheading {
    color: var(--color-sky);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.industry-profile p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.industry-profile h4 {
    color: var(--color-ocean);
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
}

.industry-profile ul {
    padding-left: 1.5rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.industry-profile ul li {
    margin-bottom: 0.5rem;
}

/* Listings Section */
.listings-overview {
    padding: 3.5rem 0;
    background-color: var(--white);
    text-align: center;
}

.listings-overview p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.listings-cta {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 60, 113, 0.08) 0%, rgba(0, 147, 208, 0.08) 100%);
}

.listings-cta__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(0, 60, 113, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.listings-cta__content h2 {
    color: var(--text-primary);
    font-size: 2rem;
}

.listings-cta__content p {
    color: var(--text-body);
    line-height: 1.8;
}

.listings-info-section {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 60, 113, 0.12);
}

.info-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-base) 100%);
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(0, 60, 113, 0.14);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.contact-card h2,
.contact-card h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    margin: 0;
}

.contact-email {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-email-btn {
    font-weight: 600;
    width: 100%;
    justify-content: center;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.contact-card__divider {
    height: 1px;
    background: rgba(0, 60, 113, 0.14);
    margin: 0.5rem 0 0;
}

.contact-card .btn {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    padding: 0.875rem clamp(1rem, 2vw, 2.25rem);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.contact-card__cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.contact-cta-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-cta-badge {
    background: #e7f4ff;
    color: #006ac3;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 106, 195, 0.3);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-form__status {
    min-height: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-form__status.is-pending {
    color: var(--color-sky);
}

.contact-form__status.is-success {
    color: var(--color-emerald, #16a34a);
}

.contact-form__status.is-error {
    color: var(--color-rose, #dc2626);
}

.form-group {
    margin: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-body);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form__captcha {
    display: flex;
    align-items: center;
}

.contact-form__captcha-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    color: var(--text-body);
    width: 100%;
}

@media (min-width: 520px) {
    .contact-form__captcha-row {
        flex-wrap: nowrap;
    }
}

.contact-form__captcha-row .contact-form__captcha-label,
.contact-form__captcha-row .contact-form__captcha-question {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
}

.contact-form__captcha-refresh {
    border: none;
    background: var(--bg-alt);
    color: var(--color-navy);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-form__captcha-refresh:hover,
.contact-form__captcha-refresh:focus-visible {
    background: var(--color-navy);
    color: var(--white);
}

.contact-form__captcha-refresh:focus-visible {
    outline: 2px solid var(--color-sky);
    outline-offset: 2px;
}

.contact-form__captcha-row .contact-form__captcha-input {
    width: 3.25rem;
    min-width: 3rem;
    flex: 0 0 auto;
}

[data-captcha-input][aria-invalid="true"] {
    border-color: var(--color-rose, #dc2626);
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sky);
}

.form-group textarea {
    resize: vertical;
}

/* LinkedIn Icons */
.linkedin-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.linkedin-icon-inline,
.contact-cta-icon {
    width: 24px;
    height: 24px;
}

.contact-cta-icon--telegram {
    fill: currentColor;
}

/* Footer */
.footer {
    background-color: var(--color-navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-sky);
}

.footer-brand {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-sky);
}

.footer-section p {
    color: var(--text-soft);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
    color: var(--text-soft);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 67px;
    height: 67px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-sky));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(0, 60, 113, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    z-index: 1200;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--color-sky), var(--color-green));
    transform: translateY(-4px);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* Responsive Design - General mobile styles */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .values-grid,
    .industries-list,
    .info-grid {
        grid-template-columns: 1fr;
    }
}
.support-chat__csat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* GDPR Consent Statement */
.policy-content {
    padding: 4rem 0;
    background: #f7f7f9;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.policy-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: #374151;
    line-height: 1.7;
}

.policy-list {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    color: #374151;
    line-height: 1.7;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    color: #374151;
}

.policy-meta strong {
    color: #111827;
}

