/* =====================================================================
   ГЛОБАЛЬНАЯ КОНФИГУРАЦИЯ
   ===================================================================== */

/*
   ШРИФТ PT SANS
   ---------------------------------------------------------------------
   Подключение выполняется в index.html через Google Fonts:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap" rel="stylesheet">

   Почему так:
   - Используем веса 400 и 700 — достаточно для базового текста и заголовков.
   - display=swap исключает «мерцание» невидимого текста (FOIT).
   - Фолбэк‑стек подобран под метрику PT Sans (без засечек).

   Применение:
   - Ниже, в правке правила body, PT Sans назначен как шрифт по умолчанию
     для всего проекта. При необходимости локальные компоненты могут
     переопределять font-family.
*/

:root {
    /* -----------------------------------------------------------------
       THEME COLORS
       Defines the primary color palette for the entire site.
       ----------------------------------------------------------------- */
    --color-primary-dark: #578f8a;
    --color-primary-dark-hover: #467a76;
    --color-primary-light: #e0e2ee;
    --color-primary-light-hover: #cbd1e6;
    --color-white: #ffffff;
    --color-black: #000000;

    /* -----------------------------------------------------------------
       TEXT COLORS
       Colors for headings, body text, and other typographic elements.
       ----------------------------------------------------------------- */
    --color-text-main: #333;
    --color-text-heading: #1f2b2a;
    --color-text-accent: #274d49;
    --color-text-muted: #4a4a4a;
    --color-text-muted-2: #3e5553;

    /* -----------------------------------------------------------------
       UI & LAYOUT COLORS
       Borders, backgrounds, and other interface elements.
       ----------------------------------------------------------------- */
    --color-border: #e5e9f0;
    --color-border-dashed: #c9d6d4;
    --color-background-temp: #f7f9fb;
    --color-background-cert: #f2f6f6;

    /* -----------------------------------------------------------------
       COMPONENT-SPECIFIC VARIABLES
       ----------------------------------------------------------------- */
    /* Header Logo */
    --header-logo-left-offset: 90px;
    --header-logo-height: 80px;

    /* Video Banner */
    --banner-video-dim-overlay: 0.7; /* Range 0 (transparent) to 1 (black) */
    --banner-content-shift-x: -250px; /* Horizontal shift from center */

    /* About section tile backgrounds */
    --about-tile-a: #eef1f5; /* мягкий светло-серый с холодным оттенком */
    --about-tile-b: #e6ebf3; /* чуть насыщеннее для чередования плиток */

    /* -----------------------------------------------------------------
       LAYOUT CONFIGURATION
       Use these variables to control the main container width.
       ------------------------------------------------─---------------- */
    --container-max-width: 1200px;
    --header-nav-max-width: 600px;
    --container-padding-x: 40px;
}

/* =====================================================================
   BASE & RESET STYLES
   ===================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scrollbar-gutter: stable;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'PT Sans', Arial, Helvetica, sans-serif; /* Используем PT Sans с безопасными фолбэками */
    color: var(--color-black);
    font-size: 12px;
    line-height: 1.75; /* 21px / 12px — сохраняем для хорошей читаемости PT Sans */
    position: relative;
    z-index: 0;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding-x);
    padding-right: var(--container-padding-x);
}

.visually-hidden {
    display: none;
}

.badge-dev {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f39c12;
    color: var(--color-white);
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-404 {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.page-404 h1 {
    font-size: 120px;
    color: var(--color-primary-dark);
    margin: 0;
    line-height: 1;
}

.page-404 h2 {
    margin-top: 0;
}

.page-404 p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* =====================================================================
   STICKY HEADER
   ===================================================================== */

/*
   STACKING CONTEXT FOR STICKY HEADER
   - `body` with `position: relative` and `z-index: 0` creates a new
     stacking context.
   - `header` with `z-index: 1000` is lifted above all other root-level
     elements (`main`, `footer`), which have a default z-index of `auto` (0).
*/
header {
    width: 100%;
    position: fixed; /* was: sticky */
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.header-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 110px; /* Master height for the header row */
}

/* ---------------------------------------------------------------------
   HEADER :: LOGO
   - The logo is absolutely positioned relative to the `.header-left`
     container.
   - Adjust size and position using the variables in `:root`.
   --------------------------------------------------------------------- */
.logo-link {
    position: absolute;
    top: 50%;
    left: var(--header-logo-left-offset);
    transform: translateY(-50%);
    display: block;
}

.logo-small {
    display: block;
    height: var(--header-logo-height);
}

/* ---------------------------------------------------------------------
   HEADER :: NAVIGATION (LEFT & RIGHT)
   - Both halves use flexbox for alignment and distribution.
   - `height: 100%` is used throughout to ensure hover/active states
     fill the entire vertical space of the header.
   --------------------------------------------------------------------- */
.header-left,
.header-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-left {
    background-color: var(--color-primary-dark);
    justify-content: flex-end;
    position: relative;
    /* Reserve space for the logo. Increase if the logo is made larger. */
    padding-left: 180px;
}

.header-right {
    background-color: var(--color-primary-light);
    justify-content: flex-start;
}

.header-left nav,
.header-right nav {
    height: 100%;
    max-width: var(--header-nav-max-width);
    width: 100%;
}

.header-left-list,
.header-right-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
    height: 100%;
    padding-left: var(--container-padding-x);
    padding-right: var(--container-padding-x);
}

.header-left-list li,
.header-right-list li {
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    height: 100%;
    flex: 0 0 auto;
    max-width: 20%;
}

.header-left-list li a,
.header-right-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 18px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.02em; /* Текст навигации: добавлен интервал для PT Sans */
}

.header-left-list li a {
    color: var(--color-white);
}

.header-right-list li a {
    color: var(--color-primary-dark);
}

/* Active & Hover States */
.header-left-list li a:hover,
.header-left-list li a:focus,
.header-left-list li a.is-active {
    background-color: var(--color-primary-dark-hover);
}

.header-right-list li a:hover,
.header-right-list li a:focus,
.header-right-list li a.is-active {
    background-color: var(--color-primary-light-hover);
}

.menu-toggle {
    display: none; /* Hidden by default, for mobile */
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--color-primary-dark);
    padding: 10px;
    line-height: 1;
}

.menu-toggle span {
    display: block;
}

/* =====================================================================
   MAIN CONTENT AREA
   ===================================================================== */

.page-main {
    flex-grow: 1;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--color-primary-dark) 50%, var(--color-primary-light) 50%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 110px; /* compensate fixed header height */
}

/* ---------------------------------------------------------------------
   VIDEO BANNER
   - The video is a background element that covers the entire banner.
   - An overlay provides dimming, controlled by `--banner-video-dim-overlay`.
   - Content is centered and shifted left using `transform`.
   --------------------------------------------------------------------- */
.banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--banner-video-dim-overlay));
    z-index: 2;
}

.banner-content {
    position: absolute;
    z-index: 3;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(calc(-30% + var(--banner-content-shift-x)), -50%);
    width: auto;
    color: var(--color-white);
    padding: 0 16px;
    max-width: 900px;
}

.banner-content h2 {
    font-size: 44px; /* Тонкая настройка под PT Sans: чуть ниже для гармонии */
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: 0.01em; /* Небольшой кернинг для верхнего заголовка */
}

.banner-content p {
    font-size: 20px;
    margin: 0;
    line-height: 1.4;
}

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.banner-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 2px solid transparent; /* Reserve space for border */
}

.btn-primary {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-dark-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.12);
}

/* ---------------------------------------------------------------------
   CONTENT PANEL
   The main white container for page content.
   --------------------------------------------------------------------- */
.content-panel {
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding-top: 40px;
    padding-bottom: 40px;
    flex: 1;
}

/* =====================================================================
   SECTIONS
   ===================================================================== */

.section {
    margin-top: 16px;
}

.section + .section {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px dashed var(--color-border-dashed);
}

.section h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.25;
    color: var(--color-text-heading);
}

/* ---------------------------------------------------------------------
   ABOUT SECTION & SERVICES GRID
   --------------------------------------------------------------------- */
.section-about p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-main);
}

.about-hero {
    text-align: center;
    margin-bottom: 32px;
}

.about-title {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-text-heading);
    letter-spacing: 0.02em; /* Верхний заголовок секции: чуть увеличен интервал для читаемости */
}

.about-subtitle {
    margin: 0;
    font-size: 14px; /* Текст подзаголовка делаем чуть меньше, как в макете */
    color: var(--color-text-muted);
}

.about-grid {
    display: grid;
    gap: 16px;
}

.about-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.about-grid--image-left {
    grid-template-columns: 2fr 1fr;
    margin-top: 16px;
}

.reason-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 32px;
    background: var(--color-white);
}

.reason-card--teal {
    background: var(--color-primary-dark);
    color: var(--color-white);
    text-align: center; /* Корректировка набора под дизайн левой/правой плитки */
    min-height: 340px; /* Выровнять высоту с соседней фотографией */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reason-card--image {
    padding: 0;
    overflow: hidden;
    min-height: 340px;
}

.reason-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.span-2 {
    grid-column: span 2;
}

.reason-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em; /* Заголовки карточек: лёгкий трекинг для PT Sans */
}

.reason-number {
    /* Декоративная секция с тире — №X — как в макете */
    margin: 8px 0 16px;
    font-weight: 700;
    letter-spacing: 0.06em; /* Немного воздуха вокруг номера */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.reason-number::before,
.reason-number::after {
    content: '—';
    opacity: 0.7;
}
.reason-card--teal .reason-number::before,
.reason-card--teal .reason-number::after {
    content: '—';
    opacity: 0.7;
}

.reason-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    /* Сужаем оптическую ширину набора в цветных плитках */
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.about-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.step-card {
    background: var(--about-tile-a);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}
.step-card:nth-child(2) { background: var(--about-tile-b); }
.step-card img { height: 48px; margin-bottom: 12px; opacity: 0.95; }

.step-card h4 {
    margin: 12px 0 8px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em; /* Единая типографика заголовков в верхнем регистре */
}

.step-card p {
    margin: 0;
    color: var(--color-text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.feature-card {
    background: var(--about-tile-a);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}
.feature-card:nth-child(2) { background: var(--about-tile-b); }
.feature-card .reason-number { color: var(--color-text-muted-2); }

.feature-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em; /* Единая типографика заголовков в верхнем регистре */
}

.feature-card p {
    margin: 8px 0 0;
    color: var(--color-text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--color-background-temp);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 16px;
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.service-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: var(--color-text-accent);
}

.service-card p {
    margin: 0;
    color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------
   PRODUCTS SECTION
   --------------------------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-item {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.product-item .product-image-wrapper {
    overflow: hidden;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 400ms ease;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-caption {
    margin: 12px 16px 16px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-text-accent);
    text-align: center;
}

/* ---------------------------------------------------------------------
   VIDEO BANNER FALLBACK
   --------------------------------------------------------------------- */
.banner-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.banner.has-video .banner-fallback {
    opacity: 0;
    pointer-events: none;
}

/* ---------------------------------------------------------------------
   INFO BLOCKS (Image + Text)
   --------------------------------------------------------------------- */
.info-blocks {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-dashed);
}

.info-block {
    display: flex;
    align-items: stretch;
    height: 500px;
    border-bottom: 1px solid var(--color-border-dashed);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block--reversed {
    flex-direction: row-reverse;
}

.info-block__image,
.info-block__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.info-block__image {
    padding: 0;
    overflow: hidden;
}

.info-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.info-block__image:hover img {
    transform: scale(1.1);
}

.info-block__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0 0 24px;
}

.info-block__text p {
    margin: 0 0 12px;
    padding: 0;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.page-footer {
    width: 100%;
    min-height: 120px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-privacy {
    color: var(--color-white);
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.8;
}

.footer-privacy:hover {
    opacity: 1;
}

/* =====================================================================
   COOKIE CONSENT BANNER
   ===================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--color-white);
    padding: 20px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--color-border);
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-main);
    margin: 0;
    max-width: 800px;
}

.cookie-text a {
    text-decoration: underline;
    color: var(--color-primary-dark);
}

.cookie-actions {
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 24px;
    font-size: 13px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .cookie-banner {
        flex-direction: column;
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 20px;
        text-align: center;
    }
}

.footer-telephone {
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-white);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-telephone:hover,
.footer-telephone:focus {
    color: var(--color-primary-light);
}

.footer-telephone:active {
    color: var(--color-primary-light);
    opacity: 0.7;
}

.footer-developer img {
    height: 50px;
}

/* =====================================================================
   RESPONSIVE STYLES
   ===================================================================== */

/* ---------------------------------------------------------------------
   LARGE SCREENS (2K, 4K and Ultra-wide)
   --------------------------------------------------------------------- */
@media (min-width: 1600px) {
    :root {
        --container-max-width: 1500px;
        --header-nav-max-width: 750px;
    }
}

@media (min-width: 2500px) {
    :root {
        --container-max-width: 1800px;
        --header-nav-max-width: 900px;
    }
}

@media (max-width: 1919px) {
    /* Base settings are already applied for these widths */
}

@media (max-width: 1279px) {
    /* Header Mobile */
    .header-nav {
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--color-primary-dark);
        padding: 0 20px;
    }

    .header-left {
        background: transparent;
        padding-left: 0;
        height: auto;
    }

    .header-right {
        background: transparent;
        height: auto;
    }

    .logo-link {
        position: static;
        transform: none;
    }

    .logo-small {
        height: 50px;
    }

    .header-left nav,
    .header-right nav {
        display: none; /* Hide standard nav */
    }

    .menu-toggle {
        display: block;
        color: var(--color-white);
    }

    /* Mobile Menu Container */
    .header-nav.is-open {
        display: grid;
        grid-template-columns: 1fr auto;
        height: auto;
        padding-bottom: 20px;
        align-items: center;
    }

    .header-nav.is-open .header-left,
    .header-nav.is-open .header-right {
        display: contents;
    }

    .header-nav.is-open .logo-link {
        grid-row: 1;
        grid-column: 1;
    }

    .header-nav.is-open .menu-toggle {
        grid-row: 1;
        grid-column: 2;
    }

    .header-nav.is-open .header-left nav,
    .header-nav.is-open .header-right nav {
        display: block;
        width: 100%;
        max-width: 100%;
        grid-column: 1 / span 2;
    }

    .header-nav.is-open .header-left-list,
    .header-nav.is-open .header-right-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        height: auto;
    }

    .header-nav.is-open .header-left-list li,
    .header-nav.is-open .header-right-list li {
        width: 100%;
        max-width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-nav.is-open .header-left-list li a,
    .header-nav.is-open .header-right-list li a {
        padding: 15px 0;
        justify-content: flex-start;
        color: var(--color-white);
    }

    .header-nav.is-open .header-right {
        width: 100%;
    }

    /* Adjust page padding for fixed header */
    .page-main {
        padding-top: 80px;
    }

    /* Footer Mobile */
    .page-footer {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 30px;
        min-height: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-telephone {
        font-size: 28px;
    }

    /* Banner Mobile */
    .banner {
        height: 60vh;
    }

    .banner-content {
        transform: translate(-50%, -50%);
        text-align: center;
        left: 50%;
        max-width: 100%;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-actions {
        justify-content: center;
        flex-direction: column;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid--three {
        grid-template-columns: 1fr;
    }
    .about-grid--image-left {
        grid-template-columns: 1fr;
    }
    .span-2 {
        grid-column: auto;
    }
    .about-steps,
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    /* Grids */
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Info Blocks */
    .info-block,
    .info-block--reversed {
        flex-direction: column;
        height: auto;
    }
    .info-block__image,
    .info-block__text {
        padding: 20px;
    }
}
