﻿:root {
    --primary: #0754b8;
    --primary-hover: #06489d;
    --primary-dark: #063372;
    --navy: #102f69;
    --deep-navy: #022452;
    --accent: #1682de;
    --light-blue: #edf5ff;
    --pale-blue: #f7faff;
    --section-bg: #f6f8fb;
    --white: #ffffff;
    --border: #d9e4f0;
    --border-strong: #bfd0e4;
    --text-main: #102f69;
    --text-body: #34445e;
    --text-muted: #6f7f96;
    --success: #16834b;
    --error: #c83939;
    --container-width: 1820px;
    --wide-width: 2200px;
    --card-radius: 7px;
    --shadow-soft: 0 10px 28px rgba(8, 38, 85, 0.07);
    --shadow-card: 0 18px 44px rgba(8, 38, 85, 0.12);
    --focus-ring: 0 0 0 3px rgba(7, 84, 184, 0.2);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text-body);
    background: var(--white);
    font-family: Inter, Arial, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.58;
    overflow-wrap: anywhere;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    display: block;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.container {
    width: min(100% - 56px, var(--container-width));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 10px 14px;
    color: var(--white);
    background: var(--primary);
    border-radius: 6px;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button--primary {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.button--outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.72);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
    color: var(--deep-navy);
    background: var(--white);
}

.button--ghost-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.button:active,
.solution-card:active,
.function-card:active,
.industry-card:active {
    transform: translateY(1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.image-placeholder {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    background:
        radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.9), transparent 18%),
        radial-gradient(circle at 74% 30%, rgba(7, 84, 184, 0.13), transparent 25%),
        linear-gradient(135deg, #f8fbff 0%, #e8f2fd 48%, #d7e7f5 100%);
}

.image-placeholder::before,
.image-placeholder::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.image-placeholder::before {
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 84, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 84, 184, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.25;
}

.image-placeholder::after {
    right: -58px;
    bottom: -66px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(7, 84, 184, 0.12);
}
.section-title {
    margin: 0 0 30px;
    color: var(--text-main);
    font-size: 34px;
    line-height: 1.18;
    font-weight: 850;
}

.hero-solution-benefits,
.solution-benefits {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.benefits-strip {
    display: grid;
    background: var(--white);
}

.benefits-strip--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-item {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    color: var(--text-main);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.36;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefit-item:nth-child(3n),
.benefit-item:last-child {
    border-right: 0;
}

.benefit-item svg {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.key-solution-directions,
.client-support-process,
.solutions-by-function,
.brand-solution-support,
.solutions-by-industry,
.solution-benefits,
.documents-consultation {
    padding: 56px 0 0;
}

.solution-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 310px;
    gap: 20px;
}

.solution-card,
.process-step,
.function-card,
.brand-solution-card,
.industry-card,
.document-card,
.solution-documents,
.consultation-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
}

.solution-card {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--white);
    background: var(--deep-navy);
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card--featured {
    grid-row: span 2;
    min-height: 0;
}

.solution-card--wide {
    grid-column: span 2;
}

.solution-card:hover,
.function-card:hover,
.brand-solution-card:hover,
.industry-card:hover,
.document-card:hover,
.solution-documents:hover,
.consultation-form-panel:hover {
    border-color: rgba(7, 84, 184, 0.5);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.solution-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 36, 82, 0) 0%, rgba(2, 36, 82, 0.12) 36%, rgba(2, 36, 82, 0.68) 72%, rgba(2, 22, 50, 0.95) 100%);
    pointer-events: none;
}

.solution-card::after {
    display: none;
}

.solution-card:hover .solution-card-image,
.industry-card:hover .industry-image {
    transform: scale(1.035);
}

.solution-card__body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 88px 26px 26px;
}

.solution-card__body::before {
    display: none;
}

.solution-card-image[data-image="solution-textile"] {
    background-position: center 50%;
}

.solution-card-image[data-image="solution-home-care"] {
    background-position: center 56%;
}

.solution-card-image[data-image="solution-industrial-cleaning"] {
    background-position: center 62%;
}

.solution-card-image[data-image="solution-leather"] {
    background-position: center 46%;
}

.solution-card-image[data-image="solution-metalworking"] {
    background-position: center 62%;
}

.solution-card-image[data-image="solution-coatings"] {
    background-position: center 62%;
}

.solution-card h3 {
    max-width: 620px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 24px;
    line-height: 1.12;
}

.solution-card p {
    max-width: 700px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.45;
}

.solution-card li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 14px;
    font-size: 15px;
}

.solution-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.solution-link,
.card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: var(--primary);
    background: transparent;
    border: 0;
    font-size: 15px;
    font-weight: 850;
    text-align: left;
}

.solution-card .solution-link {
    margin-top: 0;
    color: var(--white);
}

.solution-link:hover,
.card-link:hover,
.solution-link:focus-visible,
.card-link:focus-visible {
    color: var(--primary-hover);
    text-decoration: underline;
}

.solution-card .solution-link:hover,
.solution-card .solution-link:focus-visible {
    color: rgba(255, 255, 255, 0.86);
}

.lab-blue-image {
    background: linear-gradient(135deg, #e9f6ff, #c4daf0);
}

.glassware-image,
.personal-care-image {
    background: radial-gradient(circle at 42% 50%, rgba(255, 255, 255, 0.9), transparent 18%), linear-gradient(135deg, #eff8ff, #d4e5f4);
}

.home-care-image {
    background: radial-gradient(circle at 35% 55%, rgba(255, 255, 255, 0.9), transparent 16%), linear-gradient(135deg, #d9ecfb, #b9d4eb);
}

.cleaning-image,
.metalworking-image {
    background: linear-gradient(135deg, rgba(3, 45, 105, 0.68), rgba(211, 229, 246, 0.34)), repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.36) 0 4px, transparent 4px 16px), #d9e9f7;
}

.textile-image {
    background: repeating-linear-gradient(90deg, #d9e7f4 0 15px, #b9d2e9 15px 22px);
}

.coatings-image {
    background: linear-gradient(135deg, #e8f2fb 0 42%, #be4b35 43% 49%, #d8e8f5 50%);
}

.agro-image {
    background: linear-gradient(135deg, #d7ecff, #93c981);
}

.oil-image {
    background: linear-gradient(135deg, #c9e6ff 0 46%, #063372 47% 100%);
}

.solution-card-image[data-image] {
    background-repeat: no-repeat;
    background-size: cover;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    counter-reset: step;
}

.process-step {
    position: relative;
    min-height: 220px;
    padding: 28px 24px;
    opacity: 0.28;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.process-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:not(:last-child)::after {
    content: ">";
    position: absolute;
    right: -16px;
    top: 50%;
    color: var(--primary);
    font-weight: 900;
    transform: translateY(-50%);
}

.process-step span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 850;
}

.process-step h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 20px;
    line-height: 1.2;
}

.process-step p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.55;
}

.function-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.function-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.function-card:hover {
    background: var(--pale-blue);
}

.function-card svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.function-card h3 {
    min-height: 44px;
    margin: 0;
    color: var(--primary-dark);
    font-size: 20px;
    line-height: 1.25;
}

.function-card span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 850;
}

.brand-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.brand-solution-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 28px;
    background-size: cover;
    background-position: center;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
}

.brand-solution-card > div:first-child {
    position: relative;
    z-index: 1;
    max-width: 58%;
}

.brand-solution-card:nth-child(1) {
    background-image: url("/assets/imgs/solutions/solution-center/basf-chemical-lab-testing-brand-solutions.png");
}

.brand-solution-card:nth-child(2) {
    background-image: url("/assets/imgs/solutions/solution-center/byk-additive-lab-instrument-brand-solutions.png");
}

.brand-solution-card:nth-child(3) {
    background-image: url("/assets/imgs/solutions/solution-center/specialty-chemical-lab-glassware-product-solutions.png");
}

.brand-solution-card h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 26px;
    line-height: 1.1;
}

.brand-solution-card p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.55;
}

.brand-solution-card p:first-of-type:not(:last-of-type) {
    color: #223d6b;
    font-size: 14px;
    font-weight: 800;
}

.brand-solution-logo {
    display: block;
    width: min(190px, 100%);
    height: 56px;
    margin-bottom: 16px;
    object-fit: contain;
    object-position: left center;
}

.brand-solution-card:first-child .brand-solution-logo {
    width: min(240px, 100%);
    height: 74px;
}

.brand-solution-image {
    display: none;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.industry-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    transition: transform 0.25s ease;
    background-size: cover;
    background-position: center;
}

.solution-card-image::before,
.solution-card-image::after,
.brand-solution-image::before,
.brand-solution-image::after,
.industry-image::before,
.industry-image::after {
    display: none;
}

.industry-image[data-image="industry-home-care"] {
    background-image: url("/assets/imgs/solutions/solution-center/home-care-laundry-detergent-surfactant-products.png");
}

.industry-image[data-image="industry-personal-care"] {
    background-image: url("/assets/imgs/solutions/solution-center/personal-care-cosmetic-bottle-surfactant-solutions.png");
}

.industry-image[data-image="industry-industrial-cleaning"] {
    background-image: url("/assets/imgs/solutions/solution-center/industrial-chemical-plant-cleaning-solutions.png");
}

.industry-image[data-image="industry-metalworking"] {
    background-image: url("/assets/imgs/solutions/solution-center/metalworking-cnc-cutting-coolant-fluid.png");
}

.industry-image[data-image="industry-textile"] {
    background-image: url("/assets/imgs/solutions/solution-center/textile-fabric-roll-surfactant-finishing.png");
}

.industry-image[data-image="industry-coatings"] {
    background-image: url("/assets/imgs/solutions/solution-center/coatings-paint-can-color-additive-solutions.png");
}

.industry-image[data-image="industry-agrochemicals"] {
    background-image: url("/assets/imgs/solutions/solution-center/agrochemical-tractor-field-surfactant-application.png");
}

.industry-image[data-image="industry-oil-gas"] {
    background-image: url("/assets/imgs/solutions/solution-center/oil-gas-pumpjack-field-chemical-solutions.png");
}

.industry-card h3 {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 16px;
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 1.2;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.solution-documents__benefits {
    margin-top: 22px;
}

.solution-documents .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: none;
}

.solution-documents .reason-item {
    min-height: 128px;
    padding: 20px;
}

.solution-documents .reason-item:nth-child(3n) {
    border-right: 1px solid var(--border);
}

.solution-documents .reason-item:nth-child(2n),
.solution-documents .reason-item:last-child {
    border-right: 0;
}

.reason-item {
    min-height: 150px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 6px 14px;
    align-content: center;
    padding: 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reason-item:nth-child(3n),
.reason-item:last-child {
    border-right: 0;
}

.reason-item svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reason-item strong {
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 1.25;
}

.reason-item span {
    font-size: 15px;
    line-height: 1.5;
}

.documents-consultation {
    padding-bottom: 56px;
}

.documents-consultation__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.solution-documents,
.consultation-form-panel {
    padding: 28px;
}

.solution-documents h2,
.consultation-form-panel h2 {
    margin-bottom: 22px;
    color: var(--text-main);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 850;
}

.document-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.document-card {
    min-height: 128px;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 18px;
    color: var(--text-body);
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.document-card:hover {
    background: var(--pale-blue);
}

.document-card strong {
    color: var(--primary-dark);
    font-size: 17px;
}

.document-card span {
    font-size: 15px;
    line-height: 1.4;
}

.document-card svg {
    align-self: end;
    justify-self: end;
    width: 28px;
    height: 28px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 6px;
}

.form-field label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
}

.form-field label span {
    color: var(--error);
}

.form-field input,
.form-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    color: var(--text-body);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
}

.form-field textarea {
    min-height: 100px;
    padding-top: 12px;
    resize: vertical;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--focus-ring);
}

.form-field.is-error input,
.form-field.is-error textarea {
    border-color: var(--error);
}

.field-error {
    min-height: 16px;
    margin: 0;
    color: var(--error);
    font-size: 12px;
}

.consult-submit {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
}

.form-success {
    min-height: 18px;
    margin: 8px 0 0;
    color: var(--success);
    font-size: 14px;
    font-weight: 800;
}

.solutions-cta {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(90deg, var(--deep-navy), #0754b8);
}

.solutions-cta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: min(42vw, 720px);
    background:
        linear-gradient(90deg, rgba(2, 36, 82, 0.44), rgba(2, 36, 82, 0.1) 52%, rgba(2, 36, 82, 0)),
        url("/assets/imgs/solutions/solution-center/surfactant-laboratory-technical-support.png") center / cover no-repeat;
    opacity: 0.32;
    pointer-events: none;
}

.solutions-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 36, 82, 0.4) 0%, rgba(2, 36, 82, 0.12) 26%, rgba(7, 84, 184, 0) 58%);
    pointer-events: none;
}

.solutions-cta__inner {
    position: relative;
    z-index: 1;
    min-height: 190px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    padding-block: 30px;
}

.cta-image {
    display: none;
}

.cta-image::before,
.cta-image::after {
    display: none;
}

.cta-content h2 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.22;
}

.cta-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.55;
}

.cta-actions {
    display: flex;
    gap: 12px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.84);
    background: linear-gradient(120deg, var(--deep-navy), #053b83);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.55fr repeat(5, minmax(0, 1fr));
    gap: 34px;
    padding: 40px 0 36px;
}

.footer-brand p {
    max-width: 330px;
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.6;
}

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

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-column {
    font-style: normal;
}

.footer-column__title {
    min-height: 28px;
    margin-bottom: 12px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 15px;
    font-weight: 850;
    text-align: left;
}

.footer-column li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--white);
    text-decoration: underline;
}

.button--footer {
    min-height: 40px;
    margin-top: 12px;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.button--footer:hover,
.button--footer:focus-visible {
    color: var(--deep-navy);
    background: var(--white);
}

.footer-bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 36px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border: 0;
    border-radius: 6px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--primary-hover);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (min-width: 2100px) {
    .container {
        width: min(100% - 72px, var(--wide-width));
    }
}

@media (max-width: 1320px) {
.benefits-strip--six {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-item:nth-child(3n) {
        border-right: 1px solid var(--border);
    }

    .benefit-item:nth-child(2n),
    .benefit-item:last-child {
        border-right: 0;
    }

    .solution-card-grid,
    .brand-solution-grid,
    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-card-grid {
        grid-auto-rows: auto;
    }

    .solution-card--featured {
        grid-row: span 1;
        min-height: 430px;
    }

    .solution-card--wide {
        grid-column: span 1;
    }

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

    .reason-item:nth-child(3n) {
        border-right: 1px solid var(--border);
    }

    .reason-item:nth-child(2n),
    .reason-item:last-child {
        border-right: 0;
    }

    .documents-consultation__grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
.function-grid,
    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-list {
        position: relative;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-list::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 14px;
        bottom: 14px;
        width: 1px;
        background: var(--border-strong);
    }

    .process-step {
        min-height: 0;
        padding-left: 64px;
        opacity: 1;
        transform: none;
    }

    .process-step span {
        position: absolute;
        left: 7px;
        top: 28px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .solutions-cta__inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .solutions-cta::before {
        width: 100%;
        opacity: 0.24;
    }

    .cta-image {
        display: none;
    }

    .cta-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
.section-title {
        font-size: 29px;
        margin-bottom: 22px;
    }

    .benefits-strip--six,
    .solution-card-grid,
    .brand-solution-grid,
    .reason-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .function-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .function-card {
        min-height: 132px;
        gap: 10px;
        padding: 18px 12px;
    }

    .function-card svg {
        width: 34px;
        height: 34px;
    }

    .function-card h3 {
        min-height: 0;
        font-size: 15px;
        line-height: 1.18;
    }

    .function-card span {
        font-size: 12px;
    }

    .benefit-item,
    .benefit-item:nth-child(3n),
    .benefit-item:nth-child(2n) {
        min-height: 82px;
        padding: 20px;
        border-right: 0;
    }

    .solution-card {
        min-height: 360px;
        height: auto;
    }

    .solution-card__body {
        padding: 110px 24px 26px;
    }

    .brand-solution-card {
        padding: 24px;
        min-height: 300px;
        align-items: flex-start;
        background-position: center bottom;
    }

    .brand-solution-card::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.44) 100%);
    }

    .brand-solution-card > div:first-child {
        max-width: 100%;
    }

    .solution-documents .reason-grid {
        grid-template-columns: 1fr;
    }

    .solution-documents .reason-item,
    .solution-documents .reason-item:nth-child(2n),
    .solution-documents .reason-item:nth-child(3n) {
        border-right: 0;
    }

    .industry-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .industry-grid::-webkit-scrollbar {
        display: none;
    }

    .industry-card {
        flex: 0 0 78%;
        scroll-snap-align: start;
    }

    .document-card-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        display: grid;
    }

    .cta-actions .button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-brand,
    .footer-contacts {
        padding-bottom: 18px;
    }

    .footer-column {
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .footer-column__title {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }

    .footer-column ul {
        display: none;
        padding-bottom: 12px;
    }

    .footer-column.is-open ul {
        display: block;
    }

    .footer-bottom {
        display: grid;
    }

    .footer-bottom div {
        display: grid;
        gap: 8px;
    }
}

@media (max-width: 480px) {
.button {
        min-height: 46px;
        padding-inline: 16px;
        font-size: 14px;
    }

    .key-solution-directions,
    .client-support-process,
    .solutions-by-function,
    .brand-solution-support,
    .solutions-by-industry,
    .solution-benefits,
    .documents-consultation {
        padding-top: 34px;
    }

    .solution-card h3 {
        font-size: 24px;
    }

    .solution-card p,
    .brand-solution-card p {
        font-size: 15px;
    }

    .industry-card {
        flex-basis: 86%;
    }

    .function-grid {
        gap: 10px;
    }

    .function-card {
        min-height: 118px;
        padding: 16px 10px;
    }

    .function-card svg {
        width: 30px;
        height: 30px;
    }

    .function-card h3 {
        font-size: 13px;
    }

    .solution-documents,
    .consultation-form-panel {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .solution-card:hover .solution-card-image,
    .industry-card:hover .industry-image {
        transform: none;
    }

    .process-step {
        opacity: 1;
        transform: none;
    }
}
