:root {
    --aisl-green-950: #023e25;
    --aisl-green-900: #045d34;
    --aisl-green-700: #0e7b4a;
    --aisl-green-500: #69c190;
    --aisl-surface-main: #eaedf4;
    --aisl-surface-card: #f6f8fb;
    --aisl-ink: #0f2132;
    --aisl-muted: #506076;
    --aisl-accent: #a76119;
    --aisl-text-xs: 0.75rem;
    --aisl-text-sm: 0.875rem;
    --aisl-text-base: 1rem;
    --aisl-text-lg: 1.125rem;
    --aisl-text-xl: 1.25rem;
    --aisl-text-xl-plus: 1.3125rem;
    --aisl-text-2xl: 1.5rem;
    --aisl-text-3xl: 1.875rem;
    --aisl-text-4xl: 2.25rem;
    --aisl-fluid-body: clamp(1rem, 1.45vw, 1.2rem);
    --aisl-fluid-lead: clamp(1.05rem, 1.75vw, 1.3rem);
    --aisl-fluid-subhead: clamp(1.2rem, 2.2vw, 1.4rem);
    --aisl-fluid-h3: clamp(1.1rem, 2.4vw, 1.3rem);
    --aisl-fluid-h2: clamp(1.5rem, 2.8vw, 2.3rem);
    --aisl-fluid-h1: clamp(1.9rem, 3.2vw, 3.3rem);
    --aisl-fluid-display: clamp(2.1rem, 4vw, 3.8rem);
}

* {
    box-sizing: border-box;
}

[x-cloak] {
    display: none !important;
}

body.site-body {
    margin: 0;
    color: var(--aisl-ink);
    background: var(--aisl-surface-main);
    font-family: "Manrope", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", "Manrope", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
}

.site-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 70;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(9px);
    border-bottom: 1px solid #d8dfea;
}

.site-shell {
    padding-top: 114px;
}

.business-hours-bar {
    background: var(--aisl-green-900);
    color: #d7f1e2;
    border-bottom: 1px solid rgba(167, 227, 191, 0.28);
}

.business-hours-bar__inner {
    min-height: 2.15rem;
    gap: 1rem;
}

.business-hours-bar__item {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--aisl-text-xs);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.business-hours-bar__item i {
    color: #9cebbd;
}

.business-hours-mobile {
    margin-top: 0.25rem;
    border: 1px solid #b9c8bc;
    border-radius: 10px;
    background: #e8f4ec;
    padding: 0.7rem 0.85rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.business-hours-mobile__item {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #1b3e2b;
    font-size: var(--aisl-text-xs);
}

.business-hours-mobile__item i {
    color: var(--aisl-green-900);
}

.brand-mark {
    color: var(--aisl-green-950);
    font-family: "Sora", "Manrope", sans-serif;
    font-size: var(--aisl-text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo-img {
    width: 4.15rem;
    height: 4.15rem;
    object-fit: contain;
    border-radius: 9999px;
}

.nav-link {
    position: relative;
    color: #425369;
    font-size: var(--aisl-text-base);
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: var(--aisl-green-900);
}

.nav-link-active {
    color: var(--aisl-green-700);
}

.nav-link-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.5rem;
    left: 0;
    height: 2px;
    background: var(--aisl-green-700);
}

.nav-dropdown {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: -0.5rem;
}

.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.nav-dropdown__icon {
    font-size: var(--aisl-text-xs);
    transition: transform 0.2s ease;
}

.nav-dropdown__icon.is-open {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%);
    width: 11rem;
    border: 1px solid #cfd9e6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(19, 38, 59, 0.12);
    padding: 0.45rem;
    z-index: 80;
}

.nav-dropdown__item {
    display: block;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    color: #2f4258;
    font-size: var(--aisl-text-sm);
    font-weight: 700;
}

.nav-dropdown__item:hover {
    background: #ecf2fa;
    color: var(--aisl-green-900);
}

.dropdown-fade-enter,
.dropdown-fade-leave {
    transition: opacity 0.16s ease;
}

.dropdown-fade-enter-start,
.dropdown-fade-leave-end {
    opacity: 0;
}

.dropdown-fade-enter-end,
.dropdown-fade-leave-start {
    opacity: 1;
}

.mobile-subnav {
    margin-top: -0.25rem;
    margin-bottom: 0.2rem;
    margin-left: 0.7rem;
    border-left: 2px solid #ccd8e7;
    padding-left: 0.9rem;
}

.mobile-subnav__item {
    display: block;
    color: #4a5c72;
    font-size: var(--aisl-text-sm);
    font-weight: 600;
    padding: 0.22rem 0;
}

.mobile-subnav__item:hover {
    color: var(--aisl-green-900);
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--aisl-green-900);
    color: #fff;
    font-weight: 800;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.cta-pill:hover {
    transform: translateY(-1px);
    background: var(--aisl-green-950);
}

.hero-shell {
    min-height: calc(100vh - 80px);
    background: linear-gradient(110deg, #1a1a1a 0%, #242424 56%, #2f2f2f 100%);
}

.hero-media-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.56) 0%, rgba(14, 14, 14, 0.44) 55%, rgba(32, 32, 32, 0.34) 100%);
}

.hero-slider-dots {
    position: absolute;
    right: 0;
    bottom: 1.4rem;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    gap: 0.65rem;
}

.hero-slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.46);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-slider-dot.is-active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.14);
}

.section-surface {
    background: var(--aisl-surface-main);
}

.content-hero-card {
    border: 1px solid #c9d4e2;
    border-radius: 20px;
    overflow: hidden;
    background: #f3f6fb;
}

.content-hero-media {
    width: 100%;
    height: 19rem;
    object-fit: cover;
    display: block;
}

.content-prose-card {
    border: 1px solid #c9d4e2;
    border-radius: 20px;
    background: #f5f8fc;
    box-shadow: 0 16px 32px rgba(18, 35, 54, 0.05);
}

.company-hero {
    position: relative;
    overflow: hidden;
}

.company-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.company-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(0, 62, 35, 0.76) 0%, rgba(9, 83, 43, 0.58) 50%, rgba(18, 68, 34, 0.52) 100%);
}

.company-hero__inner {
    position: relative;
    z-index: 3;
}

.company-hero__panel {
    max-width: 42rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(182, 227, 196, 0.2);
    background: rgba(2, 84, 45, 0.42);
    backdrop-filter: blur(2px);
}

.company-hero__kicker {
    margin: 0;
    color: #9af0ba;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-hero__title {
    margin: 0.75rem 0 0;
    color: #fff;
    font-size: var(--aisl-fluid-h2);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.company-hero__summary {
    margin: 1rem 0 0;
    color: #e8f4ed;
    font-size: var(--aisl-text-lg);
    line-height: 1.5;
    max-width: 40rem;
}

.company-section-title {
    margin: 0;
    color: var(--aisl-green-950);
    font-size: var(--aisl-fluid-h2);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.company-heritage-copy {
    color: #223549;
    font-size: var(--aisl-text-base);
    line-height: 1.75;
}

.company-heritage-copy p {
    margin-bottom: 1rem;
}

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

.company-stat-card {
    border-radius: 12px;
    border: 1px solid #c6d0de;
    padding: 2.1rem 1.1rem;
    text-align: center;
}

.company-stat-card--soft {
    background: #dde4f2;
}

.company-stat-card--green {
    background: #1d6f3f;
    border-color: #1d6f3f;
}

.company-stat-card--orange {
    background: #f0a062;
    border-color: #f0a062;
}

.company-stat-card__value {
    margin: 0;
    color: #043b25;
    font-size: var(--aisl-fluid-h2);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.company-stat-card--green .company-stat-card__value {
    color: #9df0bc;
}

.company-stat-card__label {
    margin: 0.75rem 0 0;
    color: #4f6077;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-stat-card--green .company-stat-card__label {
    color: #8edeb0;
}

.company-values-section {
    background: #dce3f0;
}

.company-values-label {
    margin: 0;
    color: var(--aisl-green-950);
    font-size: var(--aisl-text-xl);
    font-weight: 700;
}

.company-values-intro {
    margin: 0;
    color: #30455d;
    font-size: var(--aisl-text-base);
}

.company-value-card {
    border: 1px solid #bdc9d8;
    border-radius: 12px;
    background: #f7f9fd;
    padding: 1.6rem;
}

.company-value-card__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--aisl-text-base);
}

.company-value-card__icon--green {
    background: #066d37;
    color: #9ef0bb;
}

.company-value-card__icon--orange {
    background: #f0a062;
    color: #7b4210;
}

.company-value-card__title {
    margin: 1rem 0 0;
    color: #0f2740;
    font-size: var(--aisl-text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.company-value-card__body {
    margin: 0.75rem 0 0;
    color: #2f455c;
    font-size: var(--aisl-text-base);
    line-height: 1.6;
}

.company-regional-summary {
    margin: 1rem 0 0;
    color: #2f455c;
    font-size: var(--aisl-text-base);
    line-height: 1.6;
}

.company-hub-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.company-hub-row__icon {
    margin-top: 0.15rem;
    color: #045d34;
    font-size: var(--aisl-text-lg);
}

.company-hub-row__name {
    margin: 0;
    color: #055533;
    font-size: var(--aisl-text-xl);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.company-hub-row__address {
    margin: 0.2rem 0 0;
    color: #2f455c;
    font-size: var(--aisl-text-xl);
    line-height: 1.5;
}

.company-map-frame {
    border-radius: 16px;
    border: 1px solid #b9c6d6;
    background: #f1f4fa;
    padding: 0.85rem;
    box-shadow: 0 14px 30px rgba(12, 28, 48, 0.08);
}

.company-map-frame__image {
    display: block;
    width: 100%;
    height: 28rem;
    object-fit: cover;
    border-radius: 12px;
}

.company-cta-section {
    background: #025724;
}

.company-cta-title {
    margin: 0;
    color: #fff;
    font-size: var(--aisl-text-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.company-cta-summary {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    color: #cfe8d7;
    font-size: var(--aisl-text-base);
    line-height: 1.7;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13rem;
    border-radius: 9999px;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.85rem 1.45rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.company-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.company-btn--primary {
    background: var(--aisl-accent);
    color: #fff;
}

.company-btn--secondary {
    background: #f2f5fb;
    color: #114032;
}

.management-scene {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.management-scene__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.management-scene__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(0, 56, 24, 0.62) 0%, rgba(5, 81, 34, 0.47) 50%, rgba(19, 68, 31, 0.45) 100%);
}

.management-scene__inner {
    position: relative;
    z-index: 3;
}

.management-scene__title {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: var(--aisl-text-3xl);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.management-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.management-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
    border: 1px solid rgba(105, 193, 144, 0.24);
    background: rgba(4, 103, 51, 0.7);
    padding: 1.35rem;
}

.management-card__photo-wrap {
    display: flex;
    justify-content: center;
}

.management-card__photo {
    width: 13rem;
    height: 13rem;
    object-fit: cover;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.management-card__content {
    color: #dbf4e6;
}

.management-card__position {
    margin: 0;
    color: #f0b16d;
    font-size: var(--aisl-text-lg);
    font-weight: 500;
    line-height: 1.4;
}

.management-card__name {
    margin: 0.65rem 0 0;
    color: #fff;
    font-size: var(--aisl-text-xl);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.management-card__bio {
    margin: 0.8rem 0 0;
    color: #dff4e9;
    font-size: var(--aisl-text-base);
    line-height: 1.55;
}

.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(5, 22, 14, 0.76) 0%, rgba(7, 31, 21, 0.72) 55%, rgba(10, 31, 22, 0.78) 100%);
}

.contact-hero__inner {
    position: relative;
    z-index: 3;
    text-align: center;
}

.contact-hero__title {
    margin: 0;
    color: #f4fbf7;
    font-size: var(--aisl-fluid-h2);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.contact-hero__summary {
    margin: 1rem auto 0;
    max-width: 50rem;
    color: #def0e7;
    font-size: var(--aisl-fluid-lead);
    line-height: 1.45;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.contact-form-card {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: var(--aisl-surface-card);
    padding: 1.5rem;
}

.contact-form-card__title {
    margin: 0;
    color: #0d223b;
    font-size: var(--aisl-fluid-h3);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-field__label {
    display: block;
    margin: 0 0 0.45rem;
    color: #223549;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-field__control {
    width: 100%;
    min-height: 3rem;
    border: 1px solid #afbcaf;
    border-radius: 10px;
    background: #f6f8f9;
    color: #31475f;
    font-size: var(--aisl-text-sm);
    padding: 0.72rem 0.9rem;
}

.contact-field__control::placeholder {
    color: #5e7289;
}

.contact-field__control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(155, 220, 179, 0.4);
}

.contact-field__select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #3d5168 50%), linear-gradient(135deg, #3d5168 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.2rem;
}

.contact-field__textarea {
    resize: vertical;
    min-height: 10.5rem;
}

.contact-submit-btn {
    border: 0;
    border-radius: 9999px;
    background: var(--aisl-green-900);
    color: #fff;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.42rem 1.2rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-submit-btn:hover {
    background: var(--aisl-green-950);
    transform: translateY(-1px);
}

.contact-submit-btn:disabled,
.quote-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

.contact-map-card {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: #d4dbe8;
    padding: 1.15rem;
}

.contact-map-card__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #5e6e66;
    font-size: var(--aisl-text-sm);
    font-weight: 700;
}

.contact-map-card__frame {
    margin-top: 0.85rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #afbbc6;
}

.contact-map-card__frame iframe {
    width: 100%;
    min-height: 15rem;
    border: 0;
    display: block;
}

.contact-hq-card {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: var(--aisl-surface-card);
    padding: 1.5rem;
}

.contact-hq-card__icon-wrap {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 9999px;
    background: #d5deee;
    color: var(--aisl-green-900);
    font-size: var(--aisl-text-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-hq-card__title {
    margin: 0.95rem 0 0;
    color: #0d223b;
    font-size: var(--aisl-text-lg);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-hq-card__summary {
    margin: 0.35rem 0 0;
    color: #2f455c;
    font-size: var(--aisl-text-sm);
}

.contact-hq-card__row {
    margin: 1rem 0 0;
    color: #21364d;
    font-size: var(--aisl-text-sm);
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.contact-hq-card__row i {
    color: #6c7f72;
    font-size: var(--aisl-text-sm);
    margin-top: 0.18rem;
}

.contact-outlets-shell {
    border: 1px solid #c8d3de;
    border-radius: 16px;
    background: #f5f8fc;
    padding: 1.5rem;
}

.contact-outlets-shell__title {
    margin: 0;
    color: #0d223b;
    font-size: var(--aisl-fluid-h3);
    font-weight: 800;
}

.contact-outlets-shell__intro {
    margin: 0.5rem 0 0;
    color: #4a5f76;
    font-size: var(--aisl-text-sm);
}

.contact-outlets-accordion {
    border: 1px solid #c9d2dd;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fbff;
}

.contact-outlets-accordion__item+.contact-outlets-accordion__item {
    border-top: 1px solid #d5dde6;
}

.contact-outlets-accordion__trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--aisl-green-900);
    font-size: var(--aisl-text-base);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 0.9rem 1.15rem;
    cursor: pointer;
}

.contact-outlets-accordion__district {
    color: #2f455c;
    font-size: var(--aisl-text-sm);
    font-weight: 700;
}

.contact-outlets-accordion__content {
    padding: 0 1.15rem;
    color: #2f455c;
    background: #f8fbff;
    overflow: hidden;
    max-height: 0;
    font-size: var(--aisl-text-sm);
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.22s ease, padding 0.22s ease;
}

.contact-outlets-accordion__content.is-open {
    padding: 0.4rem 1.15rem 1.05rem;
}

.products-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #cbd6e6;
    min-height: 420px;
}

.products-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
}

.products-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(3, 18, 10, 0.7) 0%, rgba(8, 33, 22, 0.56) 52%, rgba(13, 28, 44, 0.44) 100%);
}

.products-hero__inner {
    position: relative;
    z-index: 3;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero__content {
    position: relative;
    z-index: 3;
    width: min(100%, 980px);
    text-align: center;
}

.products-hero__title {
    margin: 0;
    color: #fff;
    font-size: var(--aisl-fluid-h2);
    font-weight: 800;
    line-height: 1.16;
}

.products-hero__title span {
    color: #ffc281;
}

.products-filter-form {
    display: block !important;
    margin-top: 1.4rem;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

.products-filter-form,
.products-filter-form.loading,
.products-filter-form.oc-loading,
.products-filter-form.is-loading {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.products-filter-grid {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.products-field {
    width: 100%;
    max-width: 12.5rem;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.products-field__control {
    display: block !important;
    width: 100%;
    min-height: 2.55rem;
    border-radius: 12px;
    border: 0;
    background: rgba(248, 251, 255, 0.97);
    color: #12253a;
    font-size: var(--aisl-text-sm);
    padding: 0.58rem 0.95rem;
}

.products-field__control::placeholder {
    color: #657589;
}

.products-field__control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(171, 228, 186, 0.34);
}

.products-field__select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #3d5168 50%), linear-gradient(135deg, #3d5168 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.3rem;
}

.products-filter-btn {
    border: 0;
    border-radius: 9999px;
    background: var(--aisl-accent);
    color: #fff;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.68rem 1.3rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.products-filter-btn:hover {
    background: #905712;
    transform: translateY(-1px);
}

.products-filter-reset {
    color: #e6f4ec;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.products-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.products-filter-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #b8c9de;
    background: #f1f5fb;
    color: #26405b;
    font-size: var(--aisl-text-xs);
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.72rem;
}

.products-filter-clear-link {
    color: var(--aisl-green-900);
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-category-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #0a6a43;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-category-indicator__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: inherit;
}

.news-category-indicator__link:hover {
    color: #075233;
}

.news-detail-head h1 {
    letter-spacing: -0.03em;
}

.news-detail-media img {
    display: block;
}

.news-detail-body {
    box-shadow: 0 18px 40px rgba(13, 29, 49, 0.06);
}

.news-recent-panel {
    position: sticky;
    top: 104px;
    border: 1px solid #ced8e5;
    border-radius: 18px;
    background: #f3f6fc;
    padding: 1.25rem;
}

.news-recent-title {
    margin: 0;
    color: #0e2238;
    font-size: var(--aisl-text-3xl);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.news-recent-link {
    display: block;
    border-radius: 12px;
    border: 1px solid #dbe4ee;
    background: #ffffff;
    padding: 0.8rem 0.9rem;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.news-recent-link:hover {
    border-color: #b9cbde;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(20, 36, 56, 0.06);
}

.news-recent-link-title {
    display: block;
    color: #0f243d;
    font-size: var(--aisl-text-base);
    font-weight: 800;
    line-height: 1.28;
}

.news-recent-link-date {
    display: block;
    margin-top: 0.3rem;
    color: #5b6d86;
    font-size: var(--aisl-text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-card-clickable {
    cursor: pointer;
}

.news-card-clickable:focus-visible {
    outline: 3px solid rgba(14, 123, 74, 0.45);
    outline-offset: 2px;
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.news-page-link {
    min-width: 2.35rem;
    height: 2.35rem;
    border-radius: 9999px;
    border: 1px solid #b9c7d9;
    background: #f2f6fc;
    color: #28435c;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-page-link:hover {
    background: #dfe8f4;
    border-color: #8ea4bd;
}

.news-page-link.is-active {
    background: var(--aisl-green-900);
    color: #fff;
    border-color: var(--aisl-green-900);
}

.news-page-link.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.products-page-link {
    min-width: 2.35rem;
    height: 2.35rem;
    border-radius: 9999px;
    border: 1px solid #b9c7d9;
    background: #f2f6fc;
    color: #28435c;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.products-page-link:hover {
    background: #dfe8f4;
    border-color: #8ea4bd;
}

.products-page-link.is-active {
    background: var(--aisl-green-900);
    color: #fff;
    border-color: var(--aisl-green-900);
}

.products-page-link.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.scroll-top-btn {
    position: fixed;
    right: 1.25rem;
    bottom: 5.35rem;
    width: 2.7rem;
    height: 2.7rem;
    border: 0;
    border-radius: 9999px;
    background: var(--aisl-green-900);
    color: #fff;
    font-size: var(--aisl-text-base);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 75;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.product-card {
    background: var(--aisl-surface-card);
    border: 0.2px solid #b8c7ba;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(19, 37, 25, 0.1);
}

.tag-pill {
    display: inline-flex;
    border-radius: 9999px;
    background: #97f0af;
    color: #033f27;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.42rem 0.96rem;
}

.news-shell {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    overflow: hidden;
    background: var(--aisl-surface-card);
}

.news-shell__feature-media {
    width: 100%;
    height: 100%;
    min-height: 24rem;
    object-fit: cover;
    display: block;
}

.news-shell__feature-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .news-shell--featured {
        height: 80%;
    }

    .news-shell__feature-media,
    .news-shell__feature-content {
        height: 100%;
    }
}

.news-shell__feature-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-shell__feature-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.did-you-know {
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: linear-gradient(120deg, #014526 0%, #026037 48%, #034927 100%);
    color: #fff;
}

.did-you-know__body {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.did-you-know__link {
    margin-top: auto;
}

.did-you-know__controls {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.did-you-know__nav {
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d7ffe5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.did-you-know__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.did-you-know__dot {
    width: 0.55rem;
    height: 0.55rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.38);
}

.did-you-know__dot.is-active {
    background: #8ef0a8;
}

.stay-updated {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: var(--aisl-surface-card);
}

.careers-hero {
    position: relative;
    overflow: hidden;
}

.careers-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.careers-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(2, 32, 19, 0.79) 0%, rgba(4, 65, 37, 0.72) 55%, rgba(9, 26, 17, 0.78) 100%);
}

.careers-hero__inner {
    position: relative;
    z-index: 3;
}

.careers-hero__title {
    margin: 0;
    color: #f4fbf7;
    font-size: var(--aisl-fluid-h2);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.careers-hero__summary {
    margin: 1rem auto 0;
    max-width: 52rem;
    color: #e4f3ea;
    font-size: var(--aisl-fluid-body);
    line-height: 1.5;
}

.careers-section-title {
    margin: 0;
    color: var(--aisl-green-950);
    font-size: var(--aisl-fluid-h3);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.careers-section-intro {
    margin-left: auto;
    margin-right: auto;
    color: #29415b;
    font-size: var(--aisl-fluid-body);
    line-height: 1.6;
    max-width: 44rem;
}

.careers-feature-card {
    border: 1px solid #b8c7ba;
    border-radius: 12px;
    background: var(--aisl-surface-card);
    padding: 2rem 1.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.careers-feature-card__icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: #d5ddeb;
    color: var(--aisl-green-950);
    font-size: var(--aisl-text-2xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.careers-feature-card__title {
    margin: 1.5rem 0 0;
    color: #10253f;
    font-size: var(--aisl-fluid-subhead);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.careers-feature-card__body {
    margin: 1rem 0 0;
    color: #30485f;
    font-size: var(--aisl-text-base);
    line-height: 1.58;
}

.careers-benefits-section {
    background: #dfe5f2;
}

.careers-benefit-card {
    border: 1px solid #b8c7ba;
    border-radius: 12px;
    background: var(--aisl-surface-card);
    padding: 1.45rem 1.55rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.careers-benefit-card__icon {
    color: var(--aisl-green-900);
    font-size: var(--aisl-text-xl-plus);
    margin-top: 0.22rem;
}

.careers-benefit-card__title {
    margin: 0;
    color: #0d223b;
    font-size: var(--aisl-fluid-subhead);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.careers-benefit-card__body {
    margin: 0.5rem 0 0;
    color: #2f455c;
    font-size: var(--aisl-text-base);
    line-height: 1.52;
}

.careers-vacancy-card {
    border: 1px solid #b8c7ba;
    border-radius: 12px;
    background: var(--aisl-surface-card);
    padding: 1.8rem 1.55rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.careers-vacancy-card__title {
    margin: 0;
    color: #0d223b;
    font-size: var(--aisl-fluid-subhead);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.careers-vacancy-card__meta {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    color: #31475f;
    font-size: var(--aisl-text-sm);
}

.careers-vacancy-card__meta i {
    margin-right: 0.35rem;
}

.careers-vacancy-card__dot {
    color: #6e8094;
}

.careers-vacancy-card__pill {
    border-radius: 6px;
    background: #d5deee;
    color: #2e4460;
    font-size: var(--aisl-text-sm);
    font-weight: 700;
    padding: 0.22rem 0.7rem;
}

.careers-vacancy-card__btn {
    flex: 0 0 auto;
    min-width: 10.5rem;
    border-radius: 9999px;
    background: #005b2d;
    color: #fff;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    text-align: center;
    padding: 0.65rem 1.2rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.careers-vacancy-card__btn:hover {
    background: #004524;
    transform: translateY(-1px);
}

.careers-pool-cta {
    background: #015828;
}

.careers-pool-cta__title {
    margin: 0;
    color: #f3fbf7;
    font-size: var(--aisl-fluid-h3);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.careers-pool-cta__summary {
    margin: 1rem auto 0;
    color: #a0deba;
    font-size: var(--aisl-fluid-body);
    line-height: 1.5;
    max-width: 52rem;
}

.careers-pool-cta__button {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13.5rem;
    border-radius: 9999px;
    background: var(--aisl-accent);
    color: #fff;
    font-size: var(--aisl-text-lg);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.55rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.careers-pool-cta__button:hover {
    background: #91540f;
    transform: translateY(-1px);
}

.careers-detail__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: #9df0bc;
    color: #0b5a35;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
}

.careers-detail__title {
    margin: 0;
    color: #0d223b;
    font-size: var(--aisl-fluid-h3);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.careers-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.4rem;
    color: #324961;
    font-size: var(--aisl-text-base);
}

.careers-detail__meta i {
    margin-right: 0.45rem;
}

.careers-detail__image-shell {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    overflow: hidden;
    background: #d9e0ed;
}

.careers-detail__image {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    display: block;
}

.careers-detail__section-title {
    margin: 0;
    color: #0d223b;
    font-size: var(--aisl-fluid-subhead);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.careers-detail__section-divider {
    margin-top: 0.65rem;
    border-top: 1px solid #b8c7ba;
}

.careers-detail__rich {
    color: #2b425a;
    font-size: var(--aisl-text-lg);
    line-height: 1.65;
}

.careers-detail__rich p {
    margin-bottom: 1rem;
}

.careers-detail__rich--list ul,
.careers-detail__rich--qualification-list ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

.careers-detail__rich--list li,
.careers-detail__rich--qualification-list li {
    position: relative;
    padding-left: 2.45rem;
    margin-bottom: 0.9rem;
}

.careers-detail__rich--list li::before,
.careers-detail__rich--qualification-list li::before {
    position: absolute;
    left: 0;
    top: 0.08rem;
    font-family: "Font Awesome 6 Free";
}

.careers-detail__rich--list li::before {
    content: "\f058";
    color: #046138;
    font-weight: 400;
}

.careers-detail__qualifications-shell {
    border: 1px solid #b8c7ba;
    border-radius: 12px;
    background: var(--aisl-surface-card);
    padding: 1.35rem 1.25rem;
}

.careers-detail__rich--qualification-list li::before {
    content: "\f138";
    color: #a65d15;
    font-weight: 900;
}

.careers-detail__side-card {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: var(--aisl-surface-card);
    padding: 1.5rem;
}

.careers-detail__side-title {
    margin: 0;
    color: #1c2532;
    font-size: var(--aisl-fluid-lead);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.careers-detail__side-summary {
    margin: 0.9rem 0 0;
    color: #42554f;
    font-size: var(--aisl-text-base);
    line-height: 1.5;
}

.careers-detail__download-btn {
    margin-top: 1.4rem;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 9999px;
    background: #005b2d;
    color: #fff;
    font-size: var(--aisl-text-lg);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.9rem 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.careers-detail__download-btn:hover {
    background: #004523;
    transform: translateY(-1px);
}

.careers-detail__side-benefits-title {
    margin: 1rem 0 0;
    color: #1f2737;
    font-size: var(--aisl-text-xl);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.careers-detail__side-benefits-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    color: #4a5952;
    font-size: var(--aisl-text-base);
}

.careers-detail__side-benefits-list li+li {
    margin-top: 0.6rem;
}

.careers-detail__side-benefits-list i {
    margin-right: 0.5rem;
}

.careers-detail__other-openings {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: var(--aisl-surface-card);
    padding: 1.35rem;
}

.careers-detail__other-opening-item {
    display: block;
    border: 1px solid #b8c7ba;
    border-radius: 10px;
    background: #f6f8fb;
    padding: 0.75rem 0.85rem;
}

.careers-detail__other-opening-item:hover {
    background: #eef3f9;
}

.careers-detail__other-opening-title {
    display: block;
    color: #0e2238;
    font-size: var(--aisl-text-base);
    font-weight: 800;
    line-height: 1.35;
}

.careers-detail__other-opening-location {
    display: block;
    margin-top: 0.25rem;
    color: #364d63;
    font-size: var(--aisl-text-sm);
}

.careers-detail__all-jobs-link {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #035c35;
    font-size: var(--aisl-text-base);
    font-weight: 800;
}

.quote-page-title {
    margin: 0;
    color: var(--aisl-green-900);
    font-size: var(--aisl-text-2xl);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.quote-page-summary {
    color: #2d435a;
    font-size: var(--aisl-text-base);
    line-height: 1.52;
    max-width: 58rem;
}

.quote-wizard__header {
    display: grid;
    gap: 0.5rem;
}

.quote-wizard__step-label {
    margin: 0;
    color: #35506a;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quote-wizard__progress {
    height: 0.45rem;
    border-radius: 9999px;
    background: #d5deea;
    overflow: hidden;
}

.quote-wizard__progress-bar {
    display: block;
    height: 100%;
    width: 33.333%;
    border-radius: 9999px;
    background: var(--aisl-green-900);
    transition: width 0.2s ease;
}

.quote-wizard__intro {
    margin: 0.85rem 0 0;
    color: #3a4f67;
    font-size: var(--aisl-text-sm);
}

.quote-wizard__nav {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.quote-wizard-nav-btn {
    width: auto;
    min-height: 2.3rem;
    border: 0;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: var(--aisl-text-sm);
    font-weight: 700;
    color: #fff;
    padding: 0.45rem 0.95rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.quote-wizard-nav-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.quote-wizard-nav-btn--back {
    background: #ffffff;
    color: #0e7b4a;
    border: 1px solid #0e7b4a;
}

.quote-wizard-nav-btn--next {
    background: #0e7b4a;
}

.quote-wizard-nav-btn--next:hover {
    background: #096a3f;
}

.quote-wizard-side {
    display: none;
}

.quote-form-card {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: var(--aisl-surface-card);
    padding: 1.8rem 1.75rem;
}

.quote-form-card__section-title {
    margin: 0;
    color: var(--aisl-green-950);
    font-size: var(--aisl-text-lg);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.quote-form-card__divider {
    margin-top: 0.9rem;
    border-top: 1px solid #b8c7ba;
}

.quote-field__label {
    display: block;
    margin: 0 0 0.45rem;
    color: #0f2239;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quote-field__control {
    width: 100%;
    max-height: 2.5rem;
    border: 1px solid #afbbc9;
    border-radius: 10px;
    background: #d5d9e4;
    color: #2f465f;
    font-size: var(--aisl-text-sm);
    padding: 0.72rem 0.9rem;
}

.quote-field__control::placeholder {
    color: #667b93;
}

.quote-field__control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(155, 220, 179, 0.42);
}

.quote-field__select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #445a74 50%), linear-gradient(135deg, #445a74 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.2rem;
}

.quote-field__select:disabled,
.quote-field__select--readonly {
    opacity: 1;
    cursor: default;
}

.quote-field__textarea {
    resize: vertical;
    min-height: 8.5rem;
}

.quote-field__composite {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.quote-field__composite--readonly .quote-field__control,
.quote-field__composite--readonly .quote-field__suffix {
    background: #d9dee8;
    color: #50657c;
    cursor: default;
}

.quote-field__control--split {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.quote-field__suffix {
    display: inline-flex;
    align-items: center;
    border: 1px solid #afbbc9;
    border-left: 0;
    background: #c8cedc;
    color: #314861;
    font-size: var(--aisl-text-base);
    padding: 0 0.5rem;
}

.quote-upload-field {
    min-height: 11rem;
    border: 2px dashed #aebcaf;
    border-radius: 12px;
    background: #d4d9e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.quote-upload-field:hover {
    border-color: #8ea791;
    background: #dce1eb;
}

.quote-upload-field__icon {
    color: #778573;
    font-size: var(--aisl-text-2xl);
    line-height: 1;
}

.quote-upload-field__headline {
    margin-top: 0.8rem;
    color: #0f2239;
    font-size: var(--aisl-text-sm);
    font-weight: 700;
}

.quote-upload-field__subline {
    margin-top: 0.35rem;
    color: #3e5268;
    font-size: var(--aisl-text-xs);
}

.quote-submit-btn {
    border: 0;
    border-radius: 9999px;
    background: #005b2d;
    color: #fff;
    font-size: var(--aisl-text-sm);
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.5rem 1.15rem;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.quote-submit-btn:hover {
    background: #004523;
    transform: translateY(-1px);
}

.quote-submit-btn:focus,
.quote-submit-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(4, 93, 52, 0.24);
}

.quote-submit-btn--email {
    background: var(--aisl-accent);
}

.quote-submit-btn--email:hover {
    background: #8f5316;
}

.quote-submit-btn--email:focus,
.quote-submit-btn--email:focus-visible {
    box-shadow: 0 0 0 3px rgba(167, 97, 25, 0.28);
}

.quote-submit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.quote-submit-btn--whatsapp {
    background: #0e7b4a;
}

.quote-submit-btn--whatsapp:hover {
    background: #096a3f;
}

.quote-submit-hint {
    margin: 0.45rem 0 0;
    color: #3a4f67;
    font-size: var(--aisl-text-xs);
    line-height: 1.45;
}

.submit-btn__label,
.submit-btn__loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn__loading {
    display: none;
}

.submit-btn__spinner {
    width: 0.95rem;
    height: 0.95rem;
    border: 2px solid rgba(105, 193, 144, 0.45);
    border-top-color: var(--aisl-green-500);
    border-radius: 9999px;
    animation: submit-btn-spin 0.8s linear infinite;
}

/* Keep October AJAX loaders on-brand with AISL green */
.jax-progress-bar {
    height: 4px !important;
    background: linear-gradient(90deg, var(--aisl-green-900), var(--aisl-green-500)) !important;
    box-shadow: 0 0 14px rgba(14, 123, 74, 0.28) !important;
}

.jax-attach-loader::after,
a.oc-loading::after,
button.oc-loading::after,
span.oc-loading::after {
    border-color: rgba(14, 123, 74, 0.56) !important;
    border-right-color: transparent !important;
    opacity: 0.9 !important;
}

.jax-flash-message {
    align-items: flex-start !important;
    width: min(36rem, calc(100vw - 2rem)) !important;
    left: 50% !important;
    top: 3.5rem !important;
    margin-left: 0 !important;
    padding: 0.9rem 1rem !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: var(--aisl-text-sm) !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    box-shadow: 0 18px 42px rgba(15, 34, 57, 0.2) !important;
    transform: translateX(-50%) translateY(-0.35rem) scale(0.98) !important;
}

.jax-flash-message.flash-show {
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

.jax-flash-message.success {
    background: var(--aisl-green-900) !important;
}

.jax-flash-message.error {
    background: #b83216 !important;
}

.jax-flash-message.warning {
    background: var(--aisl-accent) !important;
}

.jax-flash-message.info,
.jax-flash-message.loading {
    background: #0e7b4a !important;
}

.jax-flash-message span.flash-message {
    padding-right: 0.75rem !important;
}

.jax-flash-message a.flash-close {
    flex: 0 0 auto !important;
    opacity: 0.78 !important;
}

.jax-flash-message a.flash-close:hover,
.jax-flash-message a.flash-close:focus {
    opacity: 1 !important;
}

.jax-flash-message span.flash-loader::after {
    border-color: rgba(255, 255, 255, 0.72) !important;
    border-right-color: transparent !important;
    opacity: 1 !important;
}

.bar-loading-indicator .progress-bar,
.progress.bar-loading-indicator .progress-bar {
    background-color: var(--aisl-green-900) !important;
}

.contact-submit-btn.is-submitting .submit-btn__label,
.quote-submit-btn.is-submitting .submit-btn__label,
.newsletter-submit-btn.is-submitting .submit-btn__label {
    display: none;
}

.contact-submit-btn.is-submitting .submit-btn__loading,
.quote-submit-btn.is-submitting .submit-btn__loading,
.newsletter-submit-btn.is-submitting .submit-btn__loading {
    display: inline-flex;
}

.newsletter-submit-btn:disabled {
    cursor: wait;
    opacity: 0.86;
}

@media (max-width: 768px) {
    .jax-flash-message {
        left: 1rem !important;
        right: 1rem !important;
        top: 1rem !important;
        width: auto !important;
        transform: translateY(-0.35rem) scale(0.98) !important;
    }

    .jax-flash-message.flash-show {
        transform: translateY(0) scale(1) !important;
    }
}

@keyframes submit-btn-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.quote-side-card,
.quote-side-support-card {
    border: 1px solid #b8c7ba;
    border-radius: 16px;
    background: #d5dceb;
    overflow: hidden;
}

.quote-side-card {
    padding: 1.5rem;
}

.quote-side-card__title {
    margin: 0;
    color: var(--aisl-green-950);
    font-size: var(--aisl-text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.quote-side-card__reason {
    display: grid;
    grid-template-columns: 2.3rem 1fr;
    gap: 0.85rem;
    align-items: start;
}

.quote-side-card__reason-icon {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 9999px;
    background: #176b3f;
    color: #d2fae1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--aisl-text-sm);
}

.quote-side-card__reason-title {
    margin: 0;
    color: #0f2239;
    font-size: var(--aisl-text-base);
    font-weight: 800;
    line-height: 1.35;
}

.quote-side-card__reason-body {
    margin: 0.3rem 0 0;
    color: #2c435b;
    font-size: var(--aisl-text-sm);
    line-height: 1.45;
}

.quote-side-support-card__image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    display: block;
}

.quote-side-support-card__summary {
    margin: 0;
    color: #2e445c;
    font-size: var(--aisl-text-sm);
    line-height: 1.45;
    padding: 1.25rem 1.15rem;
}

.quote-item-remove-btn {
    width: auto;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #b42318;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.quote-item-remove-btn:hover {
    color: #9f1c1c;
    transform: translateY(-1px);
}

.quote-item-remove-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.22);
}

.quote-item-remove-btn__text {
    display: none;
}

.quote-item-row {
    padding: 1rem;
    row-gap: 0.9rem;
}

.quote-item-row__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.1rem;
    line-height: 1;
}

@media (min-width: 1280px) {
    .quote-wizard-side {
        display: flex;
        flex-direction: column;
    }
}

.footer-surface {
    background: #fff;
    border-top: 1px solid #d8dfea;
}

.footer-link {
    color: #4f6178;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: var(--aisl-text-xs);
    transition: color 0.22s ease;
}

.footer-link:hover {
    color: var(--aisl-green-900);
}

.footer-address-text {
    color: #506076;
    font-size: var(--aisl-text-sm);
    font-weight: 600;
    line-height: 1.55;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.05rem;
    padding-top: 0.2rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo-img {
    width: 5.3rem;
    height: 5.3rem;
    object-fit: contain;
    border-radius: 9999px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-links a {
    color: #4f6178;
    font-size: var(--aisl-text-xl-plus);
    transition: color 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.footer-social-links a:hover {
    opacity: 0.82;
    filter: saturate(1.08);
}

.footer-social-links a:has(.fa-facebook),
.footer-social-links a:has(.fa-facebook-f) {
    color: #1877f2;
}

.footer-social-links a:has(.fa-instagram) {
    color: #e4405f;
}

.footer-social-links a:has(.fa-instagram) i {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-social-links a:has(.fa-linkedin),
.footer-social-links a:has(.fa-linkedin-in) {
    color: #0a66c2;
}

.footer-social-links a:has(.fa-x-twitter),
.footer-social-links a:has(.fa-twitter) {
    color: #111111;
}

.footer-social-links a:has(.fa-youtube) {
    color: #ff0000;
}

.footer-social-links a:has(.fa-whatsapp) {
    color: #25d366;
}

.footer-social-links a:has(.fa-tiktok) {
    color: #111111;
}

.footer-copy {
    margin: 2rem 0 0;
    padding-top: 1.35rem;
    border-top: 1px solid #d8dfea;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    color: #65788f;
    font-size: var(--aisl-text-xs);
    font-weight: 700;
}

.footer-copy__left,
.footer-copy__right {
    display: inline-flex;
    align-items: center;
}

.footer-copy__right {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-copy__right:hover,
.footer-copy__right:focus-visible {
    color: var(--aisl-green-900);
}

.footer-copy__right:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 0.2rem;
}

.product-gallery-shell {
    position: relative;
}

.product-feature-frame {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #b8c7ba;
    background: #dbe2ee;
    min-height: 24rem;
}

.product-feature-button {
    width: 100%;
    border: 0;
    padding: 0;
    display: block;
    background: transparent;
    cursor: zoom-in;
}

.product-feature-image {
    width: 100%;
    min-height: 24rem;
    height: 100%;
    object-fit: cover;
}

.product-support-strip {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.product-support-thumb {
    flex: 0 0 auto;
    width: 6.25rem;
    height: 5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #e2e8f0;
    transition: border-color 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.product-support-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-support-thumb:hover {
    border-color: #8aa1b7;
    transform: translateY(-1px);
}

.product-support-thumb.is-active {
    border-color: var(--aisl-green-900);
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-lightbox-image {
    max-width: min(94vw, 1200px);
    max-height: 88vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.product-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: var(--aisl-text-xl-plus);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.65rem;
    height: 2.65rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: var(--aisl-text-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox-nav.is-prev {
    left: 1rem;
}

.product-lightbox-nav.is-next {
    right: 1rem;
}


.product-accordion {
    border: 1px solid #c9d2dd;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f7fa;
}

.product-accordion-item+.product-accordion-item {
    border-top: 1px solid #d5dde6;
}

.product-accordion-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--aisl-green-900);
    font-size: var(--aisl-text-lg);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 1rem 1.4rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    box-shadow: none;
}

.product-accordion-trigger i {
    transition: transform 0.2s ease;
}

.product-accordion-content {
    padding: 0 1.4rem;
    background: #f5f7fa;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.34s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.24s ease, padding 0.24s ease;
}

.product-accordion-content.is-open {
    padding: 0.5rem 1.4rem 1.2rem;
}

.product-accordion-trigger:focus,
.product-accordion-trigger:active,
.product-accordion-trigger:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: 0;
}

.rich-html {
    color: #1c2736;
    font-size: var(--aisl-text-base);
    line-height: 1.65;
}

.rich-html>*:first-child {
    margin-top: 0;
}

.rich-html>*:last-child {
    margin-bottom: 0;
}

.rich-html p,
.rich-html ul,
.rich-html ol,
.rich-html blockquote {
    margin-bottom: 0.9rem;
}

.rich-html ul,
.rich-html ol {
    padding-left: 1.45rem !important;
}

.rich-html ul {
    list-style-type: disc !important;
}

.rich-html ol {
    list-style-type: decimal !important;
}

.rich-html ul ul {
    list-style-type: circle !important;
}

.rich-html ol ol {
    list-style-type: lower-alpha !important;
}

.rich-html li {
    display: list-item !important;
    margin: 0.2rem 0;
}

.rich-html a {
    color: #035c35;
    text-decoration: underline;
}

.rich-html strong {
    font-weight: 700;
}

.rich-html em {
    font-style: italic;
}

.rich-html blockquote {
    border-left: 4px solid #b6c2d2;
    padding: 0.5rem 0 0.5rem 0.9rem;
    color: #314157;
}

.rich-html pre,
.rich-html code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.rich-html pre {
    background: #e9eef4;
    border-radius: 8px;
    padding: 0.8rem;
    overflow-x: auto;
}

.rich-html table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.rich-html table th,
.rich-html table td {
    border: 1px solid #c7d2df;
    padding: 0.55rem;
    text-align: left;
}

.rich-html img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.rich-html h1,
.rich-html h2,
.rich-html h3,
.rich-html h4 {
    color: #0e2238;
    margin-bottom: 0.6rem;
}

.wa-widget {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 85;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.wa-widget.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wa-widget__toggle {
    border: 0;
    border-radius: 9999px;
    background: #0f8f4e;
    color: #ffffff;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 12px 28px rgba(5, 57, 33, 0.32);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.wa-widget__toggle:hover {
    background: #0b7d44;
    transform: translateY(-1px);
}

.wa-widget__toggle i {
    font-size: 1.15rem;
}

.wa-widget__panel {
    width: min(22rem, calc(100vw - 1.5rem));
    border: 1px solid #b5c4b8;
    border-radius: 14px;
    background: #f4f8f5;
    box-shadow: 0 18px 38px rgba(12, 29, 20, 0.2);
    overflow: hidden;
}

.wa-widget__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
    background: #0d7f45;
    color: #ffffff;
    padding: 0.85rem 0.95rem;
}

.wa-widget__title {
    margin: 0;
    font-size: var(--aisl-text-base);
    font-weight: 800;
}

.wa-widget__subtitle {
    margin: 0.22rem 0 0;
    font-size: var(--aisl-text-xs);
    opacity: 0.95;
}

.wa-widget__close {
    border: 0;
    border-radius: 9999px;
    width: 1.9rem;
    height: 1.9rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wa-widget__chat {
    max-height: 11rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.85rem 0.9rem 0.4rem;
}

.wa-widget__message {
    width: fit-content;
    max-width: 87%;
    border-radius: 12px;
    padding: 0.55rem 0.72rem;
    font-size: var(--aisl-text-sm);
    line-height: 1.4;
}

.wa-widget__message--bot {
    background: #e4efe7;
    color: #1d3a2a;
    border-top-left-radius: 4px;
}

.wa-widget__message--user {
    margin-left: auto;
    background: #d9e4f3;
    color: #18324d;
    border-top-right-radius: 4px;
}

.wa-widget__quick-actions {
    padding: 0.45rem 0.9rem 0.8rem;
}

.wa-widget__quick-label {
    margin: 0;
    color: #354f3d;
    font-size: var(--aisl-text-xs);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wa-widget__quick-grid {
    margin-top: 0.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.wa-widget__chip {
    border: 1px solid #bed0c2;
    border-radius: 9999px;
    background: #ffffff;
    color: #1f3a2b;
    font-size: var(--aisl-text-xs);
    font-weight: 700;
    padding: 0.36rem 0.68rem;
}

.wa-widget__chip:hover {
    background: #edf5ef;
}

.wa-widget__composer {
    border-top: 1px solid #d3ded5;
    padding: 0.75rem 0.9rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.wa-widget__input {
    width: 100%;
    min-height: 2.5rem;
    border: 1px solid #b8c6bc;
    border-radius: 9px;
    background: #ffffff;
    color: #244236;
    font-size: var(--aisl-text-sm);
    padding: 0.5rem 0.7rem;
}

.wa-widget__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 204, 157, 0.35);
}

.wa-widget__send {
    border-radius: 9999px;
    background: #0d7f45;
    color: #ffffff;
    text-align: center;
    font-size: var(--aisl-text-sm);
    font-weight: 800;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.wa-widget__send:hover {
    background: #0a6f3c;
}

.wa-widget__direct-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    border-top: 1px solid #d3ded5;
    color: #204033;
    font-size: var(--aisl-text-xs);
    font-weight: 700;
    padding: 0.62rem 0.85rem 0.72rem;
}

.wa-widget__direct-link:hover {
    text-decoration: underline;
}

.reveal {
    animation: reveal-up 0.7s ease both;
}

@keyframes reveal-up {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .business-hours-bar {
        display: none;
    }

    .site-shell {
        padding-top: 72px;
    }

    .hero-shell {
        min-height: 38rem;
    }

    .brand-mark {
        font-size: var(--aisl-text-2xl);
    }

    .brand-logo-img {
        width: 3.5rem;
        height: 3.5rem;
    }

    .product-accordion-trigger {
        font-size: var(--aisl-text-xl-plus);
    }

    .products-hero {
        min-height: 380px;
    }

    .products-hero__inner {
        min-height: 380px;
    }

    .news-recent-panel {
        position: static;
    }

    .news-shell--featured,
    .news-shell__feature-media,
    .did-you-know {
        min-height: 22rem;
    }
}

@media (min-width: 768px) {
    .products-field:first-child {
        max-width: 14rem;
    }

    .products-field:last-child {
        max-width: 14.5rem;
    }

    .management-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .management-card {
        grid-template-columns: 16.5rem 1fr;
        align-items: start;
        gap: 1.45rem;
        min-height: 18.5rem;
    }

    .management-card__photo-wrap {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .business-hours-mobile {
        grid-template-columns: 1fr;
    }

    .scroll-top-btn {
        right: 0.7rem;
        bottom: 4.95rem;
    }

    .wa-widget {
        right: 0.7rem;
        bottom: 0.7rem;
    }

    .wa-widget__panel {
        width: min(21rem, calc(100vw - 1rem));
    }

    .wa-widget__toggle {
        padding: 0.68rem 0.9rem;
    }

    .products-filter-grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .products-field {
        max-width: 20rem;
    }

    .products-hero__title {
        font-size: var(--aisl-text-2xl);
    }

    .management-scene__bg {
        background-attachment: scroll;
    }

    .footer-copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .careers-vacancy-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .careers-vacancy-card__btn {
        min-width: 9.5rem;
    }

    .careers-detail__image {
        height: 20rem;
    }

    .careers-detail__side-card,
    .careers-detail__other-openings {
        padding: 1.1rem;
    }

    .quote-form-card {
        padding: 1.2rem 1.1rem;
    }

    .quote-side-card {
        padding: 1.2rem;
    }

    .quote-upload-field {
        min-height: 9.5rem;
    }

    .quote-submit-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-submit-actions .quote-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .quote-item-row__product {
        order: 1;
    }

    .quote-item-row__spec {
        order: 2;
    }

    .quote-item-row__qty {
        order: 3;
    }

    .quote-wizard__nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .quote-wizard-nav-btn {
        width: auto;
        min-height: 2.3rem;
        padding: 0.45rem 0.95rem;
    }

    .contact-form-card,
    .contact-map-card,
    .contact-hq-card,
    .contact-outlets-shell {
        padding: 1.15rem;
    }
}
