/* ION Heat — Main Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Переменные ─────────────────────────────────────────────── */
:root {
    --section-padding-x: clamp(16px, 5vw, 140px);

    /* Цвета */
    --white:   #ffffff;
    --fon2:    #303137;
    --main:    #f7a700;

        /* Типографика — меню */
        --menu-font-family:   "Manrope", sans-serif;
        --menu-font-size:     16px;
        --menu-line-height:   130%;
        --menu-font-weight:   300;
    
        /* Типографика — кнопка */
        --button-font-family: "Open Sans", sans-serif;
        --button-font-size:   16px;
        --button-line-height: 130%;
        --button-font-weight: 500;
    
        /* Типографика — H1 */
        --h1-font-family: "Open Sans", sans-serif;
        --h1-font-size:   84px;
        --h1-line-height: 130%;
        --h1-font-weight: 300;
    
        --accent:     #60B2C4;
        --obvodka:    #c3c5ca;
        --text:       #000000;
        --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        
/* H2 */
--h2-font-family: "Open Sans", sans-serif;
--h2-font-size:   64px;
--h2-line-height: 130%;
--h2-font-weight: 300;

/* Text1 */
--text1-font-family: "Manrope", sans-serif;
--text1-font-size:   22px;
--text1-line-height: 130%;
--text1-font-weight: 300;

}

/* ── Header ─────────────────────────────────────────────────── */
@import url('header.css');






/* ── Container ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: calc(1640px + var(--section-padding-x) * 2);
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}


/* Глобальные ховеры */
a:hover { color: var(--accent); }

.header__btn:hover,
.hero__btn:hover,
.features__btn:hover {
    background: var(--accent);
    opacity: 1;
}


/* Fullwidth Image */
.fullwidth-img {
    width: 100%;
    overflow: hidden;
}

.fullwidth-img img {
    width: 100%;
    height: 795px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .fullwidth-img img {
        height: 400px;
    }
}



/* Service Benefits */
.service-benefits .container {
    flex-direction: column;
    gap: 70px;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}

.service-benefits__line {
    border: none;
    border-top: 1px solid var(--main);
    align-self: stretch;
    margin: 0;
}

.service-benefits__grid {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 768px) {
    .service-benefits .container {
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 40px;
    }
}



/* Blog Single */
.blog-single .container {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 100px;
    max-width: 1200px;
}

.blog-single__head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
}

.blog-single__title {
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 130%;
    font-weight: 500;
    align-self: stretch;
}

.blog-single__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.blog-single__content {
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 160%;
    font-weight: 300;
    align-self: stretch;
}

.blog-single__content h2,
.blog-single__content h3 {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    margin: 32px 0 16px;
    color: var(--text);
}

.blog-single__content p { margin-bottom: 20px; }
.blog-single__content ul,
.blog-single__content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.blog-single__content li { margin-bottom: 8px; }
.blog-single__content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}
.blog-single__content a {
    color: var(--main);
    text-decoration: underline;
}


/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    align-self: stretch;
}

.breadcrumbs__item {
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 130%;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs__item:hover {
    color: var(--main);
}

.breadcrumbs__item--current {
    color: var(--main);
    pointer-events: none;
}

.breadcrumbs__sep {
    color: var(--line);
    font-size: 14px;
    line-height: 130%;
}


/* FC Breadcrumbs */
.fc-breadcrumbs .container {
    flex-direction: row;
    padding-top: 24px;
    padding-bottom: 0;
    justify-content: flex-start;
}








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

@media (max-width: 1200px) { 
    .industries--cm .industries__grid {
        display: grid;
    }
}
@media (max-width: 768px) {
 

.industries--cm .industries__grid {
  
    grid-template-columns: 1fr;
}
}


/* FC Text Block */
.fc-text-block .container {
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.fc-text-block__inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fc-text-block__title {
    color: var(--text);
    font-family: var(--h2-font-family);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 130%;
    font-weight: var(--h2-font-weight);
}

.fc-bg--dark .fc-text-block__title { color: var(--white); }

.fc-text-block__content {
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 160%;
    font-weight: 300;
}

.fc-bg--dark .fc-text-block__content { color: rgba(255,255,255,0.85); }

.fc-text-block__content h2,
.fc-text-block__content h3 { margin: 24px 0 12px; font-weight: 500; }
.fc-text-block__content p  { margin-bottom: 16px; }
.fc-text-block__content ul,
.fc-text-block__content ol { padding-left: 24px; margin-bottom: 16px; }
.fc-text-block__content a  { color: var(--main); }