:root {
	--bg-main: #0b0f19;
	--bg-light: #f6f6f6;
	--bg-card: #161b28;
	--border: #2d364d;
	--text-white: #ffffff;
	--text-dark: #0f172a;
	--text-gray: #94a3b8;
	--text-accent: #b89bb2;
	--btn-color: #aa699d;
	--radius-lg: 50px;
	--transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	}
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body {
	background-color: var(--bg-main);
	color: var(--text-white);
	font-family: 'Inter', sans-serif;
	line-height: 1.7;
	overflow-x: hidden;
	padding-top: 80px;
	}
	
h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    width: 100%;
    color: var(--text-dark);
}
@media (min-width: 0px) and (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }
}	

	
/* --- ФОНОВЫЕ ЭЛЕМЕНТЫ --- */
.bg-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--bg-main);
	}
.michelle-blob {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(170, 105, 157, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
	filter: blur(60px);
	animation: move 20s infinite alternate;
	}
@keyframes move { from { transform: translate(0, 0); } to { transform: translate(100px, 100px); } }
.container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
	}	
section {
	padding: 100px 0;
	position: relative;
	}

	
/* --- ШАПКА --- */
nav {
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	backdrop-filter: blur(20px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid var(--border);
	background: rgba(11, 15, 25, 0.85);
	}
.logo {
	font-size: 1.4rem;
	text-decoration: none;
	color: #fff;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	}
.logo b {font-weight: 900;}
.logo span {
	font-weight: 300;
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid rgba(255,255,255,0.3);
	}
.nav-menu {
	display: flex;
	gap: 20px;
	}
.nav-menu a {
	color: var(--text-white);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: 0.3s;
	}
.nav-menu a:hover {color: var(--btn-color);}
.nav-contacts {
	display: flex;
	align-items: center;
	gap: 15px;
	}
.nav-phone {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	}
.nav-tg svg {
	width: 22px;
	fill: var(--text-accent);
	stroke: var(--text-accent);
    stroke-width: 0;
	transition: 0.3s;
	vertical-align: middle;
	}
.nav-tg:hover svg {fill: #fff;}
.btn-pill {
	background: var(--btn-color);
	color: #fff;
	padding: 12px 25px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: var(--transition);
	border: 1px solid transparent;
	cursor: pointer;
	/*box-shadow: 0 10px 25px rgba(170, 105, 157, 0.3);*/
	font-size: 0.8rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	height: 44px;
	}
.btn-pill:hover {transform: scale(1.05);}
.btn-outline {
	background: transparent;
	border: 1px solid var(--btn-color);
	box-shadow: none;
	color: var(--text-white);
	}
@media (min-width: 0px) and (max-width: 900px) {
    .container {max-width: 100%;}
    section {padding: 70px 0;}
}


/* --- МОДАЛЬНОЕ ОКНО --- */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(11, 15, 25, 0.95);
	backdrop-filter: blur(10px);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	}
.modal-content {
	background: var(--bg-card);
	padding: 30px 40px;
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 500px;
	position: relative;
	border: 1px solid var(--border);
	}
.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
	background: none;
	border: none;
	}
.form-group {margin-bottom: 5px;}
.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-gray);
	font-size: 0.8rem;
	text-transform: uppercase;
	}
.form-group input {
	width: 100%;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid var(--border);
	background: var(--bg-main);
	color: #fff;
	outline: none;
	}
.form-group textarea {
	width: 100%;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid var(--border);
	background: var(--bg-main);
	color: #fff;
	outline: none;
	resize: none;
	min-height: 100px;
	font-family: inherit;
	}


/*ФОС*/
.lead-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	}
.full-width {grid-column: span 2;}
/* Стилизация чекбоксов (услуги) */
.services-checkboxes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
	}
.service-item {position: relative;}
.service-item input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	}
.service-label {
	display: block;
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 10px;
    color: var(--text-gray);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
	}
.service-item input:checked + .service-label {
	background: var(--btn-color);
	border-color: var(--btn-color);
	color: #fff;
	}
.service-label:hover {border-color: var(--btn-color);}
/* Адаптивность формы */
@media (max-width: 600px) {
	.lead-form-grid {grid-template-columns: 1fr;}
	.full-width {grid-column: span 1;}
	.service-label {
	    padding: 2px 9px;
	    font-size: 8px;
	}
	.form-group label {margin-bottom: 0px;}
	.form-group input {padding: 7px 15px;}
	.form-group textarea {min-height: 50px;}
	.lead-form-grid {gap: 10px;}
	}


/* --- СОБСТВЕННАЯ АНИМАЦИЯ ПОЯВЛЕНИЯ --- */
/* Базовое состояние для всех анимируемых элементов */
[data-aos] {
	opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s; /* Скорость анимации */
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform; /* Подсказка браузеру для плавности */
}
/* Эффект снизу вверх */
[data-aos="fade-up"] {transform: translateY(40px);}
/* Эффект слева */
[data-aos="fade-right"] {transform: translateX(-40px);}
/* Эффект справа */
[data-aos="fade-left"] {transform: translateX(40px);}
/* Эффект сверху (для шапки) */
[data-aos="fade-down"] {transform: translateY(-40px);}
/* Эффект зума */
[data-aos="zoom-in"], [data-aos="zoom-in-up"] {transform: scale(0.92);}
/* Состояние ПОСЛЕ появления (когда сработал скролл) */
[data-aos].aos-animate {
	opacity: 1;
    transform: translate(0) scale(1);
}
/* Отключаем задержки на мобильных для мгновенного отклика */
@media (max-width: 768px) {
	[data-aos] {
		transition-delay: 0s !important;
        transition-duration: 0.5s !important;
	}
}	
		
	
	
/* --- БЛОКИ ГЛАВНОЙ --- */
/* --- HERO --- */
.hero {
	display: flex;
	align-items: center;
	min-height: 90vh;
	background-image: url('/img/office.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	}
.hero .container {width: 100%;}
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 20%, rgba(11, 15, 25, 0.7) 100%);
	}
.hero-content {
	flex: 1;
	position: relative;
	z-index: 2;
	width: 65%;
	}
.hero-content h1 {
	font-size: 4.5rem;
	line-height: 1.1;
	font-weight: 900;
	margin-bottom: 25px;
	width: 100%;
	color:#fff;
	}
.hero-content p {
	font-size: 1.2rem;
	color: var(--text-white);
	margin-bottom: 25px;
	opacity: 0.9;
	width: 100%;
	}
.hero-trust {
	font-size: 1.1rem;
	color: var(--text-gray);
	margin-bottom: 40px;
	border-left: 3px solid var(--btn-color);
	padding-left: 20px;
	line-height: 1.6;
	width: 100%;
	}
.hero-btns {
	display: flex;
	gap: 20px;
	}
.hero-btns .btn-pill {
	height: 50px;
	padding: 0 40px;
	font-size: 1rem;
	}
.hero-pretitle {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--text-gray);
	font-weight: 700;
	margin-bottom: 20px;
	opacity: 0.8;
}
.hero-pretitle::before {
	content: "";
	width: 35px;
	height: 1px;
	background: var(--btn-color);
	display: inline-block;
}
@media (min-width: 0px) and (max-width: 900px) {
    .hero-content h1 {font-size: 2.5rem;}
    .hero-btns {display:grid}
    .services-section {padding: 70px 0;}
    .hero-content p {
        font-size: 1rem;
    }
    .hero-content {width: 100%;}
}



/* --- СЕКЦИЯ УСЛУГ С ИКОНКАМИ --- */
.services-section {
	background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 100px 0;
    border-radius: var(--radius-lg);
}
.services-header {
	text-align: center;
	margin-bottom: 50px;
}
.services-header .section-title {
	color: var(--text-dark);
	margin-bottom: 20px;
}
.services-header p {
	color: #64748b;
	max-width: 750px;
	margin: 0 auto;
	font-size: 1.1rem;
}
/* Стили иконок */
.s-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
    color: var(--btn-color);
}
.s-card.featured .s-icon {
    width: 55px;
    height: 55px;
}
/* Первый ряд */
.services-accent-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 25px;
    align-items: stretch;
    margin-bottom: 50px;
}
.s-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}
.s-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}
.s-card h3 {
	font-size: 1.6rem;
	margin-bottom: 20px;
	font-weight: 900;
	color: var(--text-dark);
	line-height: 1.2;
}
/* Второй ряд */
.services-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.s-card.secondary {
	padding: 40px 35px;
	background: #ffffff;
}
.s-card-header {
    display: flex;
	justify-content: space-between;
	align-items: flex-start;
    margin-bottom: 15px;
	gap: 15px;
}
.s-card.secondary h3 {
	margin-bottom: 0;
	font-size: 1.4rem;
	flex: 1;
}
.link-more {
    font-size: 0.75rem;
	font-weight: 700;
	color: var(--text-gray);
    text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
    white-space: nowrap;
	padding-top: 5px;
	transition: 0.3s;
}
.link-more:hover {color: var(--btn-color);}
.s-card-footer {
    display: flex;
	justify-content: space-between;
	align-items: center;
    margin-top: auto;
	padding-top: 20px;
	gap: 15px;
}
.s-card.secondary .s-price {
	margin-bottom: 0;
	font-size: 1.2rem;
	white-space: nowrap;
	font-weight: 900;
	color: var(--btn-color);
}
/* Плашка Сайты */
.s-card.featured {
	margin: -30px 0;
    padding: 70px 45px;
    border: 2px solid var(--btn-color);
    /*box-shadow: 0 30px 60px rgba(170, 105, 157, 0.15);*/
    z-index: 5;
    background: #fff;
}
.s-card.featured h3 {
	font-size: 2.2rem;
	color: var(--btn-color);
}
.s-card.featured p {font-size: 1.1rem;}
/* Кнопки */
.s-card-btns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	width: 100%;
}
.btn-s {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
    border-radius: 30px;
	font-weight: 700;
	font-size: 0.85rem;
    text-decoration: none;
	transition: 0.3s;
	cursor: pointer;
	border: none;
}
.btn-s.main {
	background: var(--btn-color);
	color: #fff;
}
.btn-s.sec {
	background: transparent;
	border: 1px solid var(--btn-color);
	color: var(--btn-color);
}
.btn-s:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(170, 105, 157, 0.2);
}
.btn-footer {
    height: 44px;
	padding: 0 20px;
	background: var(--btn-color);
	color: #fff;
    border-radius: 30px;
	border: none;
	font-weight: 700;
	font-size: 0.8rem;
	cursor: pointer;
	transition: 0.3s;
	white-space: nowrap;
}
.btn-footer:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(170, 105, 157, 0.2);
}
/* СПЕЦИАЛЬНАЯ ШИРОКАЯ ПЛАШКА ИИ */
.ai-featured-row {
    grid-column: 1 / -1; /* Растягиваем на всю ширину сетки */
    margin-top: 30px;
    background: linear-gradient(90deg, #ffffff 0%, #f8fafc 100%);
    padding: 0 !important; /* Обнуляем внутренние отступы для гибкости */
    overflow: hidden;
    border: 2px solid rgba(170, 105, 157, 0.1) !important;
}
.ai-row-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}
.ai-row-text {
    padding: 60px;
}
.ai-badge {
    display: inline-block;
    background: var(--btn-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.s-icon-ai {
    color: var(--btn-color);
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}
.ai-row-text h3 {
    font-size: 2.2rem !important;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.ai-row-text h3 span {
    color: var(--btn-color);
}
.ai-row-text p {
    max-width: 550px;
    margin-bottom: 35px !important;
}
.ai-row-btns {
    display: flex;
    align-items: center;
    gap: 25px;
}
.ai-timer {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ВИЗУАЛИЗАЦИЯ СПРАВА */
.ai-row-visual {
    background: #0f172a;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ai-network-viz {
    position: relative;
    width: 200px;
    height: 200px;
}
.pulse-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: var(--btn-color);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--btn-color);
    animation: ai-pulse 2s infinite;
}
.node {
    position: absolute;
    width: 10px; height: 10px;
    background: #fff;
    border-radius: 50%;
}
.n1 { top: 10%; left: 20%; animation: float 3s infinite ease-in-out; }
.n2 { top: 80%; left: 10%; animation: float 4s infinite ease-in-out; }
.n3 { top: 40%; right: 10%; animation: float 5s infinite ease-in-out; }
@keyframes ai-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.ai-row-btns .btn-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(170, 105, 157, 0.2);
}






















@media (min-width: 0px) and (max-width: 900px) {
    .services-accent-grid, .services-secondary-grid {grid-template-columns: 1fr;}
    .s-card.featured {
		margin: 0;
		padding: 45px 35px;
	}
    .ai-row-content {grid-template-columns: 1fr;}
    .ai-row-visual {
        height: 250px;
        order: -1; /* Картинка сверху на мобилках */
    }
    .ai-row-text {
        padding: 40px 30px;
        text-align: center;
    }
    .ai-row-text p {margin: 0 auto 30px;}
    .ai-row-btns {
        flex-direction: column;
        gap: 15px;
    }
    .ai-row-text h3 {font-size: 1.8rem !important;}
    .s-card-btns {grid-template-columns: repeat(1,1fr);}
    .s-card-header {display: grid;}
    .s-card-footer {display: grid;}
    .section-subtitle {
        letter-spacing: 3px !important;
        font-size: 0.6rem !important;
    }
    .services-section {padding: 70px 0;}
    .s-card.featured h3 {font-size: 2rem;}
    .s-card p {
        font-size: 1rem !important;
        line-height: 1.6;
    }
}


/* --- ПОРТФОЛИО --- */
.light-section {
	background-color: var(--bg-light);
	color: var(--text-dark);
	border-radius: var(--radius-lg);
}
.section-subtitle {
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 0.8rem;
	color: var(--btn-color);
	font-weight: 700;
	display: block;
	text-align: center;
	margin-bottom: 10px;
}
.section-subtitle.left {text-align:left}
.section-title {
	font-size: 3.5rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 60px;
	line-height: 4.5rem;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}
.card {
	padding: 50px;
	border-radius: var(--radius-lg);
	transition: var(--transition);
	background: #fff;
}
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}
.p-card {
    background: var(--bg-card); 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    position: relative; 
    height: 500px; 
    border: 1px solid var(--border);
    cursor: default;
}
.p-img-wrap { 
    width: 100%; 
    height: 100%; 
    position: relative; 
    overflow: hidden;
}
.p-img-wrap img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: top;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: none !important;
}
.p-card:hover .p-img-wrap img { 
    transform: scale(1.1); 
}
.p-hover-content { 
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	opacity: 0;
	background: rgba(11, 15, 25, 0.4);
	transition: 0.4s;
	z-index: 5;
}
.p-card:hover .p-hover-content {opacity: 1;}
.p-action-btn {
	width: 60px;
    height: 60px;
    background: var(--btn-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.p-action-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--btn-color);
}
.p-action-btn svg {
	width: 24px;
	height: 24px;
}
/* Стили фильтра */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-gray);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--btn-color);
    border-color: var(--btn-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(170, 105, 157, 0.3);
}
/* Анимация при фильтрации */
.p-card {
    transition: transform 0.4s, opacity 0.4s, display 0.4s;
}
.p-card.hide {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}
.p-card.show {
    display: block;
    animation: fadeIn 0.5s forwards;
}
@keyframes fadeIn {
    from {
		opacity: 0;
		transform: scale(0.9);
	}
    to {
		opacity: 1;
		transform: scale(1);
	}
}
@media (min-width: 0px) and (max-width: 900px) {
    .section-title {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 30px;
    }
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}


/* --- СЕКЦИЯ О НАС И ПОДХОД --- */
.about-section {
	background-color: #ffffff; /* Чистый белый для контраста */
    color: var(--text-dark);
    padding: 100px 0;
}
.about-intro {
	display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 100px;
}
.about-intro h2 {
	font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
}
.about-intro .accent-text {
	font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
}
.philosophy-box {
	background: var(--bg-light);
    padding: 50px;
    border-radius: 40px;
    border-left: 5px solid var(--btn-color);
}
.philosophy-box p {
	font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}
/* Сетка подхода */
.approach-grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.approach-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 30px;
    position: relative;
    transition: 0.3s;
    border: 1px solid transparent;
}
.approach-card:hover {
    background: #fff;
    border-color: var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-10px);
}
.approach-card .step-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--btn-color);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
}
.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.approach-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}
.approach-card.result-card {
    background: var(--btn-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    border: none;
}
.approach-card.result-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Белая контурная кнопка */
.btn-white-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.btn-white-outline:hover {
    background: #ffffff;
    color: var(--btn-color);
    transform: translateY(-3px);
}
@media (max-width: 1100px) {
	.about-intro {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.approach-grid {grid-template-columns: 1fr 1fr;}
	.about-intro h2 {
	    font-size: 2rem;
	    line-height: 2.5rem;
	}
}
@media (max-width: 768px) {
	.approach-grid {grid-template-columns: 1fr;}
}
@media (min-width: 0px) and (max-width: 900px) {
    .approach-card.result-card h3 {
        font-size: 1.4rem;
        line-height: 2rem;
        font-weight: 600;
    }
    .approach-card h3 {
        font-size: 1.4rem;
        margin-bottom:10px;
        line-height: 1.4;
    }
    .about-section {padding: 70px 0;}
    .about-intro {margin-bottom: 30px;}
    .services-header {margin-bottom: 30px;}
    .about-intro .accent-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    .philosophy-box {
        padding: 40px;
        border-left: 5px solid var(--btn-color);
    }
    .philosophy-box p {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
    }
}
    

/* --- БЛОК ОНЛАЙН КАЛЬКУЛЯТОРА --- */
.calc-cta-full {
	position: relative;
    padding: 100px 0;
    width: 100%;
    /* Фоновая картинка с темным наложением прямо на секции */
    background: linear-gradient(rgba(11, 15, 25, 0.9), rgba(11, 15, 25, 0.8)), url('/img/fos-4.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}
.calc-cta-full .calc-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.calc-cta-full h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    color: #fff;
}
.calc-cta-full p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
}
/* Кнопка с эффектом свечения */
.btn-calc-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--btn-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
}
.btn-calc-large:hover {
    transform: translateY(-5px) scale(1.05);
    background: #c27bad;
}
.btn-calc-large svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}
.btn-calc-large:hover svg {
    transform: translateX(8px);
}
/* Мобильная адаптация */
@media (max-width: 768px) {
	.calc-cta-full {padding: 70px 0px;}
    .calc-cta-full h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .calc-cta-full p {
        font-size: 1rem;
        line-height:1.4rem;
    }
    .btn-calc-large {
		padding: 12px 40px;
		font-size: 1rem;
		justify-content: center;
	}
	.btn-calc-large svg {
	    width: 15px;
	    height: 15px;
	}
}


/* --- ВЫГОДЫ --- */
.benefits-section {
	background-color: #ffffff;
    padding: 100px 0;
    color: var(--text-dark);
    position: relative;
    z-index: 10;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.benefit-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
}
.benefit-card h3 {
	font-size: 1.6rem;
	font-weight: 900;
	margin-bottom: 20px;
	color: var(--text-dark);
	line-height: 2.2rem;
}
.benefit-card p {
	color: #475569;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom:30px
}
.benefit-card .btn-outline {color: var(--btn-color);}
.team-roles {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}
.role-tag {
    background: #fff;
	padding: 6px 14px;
	border-radius: 10px;
    font-size: 0.8rem;
	font-weight: 700;
	color: var(--btn-color); 
    border: 1px solid rgba(170, 105, 157, 0.1);
}
/* Темная карточка */
.benefit-wide-card {
    grid-column: span 2;
    background: var(--bg-card);
    color: #fff;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}
.benefit-info {flex: 1;}
.benefit-info h3 {
	font-size: 2.2rem;
	font-weight: 900;
	color: #fff;
	margin: 0;
}
.results-list {
	flex: 1.2;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.result-item {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.15rem;
	font-weight: 600;
}
.result-item span { 
    width: 28px;
	height: 28px;
	background: var(--btn-color);
    border-radius: 50%;
	display: flex;
	align-items: center;
    justify-content: center;
	flex-shrink: 0;
}
@media (max-width: 1100px) {
	.benefit-wide-card {
		flex-direction: column;
		padding: 45px 30px;
		gap: 40px;
		grid-column: span 1;
	}
    .benefits-grid {grid-template-columns: 1fr;}
    .benefit-info h3 {font-size: 1.8rem;}
    .benefits-actions {justify-content: flex-start;}
}
@media (max-width: 600px) {
	.benefits-actions .btn-pill {width: 100%;}
}
@media (min-width: 0px) and (max-width: 900px) {
    .benefit-card h3 {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
   .team-roles {margin-top: 0px;}
   .benefits-section {padding: 70px 0;}
   .benefit-card p {
       font-size: 1rem;
       line-height: 1.4;
   }
}


/* --- ФИНАЛЬНАЯ ФОС --- */
.final-section {
    padding: 100px 0;
    position: relative;
    background-image: url(/img/fos-3.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
}
/* Темный оверлей */
.final-section::before {
    content: "";
    position: absolute;
    top: 0;
	left: 0;
    width: 100%;
	height: 100%;
    background: linear-gradient(to right, rgb(11, 15, 25, 0.75) 30%, rgb(11, 15, 25, 0.97) 60%);
    z-index: 1;
}
/* Поднимаем контент над фоном */
.final-section .container {
    position: relative;
    z-index: 2;
}
.final-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 65px;
    align-items: center;
}
.final-info h2 {
    margin-bottom: 25px;
	font-size: 3.5rem;
}
.final-p { 
    font-size: 1.2rem;
	color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}
/* Стеклянная карточка формы */
.final-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
/* Адаптивность для мобилок */
@media (max-width: 1100px) {
    .final-section {padding: 70px 0;}
    .final-section::before {background: rgba(11, 15, 25, 0.95);} /* Более плотный фон на мобильных */
    .final-wrapper {
		grid-template-columns: 1fr;
		gap: 50px;
	}
    .final-info h2 {
		font-size: 2rem;
		line-height: 2.5rem;
		text-align: center;
	}
}
@media (min-width: 0px) and (max-width: 900px) {
    .final-form-card {padding: 40px 20px;}
    .final-p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0px;}
}


/* --- ФУТЕР --- */
.site-footer {
    background-color: #070a11; /* Еще чуть темнее основного фона для глубины */
    padding: 100px 0 40px;
    border-top: 0px solid var(--border);
    color: var(--text-white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}
.footer-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 20px 0 30px;
    max-width: 320px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {margin-bottom: 12px;}
.footer-links li.divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
    opacity: 0.5;
}
.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--btn-color);
    transform: translateX(5px);
}
/* Контакты в футере */
.f-contact {
    font-weight: 700;
    font-size: 1.1rem !important;
    color: #fff !important;
}
.f-tg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: rgba(170, 105, 157, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(170, 105, 157, 0.2);
    width: 215px;
}
.f-tg svg {
    width: 20px;
    height: 20px;
    fill: var(--text-accent);
    stroke: var(--text-accent);
    stroke-width: 0;
}
.f-tg:hover {
    background: var(--btn-color) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
}
.f-tg:hover svg {fill: #fff;}
/* Нижняя панель */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #4b5563;
}
.footer-legal {
    display: flex;
    gap: 30px;
}
.footer-legal a {
    color: #4b5563;
    text-decoration: none;
    transition: 0.3s;
}
.footer-legal a:hover {color: var(--text-gray);}
/* Мобильная Адаптивность */
@media (max-width: 1100px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
    .info-col {grid-column: span 2;}
}
@media (max-width: 768px) {
	.footer-top {
		grid-template-columns: 1fr;
		text-align: center;
	}
    .info-col {grid-column: span 1;}
    .footer-desc {max-width: 100%;}
    .footer-links a:hover {transform: none;}
    .footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
    .footer-legal {
		flex-direction: column;
		gap: 10px;
	}
    .f-tg {justify-content: center;}
}
@media (min-width: 0px) and (max-width: 600px) {
    .footer-col.info-col {display:none}
    .footer-col:nth-child(2) {display:none}
}
@media (min-width: 0px) and (max-width: 900px) {
    .site-footer {padding: 70px 0 40px;}
    .footer-links li {margin-bottom: 3px;}
    .footer-col h4 {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}



/* --- CSS ДЛЯ ДОПОЛНИТЕЛЬНЫХ СТРАНИЦ --- */
/* --- СТРАНИЦА ПОДДЕРЖКИ --- */
.hero.podd {
	background-image: url('/img/pod.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
}
.support-intro {
	padding: 100px 0;
	background: #fff;
	color: var(--text-dark);
	text-align: center;
}
.support-intro p {
	font-size: 1.4rem;
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.6;
	color: #475569;
}
.support-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}
.support-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 45px 35px;
	border-radius: 40px;
	transition: 0.3s;
	display: flex;
	flex-direction: column;
}
.support-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.05);
	border-color: var(--btn-color);
}
.support-card h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 25px;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 30px;
    text-align: left;
    line-height: 2.1rem;
}
.support-card h3 span {
	color: var(--btn-color);
	font-size: 1.8rem;
}
.support-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.support-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	color: #64748b;
	line-height: 1.4;
	text-align: left;
}
.support-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--btn-color);
	font-weight: 900;
}
/* Блок Кому подойдет */
.target-audience {
	background: var(--bg-light);
	padding: 100px 0;
	border-radius: var(--radius-lg);
	margin-top: 40px;
}
.audience-box {
	background: #fff;
	padding: 60px;
	border-radius: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.audience-content h2 {
	margin-bottom: 25px;
	text-align: left;
}
.audience-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
}
.audience-item span {
	color: var(--btn-color);
	font-weight: 900;
}
@media (max-width: 1100px) {
	.support-grid {grid-template-columns: 1fr;}
	.audience-box {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px;
	}
}
@media (min-width: 0px) and (max-width: 900px) {
    .support-card h3 {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .support-intro p {font-size: 1.1rem;}
    .support-intro {padding: 70px 0;}
    .podd .hero-content h1 {font-size: 2rem;}
}
		

/* --- СТРАНИЦА ДИЗАЙНА --- */
.hero.des {
	background-image: url('/img/design.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
}
.design-section {
    background-color: #ffffff;
    padding: 100px 0;
    color: var(--text-dark);
}
.design-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}
.design-intro h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}
.design-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}
/* Бейдж Figma */
.figma-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 50px;
    border-radius: 40px;
    text-align: center;
    position: relative;
}
.figma-badge svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.figma-badge h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.figma-badge p {
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Сетка преимуществ макета */
.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.design-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.design-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-10px);
}
.design-card .icon-wrap {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--btn-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.design-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}
.design-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}
@media (max-width: 1100px) {
	.design-intro {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
    .design-grid {grid-template-columns: 1fr 1fr;}
}
@media (min-width: 0px) and (max-width: 900px) {
    .design-grid {grid-template-columns: 1fr;}
    .design-intro h2 {
        font-size: 2rem;
        line-height: 2.5rem;
        text-align:left;
    }
    .design-intro p {text-align: left;}
    .design-section {padding: 70px 0;}
}


/* --- СТРАНИЦА ТЕХНИЧЕСКОЕ ЗАДАНИЕ --- */
.hero.tz {
	background-image: url('/img/analiz.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
}
.tz-section {
    padding: 100px 0;
    background: #ffffff;
    color: var(--text-dark);
}
/* 1. Блок: Важность ТЗ (Интро) */
.tz-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1340px;
    margin: 0px auto 100px;
}
.tz-headline h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
}
.tz-headline p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
}
.tz-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.tz-pain-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 25px;
	border: 1px solid transparent;
    transition: 0.3s;
}
.tz-pain-item:hover {
    border-color: var(--btn-color);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.tz-pain-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--btn-color);
    font-weight: 800;
    margin-bottom: 10px;
}
.tz-pain-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
}
/* 2. Сетка типов проектов */
.tz-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}
.tz-type-tag {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}
.tz-type-tag:hover {
    border-color: var(--btn-color);
    background: #fff;
    color: var(--btn-color);
    transform: scale(1.03);
}
/* 3. Этапы разработки (Шаги) */
.tz-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1340px;
    margin: 0px auto 100px;
}
.tz-intro-layout .section-subtitle {text-align:left}
.tz-step-card {
    background: var(--bg-light);
    /*background: #fff;
    border: 1px solid #e2e8f0;*/
    padding: 35px 25px;
    border-radius: 30px;
    position: relative;
    height: 100%;
}
.tz-step-num {
    font-size: 0.8rem;
    font-weight: 900;
    color: #fff;
    background: var(--btn-color);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}
.tz-step-card h4 {
	margin-bottom: 15px;
	font-weight: 800;
	font-size: 1.1rem;
	line-height: 1.3;
}
.tz-step-card p {
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.5;
}
/* 4. Результаты (Минимализм) */
.tz-results-minimal {padding: 20px 0 60px;}
.tz-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1340px;
    margin: 0px auto;
}
.tz-result-card {
    padding: 40px;
    background: #f8fafc;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}
.tz-result-card:hover {
    background: #fff;
    border-color: var(--btn-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}
.tz-icon-thin {
    width: 42px;
    height: 42px;
    color: var(--btn-color);
    margin-bottom: 25px;
    stroke-width: 1.2px; /* Тонкая линия */
}
.tz-result-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}
.tz-result-card.final-note {
    background: var(--btn-color);
    border: none;
    justify-content: center;
}
.tz-result-card.final-note h4 {
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 800;
}
/* Адаптивность */
@media (max-width: 1100px) {
	.tz-intro-layout, .tz-results-grid {grid-template-columns: 1fr 1fr;}
    .tz-steps-grid {grid-template-columns: 1fr 1fr;}
    .tz-intro-layout {
		grid-template-columns: 1fr;
		text-align: center;
	}
    .tz-headline p {margin: 0 auto;}
}
.tz-prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1340px;
    margin: 50px auto 100px;
}

.tz-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.tz-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--btn-color);
}

/* Акцентная карточка (Featured) */
.tz-price-card.featured {
    border: 2px solid var(--btn-color);
    background: #fff;
    box-shadow: 0 10px 30px rgba(170, 105, 157, 0.1);
}

.tz-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--btn-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    border-bottom-left-radius: 20px;
}

/* Заголовки и описание */
.tz-card-top {
    margin-bottom: 25px;
}

.tz-price-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tz-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Блок цены и сроков */
.tz-card-meta {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.meta-row:last-child {
    margin-bottom: 0;
}

.meta-row .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
}

.meta-row .val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.meta-row .val.price {
    font-size: 1.25rem;
    color: var(--btn-color);
    font-weight: 900;
}

/* Кнопка на всю ширину */
.btn-s.full-width {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .tz-prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 0px) and (max-width: 900px) {
	.tz-types-grid, .tz-pain-grid, .tz-results-grid, .tz-steps-grid {grid-template-columns: 1fr;}
    .tz-headline h2 {font-size: 2rem;}
    .tz-intro-layout .section-subtitle {text-align:center}
    .tz-section {padding: 70px 20px;}
    .tz-intro-layout {
        gap: 30px;
        margin-bottom: 70px;
    }
    .tz-price-card {padding: 40px 30px;}
    .tz-prices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 70px;
    }
    .tz-steps-grid {margin-bottom: 70px;}
    .tz-price-card h3 {font-size: 1.2rem;}
}



/* --- ФИКСИРОВАННЫЕ КНОПКИ СБОКУ --- */
.side-controls {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}
.side-btn {
    width: 48px;
    height: 48px;
    background: rgba(11, 15, 25, 0.9);
    border: 2px solid #aa699d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.side-btn svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    transition: 0.3s;
}
.side-btn.tg svg {
    fill: #fff;
    stroke: none;
}
.side-btn:hover {
    background: #aa699d;
    transform: scale(1.1) translateX(-5px);
    box-shadow: 0 0 20px rgba(170, 105, 157, 0.6);
}
.side-btn:hover svg {
    stroke: #fff;
    transform: rotate(-5deg);
}
/* Подсказка (Tooltip) */
.side-tooltip {
    position: absolute;
    right: 65px;
    background: #aa699d;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.side-tooltip::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #aa699d;
}
.side-btn:hover .side-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
/* Мобильная адаптация */
@media (max-width: 768px) {
	.side-controls {
		right: 15px;
        top: auto;
        bottom: 80px; /* Чтобы не мешали плавающей шапке */
        transform: none;
        gap: 8px;
    }
    .side-btn {
        width: 42px;
        height: 42px;
        border-width: 1px; /* На мобилках потоньше */
    }
    .side-tooltip {display: none;}
}


/* Стили для ошибок в формах */
.form-group.has-error input {
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.05);
}

.error-hint {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: none; /* Скрыто по умолчанию */
    animation: fadeInError 0.3s ease forwards;
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Анимация встряхивания для привлечения внимания */
.shake {
    animation: shakeAnim 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shakeAnim {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}



/* --- ВСПЛЫВАЮЩЕЕ ОКНО ПРИ УХОДЕ (EXIT INTENT) --- */
/* Плавное появление фона */
.exit-overlay {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.exit-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Плавный вылет и увеличение самой карточки */
.exit-modal-content {
    max-width: 600px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 30px;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.exit-overlay.is-active .exit-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Карточка предложения с градиентом и тенью */
.exit-offer-card {
    background: linear-gradient(145deg, var(--btn-color), #4d2b45); /* Глубокий градиент в стиле сайта */
    border-radius: 25px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(170, 105, 157, 0.25);
    position: relative;
    overflow: hidden;
}

/* Декоративный анимационный блик */
.exit-offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: exitShine 5s infinite;
}
@keyframes exitShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.exit-badge {
    display: inline-block;
    background: #ffffff;
    color: var(--btn-color);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.exit-offer-card h3 {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.exit-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}
.exit-features li { margin-bottom: 8px; }
.exit-features .dim-text {
    opacity: 0.6;
    text-decoration: underline;
    font-size: 0.85rem;
    text-underline-offset: 3px;
}

.exit-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}
.exit-tags span {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.exit-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.exit-price span {
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.8;
}

.exit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.exit-actions .btn-pill {
    width: 100%;
    height: 55px;
    font-size: 0.95rem;
    border-radius: 15px; /* Чуть более квадратные кнопки для контраста */
}

@media (max-width: 600px) {
    .exit-actions { grid-template-columns: 1fr; }
    .exit-offer-card { padding: 30px 20px; }
    .exit-offer-card h3 { font-size: 1.4rem; }
    .exit-features { font-size: 0.9rem; }
    .exit-price { font-size: 2rem; }
    .exit-price span { font-size: 1.2rem; }
    .exit-modal-content { padding: 40px 20px 20px; }
}



/*КЕЙСЫ*/
/*hero*/
#hero-cases {
    padding:100px 0px;
    display: flex;
    align-items: center;
    background-image: url(/img/cases.jpg);
    background-size: cover;
    background-position: 100% 85%;
    position: relative;
}
#hero-cases::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 20%, rgba(11, 15, 25, 0.7) 100%);
}
.hero-content {width:100%}
.case-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.stat-box {
    background: #161b28;
    border: 1px solid #2d364d;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}
.stat-box .label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}
.stat-box .value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.stat-box .value.text {font-size: 16px;}
@media (min-width: 0px) and (max-width: 900px) {
    #hero-cases {padding:50px 0px}
    .case-stats-grid {grid-template-columns: repeat(1,1fr);}
}

/*О компании*/
#about-cases {
    padding:100px 0px;
    background: #fff;
    color: var(--text-dark);
}
#about-cases .about-intro {margin-bottom: 0px;}
#about-cases .accent-text {margin-top: 20px;}
#about-cases .section-subtitle {text-align: left;}
@media (min-width: 0px) and (max-width: 900px) {
    #about-cases {padding:70px 0px}
}

/*Что было сделано*/
#sdelali {
    padding:100px 0px;
    background: var(--bg-light);
    color: var(--text-dark);
}
.approach-card.keys {background: #ffffff;}
#sdelali .approach-grid {grid-template-columns: repeat(2, 1fr);}
@media (min-width: 0px) and (max-width: 900px) {
    #sdelali .approach-grid {grid-template-columns: repeat(1, 1fr);}
    #sdelali {padding:70px 0px}
}

/*Что делаем сейчас*/
#delaem {
    padding:100px 0px;
    background: #fff;
    color: var(--text-dark);
}
.check-list {
    list-style: none;
    margin-top: 20px;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #475569;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--btn-color);
    font-weight: 900;
}
#delaem .philosophy-box p {
    font-size: 1rem;
    color: #475569;
    margin-top:15px;
}
#delaem .about-intro {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 0px;
}
@media (min-width: 0px) and (max-width: 900px) {
    #delaem .about-intro {
        grid-template-columns: repeat(1,1fr);
        gap: 40px;
    }
    #delaem {padding:70px 0px}
}
    

/* Итоги */
#itogi {
    padding:100px 0px;
    background: #0b0f19;
}
#itogi .section-title {color:#fff}
.progress-fill.cyan {width: 100%}
.cyan.progress-target {left: 82%;}
.progress-fill.pink {width: 100%}
.pink.progress-target {left: 100%;}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto;
}
.bento-item { 
    background: #161b28; 
    border: 1px solid #2d364d; 
    border-radius: 40px; 
    padding: 50px; 
    backdrop-filter: blur(20px);
}
.bento-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #64748b;
    font-weight: 700;
}
.bento-label.accent {
    color: var(--btn-color);
}
.huge-number {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.unit {
    font-size: 1.2rem;
    color: #64748b;
    margin-left: 10px;
}
.stat-footer-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 25px;
    line-height: 1.5;
}
/* Прогресс-бары */
.progress-line {
    height: 4px;
    border-radius: 10px;
    position: relative;
    margin-top: 15px;
}
.progress-fill.cyan {
    background: #aa699d;
    height: 4px;
}
.progress-fill.pink {
    background: #aa699d;
    height: 4px;
}
.progress-target {
    position: absolute;
    top: -10px;
    width: 5px;
    height: 22px;
    background: #fff;
}
.progress-target::after {
    content: attr(data-label);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}
/* Инсайт */
.insight-item {grid-column: span 2;}
.insight-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}
.insight-title h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}
.insight-title h3 span {color: var(--btn-color);}
.insight-text p {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
}
.res-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--btn-color);
    font-weight: 900;
    margin-bottom: 5px;
    display: block;
}
.insight-footer {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(170, 105, 157, 0.03);
    border: 1px solid rgba(170, 105, 157, 0.1);
    border-radius: 24px;
    margin-top: 10px;
}
.footer-icon {
    width: 24px;
    height: 24px;
    color: var(--btn-color);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.footer-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.res-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--btn-color);
    font-weight: 900;
}
.footer-text p {color: #fff}
@media (min-width: 0px) and (max-width: 900px) {
    #itogi {padding:70px 0px}
    .bento-grid, .insight-grid {grid-template-columns: 1fr;}
    .insight-item {grid-column: span 1;}
    .huge-number {font-size: 3.5rem;}
    .insight-footer {
        display: grid;
        gap: 20px;
        align-items: flex-start;
        padding: 0;
        background: transparent;
        border: 0px solid rgba(170, 105, 157, 0.1);
        border-radius: 0px;
        margin-top: 10px;
    }
}

/*ФОС*/
#final-cta-white {
    padding: 100px 0;
    background: #ffffff;
    margin: 0 auto;
    text-align: center;
}
#final-cta-white .section-subtitle {
    color: var(--btn-color);
    margin-bottom: 20px;
}
.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 25px;
}
.cta-title span {color: var(--btn-color);}
.cta-text {
    font-size: 1.2rem;
    color: #64748b;
    width:100%;
    max-width: 650px;
    margin: 0 auto 45px;
    line-height: 1.6;
}
.btn-large {
    height: 70px;
    padding: 0 50px;
    font-size: 1.2rem;
    gap: 15px;
    display: inline-flex;
    align-items: center;
}
.btn-large svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}
.btn-large:hover svg {transform: translateX(5px);}
@media (min-width: 0px) and (max-width: 900px) {
    #final-cta-white {padding: 70px 0;}
    .cta-title {font-size: 2.2rem;}
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    .btn-large {
        height: 60px;
        padding: 0 35px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}
/*КАТАЛОГ КЕЙСОВ*/
.cases-list {background:#eef0f3}
.cases-grid-minimal {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
}
/*Карточка*/
.case-card-text {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    height: 100%;
    overflow: hidden;
}
.case-card-text::after {
    content: attr(data-num);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: #f3f6f8;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}
.case-card-text:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
    border-color: var(--btn-color);
}
.case-card-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.case-card-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--btn-color);
    font-weight: 800;
    margin-bottom: 25px;
}
.case-card-text h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
}
/*Блок с главными цифрами*/
.case-card-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.card-stat-item {
    display: flex;
    flex-direction: column;
}
.card-stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}
.card-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 1px;
}
.case-card-text p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
}
/*Стрелка кнопка*/
.case-card-action {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1rem;
    color: #0f172a;
}
.case-card-action .circle-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.case-card-text:hover .circle-arrow {
    background: var(--btn-color);
    border-color: var(--btn-color);
    color: #fff;
    transform: rotate(-45deg);
}
.circle-arrow svg {
    width: 18px;
    height: 18px;
}
@media (min-width: 0px) and (max-width: 900px) {
    .cases-header-section h1 {
        font-size: 2.5rem;
    }
    .cases-grid-minimal {grid-template-columns: 1fr;}
    .case-card-text {padding: 40px 30px;}
    .case-card-stats {gap: 20px;}
    .card-stat-value {font-size: 1.4rem;}
}


/*AI*/
/*Hero*/
.hero.ai {background-image: url(/img/ai.jpg);}
/* Проблемы */
.section-light {
    background: #f8fafc;
    color: #0f172a;
    padding: 100px 0;
}
.problem-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}
.p-card-v2 {
    background: #fff;
    padding: 35px;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: 0.3s;
}
.p-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.p-card-v2 h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}
.p-card-v2 p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}
.p-icon-branded {
    width: 48px;
    height: 48px;
    background: rgba(170, 105, 157, 0.08);
    color: var(--btn-color);
    border: 1px solid rgba(170, 105, 157, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s ease;
}
.p-icon-branded svg {
    width: 22px;
    height: 22px;
}
.p-card-v2:hover .p-icon-branded {
    background: var(--btn-color);
    color: #fff;
    transform: rotate(90deg);
}
@media (min-width: 0px) and (max-width: 900px) {
    .section-light {padding: 70px 0;}
    .problem-grid-v2 {grid-template-columns: repeat(1, 1fr);}
}

/*Телега*/
.bots-vertical-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}
.chat-mini-ui {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}
.chat-mini-ui:hover {
    transform: translateX(-5px) scale(1.02);
    border-color: var(--btn-color);
}
.chat-ui-head {
    background: #f8fafc;
    padding: 8px 15px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--btn-color);
    border-bottom: 1px solid #f1f5f9;
}
.chat-ui-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.c-msg {
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 10px;
    line-height: 1.3;
    max-width: 90%;
}
.c-msg.bot {
    background: #f1f5f9;
    color: #475569;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.c-msg.user {
    background: var(--btn-color);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
@media (min-width: 0px) and (max-width: 900px) {
    .bots-vertical-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    .chat-mini-ui {width: 250px;}
}

/*Преимущества в каждом блоке услуг*/
.ai-features-stack {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 0px;
}
.ai-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: 0.3s ease;
}
.ai-feature-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--btn-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.ai-feature-icon svg {
    width: 24px;
    height: 24px;
}
.ai-feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ai-feature-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--btn-color);
}
.ai-feature-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
}
.ai-feature-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}
@media (min-width: 0px) and (max-width: 900px) {
    .ai-feature-item {
        flex-direction: column;
        gap: 15px;
    }
    .ai-feature-icon {
        width: 40px;
        height: 40px;
    }
}

/* Общие стили блока услуги */
.ai-help-section {
    background-color: #f4f7fa;
    padding: 100px 0;
    color: #0f172a;
}
.full-width-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 80px;
}
.service-strip-card {
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-strip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.05);
    border-color: var(--btn-color);
}
.strip-info {padding: 60px;}
.strip-visual {
    background: #f8fafc;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f1f5f9;
}
.strip-icon {
    width: 44px; height: 44px;
    color: var(--btn-color);
    margin-bottom: 25px;
}
.strip-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 15px;
}
.strip-info h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}
.strip-info p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
}
.strip-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
.strip-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #1e293b;
}
.strip-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--btn-color);
    font-weight: 900;
}
.strip-list b {color: #000;}
.ba-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}
.ba-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.6rem;
    padding: 4px 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
}
.ba-badge.pink {background: var(--btn-color);}
@media (min-width: 0px) and (max-width: 900px) {
    .service-strip-card {grid-template-columns: 1fr;}
    .strip-visual {
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding: 60px 30px;
    }
    .strip-info {padding: 40px 30px;}
    .strip-info h3 {font-size: 1.8rem;}
    .ai-help-section {padding: 70px 0;}
}




/* --- МОБИЛЬНАЯ ВЕРСИЯ ОБЩАЯ --- */
@media (max-width: 768px) {
    nav .nav-menu, nav .btn-pill, nav .btn-outline {display: none !important;}
    /* Контейнер шапки: лого слева, контакты справа */
    nav .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
        gap: 15px;
    }
    .logo {
		font-size: 0.8rem !important;
        flex-shrink: 0; /* Не сжимать логотип */
    }
    .logo span {
		display: inline-block !important;
        font-weight: 300;
        margin-left: 5px;
        padding-left: 5px;
        border-left: 1px solid rgba(255,255,255,0.2);
    }
    /* Блок контактов: делаем компактным */
    nav .nav-contacts {
        display: flex !important;
        align-items: center !important;
        gap: 7px !important;
    }
    /* Телефон, который не "уплывает" */
    .nav-phone {
        display: block !important;
        font-size: 0.8rem !important;
        white-space: nowrap; /* Запрещаем перенос на другую строку */
    }
    .nav-tg {display: flex !important;}
    .nav-tg svg {
		width: 22px;
		height: 22px;
	}
    /* 2. ПЛАВАЮЩАЯ ШАПКА С КНОПКАМИ (появляется при скролле) */
    .mobile-sticky-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 25, 0.95);
        backdrop-filter: blur(15px);
        z-index: 1001;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%); /* Спрятана выше экрана */
        transition: transform 0.4s ease-out;
        display: block; /* Важно, чтобы JS мог ей управлять */
    }
    .mobile-sticky-header.active {transform: translateY(0);}/* Показываем панель */
    .mobile-sticky-header .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 15px;
    }
    .mobile-sticky-header .btn-pill {
        height: 40px !important;
        padding: 0 !important;
        font-size: 0.75rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    [data-aos] {
        /* Иногда анимация сдвига на мобилке вызывает дерганье */
        /* Если проблема останется, можно уменьшить дальность полета */
        transform: translate(0) !important; 
        opacity: 1 !important;
        transition: none !important;
        /* Раскомментируйте строки выше, если хотите отключить анимацию вылета на телефоне для стабильности */
    }
}
/* На десктопе скрываем плавающую панель */
@media (min-width: 769px) {
	.mobile-sticky-header {display: none !important;}
}