:root {
    --green-main: #27ae60;
    --green-dark: #1e8449;
    --dark-text: #2c3e50;
    --light-bg: #f4f7f6;
    --accent-red: #c0392b;
    --white: #ecf0f1;
    --gray-soft: #7f8c8d;
    --border-color: #eef2f6;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
}

/* 1. Базовая типографика */
body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    color: #4a5568;
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 2. Заголовки */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); } /* Адаптивный размер */
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); position: relative; padding-bottom: 10px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

/* Акцентная черта под h2 (опционально) */
.sec-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--green-main);
    margin: 15px auto;
    border-radius: 2px;
}

/* 3. Абзацы и текст */
p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #4a5568;
}

strong {
    color: var(--dark-text);
    font-weight: 600;
}

/* 4. Списки */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Стилизация маркированного списка под бренд */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-main);
    font-weight: bold;
}

/* 5. Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--green-main);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
	color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--green-main);
    color: var(--green-main);
}

.btn-outline:hover {
    background-color: var(--green-main);
    color: var(--white);
}

.btn-wa {
    background-color: #25D366;
    color: white;
}

.btn-cta { background: var(--accent-red); color: white; font-size: 1.1rem; }
.btn-cta:hover { background: var(--green-dark); }

.btn-bottom {
    margin-top: auto;
}


/* 6. Ссылки */
a {
    color: var(--green-main);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--green-dark);
}

/* 7. Контейнеры и секции */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-block {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* FONT ICONS */

@font-face {
  font-family: 'icos';
  src:  url('../fonts/icos.eot?sunooe');
  src:  url('../fonts/icos.eot?sunooe#iefix') format('embedded-opentype'),
    url('../fonts/icos.ttf?sunooe') format('truetype'),
    url('../fonts/icos.woff?sunooe') format('woff'),
    url('../f		onts/icos.svg?sunooe#icos') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icos-"], [class*=" icos-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icos' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icos-greenhouse-1:before {
  content: "\e900";
}
.icos-greenhouse-2:before {
  content: "\e901";
}
.icos-pipe:before {
  content: "\e902";
}
.icos-greenhouse3:before {
  content: "\e903";
}
.icos-noun:before {
  content: "\e904";
}
.icos-clock:before {
  content: "\e055";
}
.icos-tag:before {
  content: "\e912";
}
.icos-wallet:before {
  content: "\e913";
}
.icos-diamond:before {
  content: "\e914";
}
.icos-stack1:before {
  content: "\e915";
}
.icos-stack2:before {
  content: "\e916";
}
.icos-tools:before {
  content: "\e917";
}
.icos-meeting:before {
  content: "\e918";
}
.icos-delivery:before {
  content: "\e919";
}
.icos-badge:before {
  content: "\e91a";
}
.icos-resize:before {
  content: "\e91b";
}
.icos-shuffle:before {
  content: "\e92a";
}
.icos-cellphone:before {
  content: "\e926";
}
.icos-stored:before {
  content: "\e91c";
}
.icos-location2:before {
  content: "\e948";
}
.icos-discout2:before {
  content: "\e91d";
}
.icos-certificate:before {
  content: "\e91e";
}
.icos-paints:before {
  content: "\e91f";
}
.icos-uv-rays:before {
  content: "\e920";
}
.icos-window-glass:before {
  content: "\e921";
}
.icos-temperature:before {
  content: "\e922";
}
.icos-feather:before {
  content: "\e923";
}
.icos-builders:before {
  content: "\e924";
}
.icos-lbuilder:before {
  content: "\e925";
}
.icos-polycarboate-col:before {
  content: "\e929";
}
.icos-delivery-complete:before {
  content: "\e932";
}
.icos-warehouse:before {
  content: "\e933";
}
.icos-fireno:before {
  content: "\f134";
}
.icos-greens:before {
  content: "\f299";
}


/* Header */
.main-header { padding: 15px 0; border-bottom: 1px solid #eee; }
.header-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { height: 60px; }
.logo-text strong { display: block; font-size: 1.4rem; color: var(--green-main); }
.logo-text-intro {font-size:20px; color: var(--dark-text)}
.contacts .phone { font-size: 1.2rem; font-weight: bold; color: var(--dark-text); text-decoration: none; }
.work-time { display: block; font-size: 0.85rem; color: #7f8c8d; text-align: right; }

/* Navigation */
.main-nav { background: var(--green-main); position: sticky; top: 0; z-index: 100; }
.main-nav ul { display: flex; list-style: none; justify-content: center; }
.main-nav li {margin: 0; padding: 0;}
.main-nav a { color: white; text-decoration: none; padding: 15px 25px; display: block; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.main-nav a:hover { background: var(--green-dark); }

.nav-wrapper { display: flex; align-items: center; justify-content: center; gap: 30px; height: 60px; }

/* Бургер и его этикетка */
.burger-container { display: flex; align-items: center; gap: 10px; cursor: pointer; z-index: 1100; }
.burger-label { font-weight: bold; color: #fff; text-transform: uppercase; font-size: 14px; }

.menu-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0;
}
.menu-burger span { width: 25px; height: 3px; background: #fff; transition: 0.3s; border-radius: 2px; }

.m-icon { width: 20px; height: 20px; fill: currentColor; margin-right: 8px; vertical-align: middle; }

.nav-list { display: flex; list-style: none; gap: 20px; margin: 0; align-items: center; position:relative;}
.nav-catalog-wrapper {
    position: absolute; top: 60px; left: -142px; 
    background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 15px 15px; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: 0.3s; z-index: 1000;
}
.nav-catalog-wrapper.active { opacity: 1; visibility: visible; transform: translateY(0); }

.catalog-sub-menu { list-style: none; padding: 15px 0; min-width: 250px; flex-direction: column; }
.catalog-sub-menu li a { padding: 12px 25px; display: block; color: #333; text-decoration: none; transition: 0.2s; }
.catalog-sub-menu li a:hover { background: #f4f7f6; color: #27ae60; }
.menu-caption { padding: 5px 25px 10px; font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; }

/* Все меню под бургер */
@media (max-width: 991px) {
    .d-none-mobile { display: none; }
    
    .nav-list {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: #27ae60; flex-direction: column; align-items: flex-start;
        padding: 40px 20px; transition: 0.4s; box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }
    .nav-list.active { right: 0; gap:10px}
    
    .nav-catalog-wrapper { 
        position: static; opacity: 1; visibility: visible; 
        background: none; box-shadow: none; transform: none; width: 100%;
    }
	.nav-wrapper {
		justify-content: end;
	}
	.main-nav ul {
		justify-content: normal;
	}
    .catalog-sub-menu li a, .nav-list li a { color: #fff; padding: 5px 0; }
    .menu-caption { color: rgba(255,255,255,0.6); padding-left: 0; }
    
    /* Анимация бургера в крестик */
    .menu-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-burger.active span:nth-child(2) { opacity: 0; }
    .menu-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}


/* Hero Section */
.hero { 
   color: var(--white); padding: 100px 0; text-align: center;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; color: var(--white)}
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; color: var(--white)}
.hero-section {
    background-image: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%), url('../img/teplicy-stroybery-kazakhstan.webp');
    background-size: cover;
    background-position: center;
    color: #fff; /* чтобы текст был белым */
    min-height: 500px; /* или как в макете */
    display: flex;
    align-items: center;
}

/* Каталог */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Элемент Bento */
.bento-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Большие Featured карточки (Компакт и Плюс) */
.bento-item.featured {
    grid-column: span 2; /* Растягиваем на 2 колонки */
}

/* Изображение внутри Bento */
.bento-img {
    position: relative;
    width: 100%;
    height: 250px; /* Фиксированная высота для единообразия */
    overflow: hidden;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Картинка заполняет блок */
    transition: transform 0.3s ease;
}

.bento-item:hover .bento-img img {
    transform: scale(1.05); /* Легкий зум при наведении */
}

/* Текст Bento */
.bento-text {
    padding: 25px;
    flex-grow: 1;
}

.bento-text h3 { margin-bottom: 10px; font-size: 1.3rem; color: var(--green-main); }
.bento-text p { font-size: 0.95rem; line-height: 1.5; color: #7f8c8d; margin-bottom: 0; }

/* Бейджики */
.bento-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: var(--green-main);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.bento-badge.is-hot {
    background: var(--accent-red);
    color: #fff;
}

@media (max-width: 991px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .bento-item.featured { grid-column: span 2; } /* На планшетах featured остаются большими */
}

@media (max-width: 767px) {
    .bento-grid { grid-template-columns: 1fr; gap: 15px; } /* На телефонах всё в одну колонку */
    .bento-item.featured { grid-column: span 1; }
    .bento-img { height: 200px; }
}

/* Callback Form */
.whatsapp-callback {
    padding: 60px 0;
    background: #f0f2f5;
}

.wa-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.15);
    border: 1px solid #e1e8ed;
    max-width: 1000px;
    margin: 0 auto;
}

.wa-expert-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.expert-photo {
    position: relative;
    width: 100px;
    height: 100px;
}

.expert-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: var(--accent-red);
    border: 3px solid white;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.expert-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #075e54;
}

.expert-text p {
    color: #4f5e62;
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.4;
}

.wa-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-wa-large {
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-wa-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(18, 140, 126, 0.3);
}

.reply-time {
    font-size: 0.8rem;
    color: #8b959a;
}

/* Адаптивность */
@media (max-width: 850px) {
    .wa-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    .wa-expert-info {
        flex-direction: column;
    }
    .expert-text p {
        max-width: 100%;
    }
}

/* Общие настройки секций */
.section-block { padding: 80px 0; }
.sec-title { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: var(--dark-text); }
.sec-subtitle { text-align: center; margin-top: -30px; margin-bottom: 40px; color: #7f8c8d; }

/* Сопутствующие товары */
.product-bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.othp-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
}
.othp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.othp-card a { text-decoration: none; color: inherit; display: block; padding: 15px; }
.othp-img-wrapper img { width: 100%; height: auto; border-radius: 8px; transition: 0.3s; }
.title-othp { margin-top: 15px; font-weight: 600; font-size: 1.1rem; color: #27ae60; }

/* Ошибки при установке */
.errors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.error-item { margin: 0; text-align: center; background: #fff; padding: 10px; border-radius: 10px; border: 2px solid #f8d7da; }
.error-item img { width: 100%; border-radius: 6px; filter: grayscale(30%); }
.error-item figcaption { margin-top: 10px; font-weight: bold; color: #721c24; font-size: 0.9rem; }

/* Преимущества */
.adv-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.item-adv {
    flex: 1;
    min-width: 200px;
    max-width: 230px;
    text-align: center;
}
.icoadvg {
    width: 80px; height: 80px;
    background: #eafaf1;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #27ae60;
}
.title-adv { font-weight: bold; display: block; margin-bottom: 10px; font-size: 1.1rem; min-height: 3em; }
.desc-adv { font-size: 0.9rem; color: #666; line-height: 1.4; }

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.ctitle {
	margin-bottom:20px;
}
.intro-image { position: relative; }
.intro-image img { width: 100%; height: auto; border-radius: 20px; }
.badge-experience {
    position: absolute; bottom: 20px; right: 20px;
    background: var(--green-main); color: white;
    padding: 10px 20px; border-radius: 50px; font-weight: bold;
}

.intro-stats {
    display: flex; gap: 30px; margin-top: 30px;
    border-top: 1px solid #eee; padding-top: 30px;
}
.stat-item strong { display: block; font-size: 1.5rem; color: var(--green-dark); }
.stat-item span { font-size: 0.9rem; color: #7f8c8d; }

/* Comparison Cards */
.dual-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-image {
    height: 250px;
    position: relative;
    background: #f4f7f6;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.card-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 20px;
    min-height: 2.8em; /* Выравнивает высоту текста описания */
}

.card-params {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.card-params li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.card-params strong {
    color: #27ae60;
}


/* Статусы */
.card-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
}
.card-status.hot { background: #ff7675; }
.card-status.premium { background: #00acc1; }

/* Адаптивность для мобильных */
@media (max-width: 850px) {
    .dual-grid-layout { grid-template-columns: 1fr; }
}

/* General Features */
.grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    margin-top: 40px; border-top: 1px solid #eee; padding-top: 40px;
}
.feature-box { text-align: center; }
.feature-box .icon { font-size: 2.5rem; margin-bottom: 15px; }

/* WhatsApp Button */
.cta-center-wrapper { text-align: center; margin-top: 50px; }
.cta-text { font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; }
.btn-whatsapp {
    background: var(--accent-red); color: white; display: inline-flex; align-items: center;
    gap: 10px; padding: 15px 40px; border-radius: 50px; text-decoration: none;
    font-size: 1.1rem; transition: 0.3s;
}
.btn-whatsapp:hover { background: #128C7E; transform: scale(1.05); }

/* Адаптивность  HOME */
@media (max-width: 992px) {
    .intro-grid, .comparison-grid, .grid-3 { grid-template-columns: 1fr; }
    .intro-content { text-align: center; }
    .intro-stats { justify-content: center; }
}

/* Адаптивность шапки и майн */
@media (max-width: 768px) {
	.header-flex {
		justify-content: center;
		flex-direction: column;
		gap: 10px;
	}
	.work-time {
		text-align:center;
	}
    .sec-title { font-size: 1.7rem; }
    .item-adv { max-width: 100%; }
    .lead-form { flex-direction: column; }
    .hero h1 { font-size: 2rem; }
}

/* ПОДВПЛ СТИЛЬ */
.main-footer {
    background-color: var(--dark-text);
    color: #ecf0f1;
    padding: 60px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-title {
    color: #27ae60; /* Фирменный зеленый */
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fmenu, .fcont {
    list-style: none;
    padding: 0;
}

.fmenu li { margin-bottom: 12px; }

.fmenu a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.fmenu a:hover { color: #fff; padding-left: 5px; }

.address-list a { font-size: 0.85rem; line-height: 1.4; display: block; }
.address-list strong { color: #fff; }

.phone-link {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
}

.f-mail a {
    font-size: 1rem;
    font-weight: normal;
    color: #fff !important;
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 15px;
    line-height: 1.5;
}

/* Нижняя полоска */
.footer-bottom {
    background-color: #1a252f;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.disclaimer { text-align: center; }
.copyright { font-weight: bold; margin-bottom: 10px; color: #27ae60; }
.legal-text {
    font-size: 0.75rem;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Адаптивность подвала */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .fmenu a:hover { padding-left: 0; }
}

/* таблица с ценамаи */
.price-section { padding: 60px 0; background: #fff; }

/* Баннер внимания */
.attention-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0fdf4;
    border-left: 5px solid #22c55e;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.at-icon svg { width: 32px; height: 32px; stroke: #22c55e; }
.at-text strong { font-size: 1.2rem; color: #166534; display: block; }
.at-text p { margin: 0; color: #166534; opacity: 0.9; }

/* Группировка по ПК */
.poly-group { margin-bottom: 50px; }
.poly-header {
    background: var(--dark-text);
    color: white;
    padding: 15px 25px;
    border-radius: 12px 12px 0 0;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}
.poly-dot { width: 10px; height: 10px; background: #27ae60; border-radius: 50%; display: inline-block; }

/* Таблица теплиц */
.table-responsive { overflow-x: auto; border: 1px solid #eee; border-radius: 0 0 12px 12px; }
.stroy-table { width: 100%; border-collapse: collapse; background: #fff; text-align: left; }
.stroy-table th { background: #f8fafc; padding: 15px; font-size: 0.9rem; color: #64748b; text-transform: uppercase; border-bottom: 2px solid #edf2f7; }
.stroy-table td { padding: 15px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }

.td-model { display: flex; align-items: center; gap: 15px; min-width: 250px; }
.td-img-box { width: 60px; height: 60px; flex-shrink: 0; }
.td-img-box img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.td-price { font-size: 1.3rem; font-weight: 800; color: var(--dark-text); white-space: nowrap; }
.td-price small { font-size: 0.9rem; color: #94a3b8; }

/* сноска */
.price-footnote {
    display: flex;
    gap: 8px;
    margin-top: -40px;
    margin-bottom: 40px;
    padding-top: 5px;
    max-width: 800px;
}

.footnote-marker {
    font-size: 1.2rem;
    line-height: 1;
    color: var(--accent-red);
    font-weight: bold;
}

.footnote-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #64748b;
    font-style: italic;
    margin-bottom: 0;
}

.footnote-text strong {
    font-style: normal;
    color: var(--dark-text);
}

/* Адаптация для мобилок */
@media (max-width: 768px) {
    .price-footnote {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/* Адаптация под мобилки */
@media (max-width: 768px) {
    .stroy-table thead { display: none; }
    .stroy-table tr { display: block; border-bottom: 2px solid #eee; padding: 15px 0; }
    .stroy-table td { display: flex; justify-content: left; align-items: center; border: none; padding: 3px 15px; }
    .td-model { flex-direction: column; align-items: flex-start; }

	.td-img-box {
		width: 100%;
		height: 90px;
		flex-shrink: 0;
	}
    .section-block {
        padding: 50px 0;
    }
    
    .btn {
        width: 100%;
		justify-content: center;
        text-align: center;
    }
}


/* блоки teplica */
.teplica-content-block {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}


/* комплектующие */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Карточка */
.product-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card__img {
    height: 200px;
    overflow: hidden;
    background: #f9f9f9;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    border-radius: 20px 20px 0px 0px;
    display: block;
}

.product-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__title {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.3;
}

.product-card__specs {
    margin-bottom: 20px;
    flex-grow: 1;
}

.spec-item {
    font-size: 0.9rem;
    color: var(--gray-soft);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.spec-item b {
    color: var(--dark-text);
}

/* Футер карточки и цена */
.product-card__footer {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.product-card__price {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--gray-soft);
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-main);
}

.price-value small {
    font-size: 0.9rem;
    font-weight: 400;
}

.snoska {
    margin-top: 30px;
    padding: 15px;
    border-left: 4px solid var(--green-main);
    background: var(--light-bg);
    color: var(--gray-soft);
    font-size: 0.9rem;
}

/* ПЛИТКА КАРТИНОК 2 В РЯД */
.gallery-grid-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16 / 10;
}

.gallery-card__wrapper {
    width: 100%;
    height: 100%;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

/* Эффекты при наведении */
.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

/* Мобильная адаптация */
@media (max-width: 576px) {
    .gallery-grid-clean {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .gallery-card {
        aspect-ratio: 4 / 3;
    }
}