:root {
    --brand-primary: #4F46E5;
    --brand-primary-hover: #4338CA;
    --border-color: #D1D5DB;
    --focus-ring-color: #A5B4FC;
    --text-primary: #111827;
    --text-secondary: #6B7281;
    --background-light: #FFFFFF;
    --container-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

footer {
    background: #12286B;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0;
}

.block__footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    gap: 16px;
    text-align: center;
}

.footer__logos img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
}

.footer__blocks {
	display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.footer__block {
    margin-right: 0;
    padding-right: 0;
}

.footer__block h2 {
    font-size: 14px;
    font-weight: 700;
    color: #00A9A5;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__link a {
	font-size: .9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
	margin-bottom: 14px;
	display: block;
    transition: color 0.2s;
}

.footer__link-wrapper a {
    display: flex;
    gap: 5px;
    align-items: center;
}

.footer__block--contact .footer__link div {
	font-size: .9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    display: flex;
    transition: color 0.2s;
    flex-direction: column;
    gap: 3px;
}

.footer__link a:hover {
    color: #fff;
}

.footer__toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: #00A9A5;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0;
    margin-top: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__toggle:hover {
    color: #fff;
}

.footer__toggle-icon {
    transition: transform 0.2s ease;
}

.footer__toggle[aria-expanded="true"] .footer__toggle-icon {
    transform: rotate(180deg);
}

.social-links li {
	margin-bottom: 8px;
}

.footer__link {
	font-size: 0.8rem;
    min-height: 16px;
}

.chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #2381FF;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.chat-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(35, 129, 255, 0.4);
}

.chat-button svg {
    width: 32px;
    height: 32px;
}

.contact-support-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1001;
    width: calc(100% - 40px);
    max-width: 420px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
    border: 1px solid #E9E9E9;
    overflow: hidden;
    transform-origin: bottom right;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-support-container[hidden] {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.close-button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #2381FF;
    border: 2px solid #2381FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
}

.close-button:hover {
    background-color: #FFFFFF;
    border-color: #2381FF;
}

.close-button svg {
    width: 20px;
    height: 20px;
}

.close-button svg line {
    stroke: #FFFFFF;
    transition: stroke 0.3s ease-out;
}

.close-button:hover svg line {
    stroke: #2381FF;
}

.support-form-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0px 32px 32px;
}

.contact-support-container .block__label {
    margin-bottom: 8px;
    border-bottom: 1px solid #ECECEC;
    color: #272727;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.items--wrapper-support {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-form-list .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-form-list .item__label {
    font-size: 0.875rem;
    color: #4C5D82;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.support-form-list .input--default {
    border: 2px solid #E5E8F2;
    border-radius: 10px;
    color: #272727;
    padding: 0 14px;
    font-size: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    height: 50px;
    background-color: #FDFDFE;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-form-list .input--default:focus {
    outline: none;
    border-color: #2381FF;
    box-shadow: 0 0 0 4px rgba(35, 129, 255, 0.1);
}

.support-form-list textarea.input--default {
    height: auto;
    /* min-height: 180px; */
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.support-form-list button[type="submit"] {
    width: 100%;
    display: inline-flex;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #2381FF;
    border-radius: 10px;
    color: #FFFFFF;
    border: 2px solid #2381FF;
    transition: all 0.3s ease-out;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    height: 50px;
    margin-top: 8px;
}

.support-form-list button[type="submit"]:hover {
    background-color: #FFFFFF;
    border-color: #2381FF;
    color: #2381FF;
}

@media(min-width: 992px) {
	.footer__blocks {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media(min-width: 1200px) {
	.footer__blocks {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
	}
}

.footer__links a:not([href]) {
    cursor: text;
    pointer-events: none;
    text-decoration: none;
    color: inherit;
}

footer .container-inner {
    padding: 48px 32px 24px;;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-logo-text .ferme {
    color: #fff;
}

.footer-logo-text .tech {
    color: var(--teal-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.footer__link svg {
    width: 16px;
    height: 16px;
    color: var(--teal-light);
    flex-shrink: 0;
}

.footer__block--contact .footer__link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}

.footer__block--contact .footer__link a {
    margin-bottom: unset;
}

.footer__block--contact span {
    color: #fff;
}

/* Email Marketing (EMT) subscribe embed — first footer column */

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

.footer__newsletter-submit {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    padding: 8px 12px;
    background-color: #e89600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 39px;
}

.footer__newsletter-input {
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    background-color: color-mix(in oklab, #fff 10%, transparent);
    border: 1px solid color-mix(in oklab, #fff 10%, transparent);
    height: 39px;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.footer__newsletter-label {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer__newsletter-row {
    display: flex;
}

.footer__newsletter-field {
    min-width: 240px;
}

.footer__newsletter-field-label {
    display: none;
}

.footer__newsletter-submit:hover {
    opacity: 0.92;
}

.footer__newsletter-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.footer__newsletter-message--error {
    color: #b91c1c;
    font-size: 14px;
}

.footer__newsletter-message--ok {
    color: #007f5c;
    font-size: 14px;
}