

/* Start:/bitrix/templates/aspro-priority2/components/bitrix/catalog/my_keys/style.css?17847297151172*/
.grid{}
.grid .bx_content_section{
	margin-bottom: 15px;
}
.grid .bx_sidebar{
	margin-bottom: 15px;
}

/* grid2x1 */
.grid2x1{}
.grid2x1 .bx_content_section{
	float: left;
	width: 66%;
	margin-bottom: 15px;
}
.grid2x1 .bx_sidebar{
	float: right;
	width: 33%;
	margin-bottom: 15px;
	padding-left: 5%;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
@media (max-width:960px){
	.grid2x1 .bx_sidebar{
		padding-left: 4%;
	}
}
@media (max-width:640px) {
	.grid2x1 .bx_content_section,
	.grid2x1 .bx_sidebar{
		width: 100%;
		float: none;
	}
	.grid2x1 .bx_sidebar{
		padding-left: 3%;
	}
}
@media (max-width:479px){
	.grid2x1 .bx_sidebar{
		padding-left: 1%;
	}

}

.catalog-block-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

body.bx-theme-blue .catalog-block-header{border-color:#006cc0;}
body.bx-theme-green .catalog-block-header{border-color:#63aa28;}
body.bx-theme-red .catalog-block-header{border-color:#da3737;}
body.bx-theme-yellow .catalog-block-header{border-color:#f4b236;}
.flex-row-reverse{
	flex-direction: row-reverse;
}
/* End */


/* Start:/bitrix/templates/aspro-priority2/components/bitrix/catalog.element/keys-detail/style.css?178453142130423*/

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

        
/* ============================================
   TERRAZN.RU — Modern Industrial Design 2025
   Brand Colors: Pantone 261 C, 431 C, Purple C
   Font: Calibri (Light, Regular, Bold)
   ============================================ */

:root {
    --purple-primary: #660066;
    --purple-dark: #4a004a;
    --purple-light: #b44db4;
    --purple-gradient-start: #b44db4;
    --purple-gradient-end: #660066;
    --gray-primary: #545d6c;
    --gray-light: #8a94a3;
    --gray-dark: #3a4049;
    --white: #ffffff;
    --black: #1a1a1a;
    --bg-light: #f8f9fa;
    --bg-dark: #0f0f0f;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.18);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Calibri', 'Segoe UI', sans-serif;
    font-weight: 400;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.text-light { font-weight: 300; }
.text-regular { font-weight: 400; }
.text-bold { font-weight: 700; }

/* Container */
.container {
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 0, 102, 0.08);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gray-primary) 0%, var(--purple-primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background: white;
    transform: rotate(-45deg);
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background: white;
    transform: rotate(-45deg) translateY(-8px);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--gray-primary);
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-light));
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--purple-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(102, 0, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 0, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

.btn-outline:hover {
    background: var(--purple-primary);
    color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0e6f0 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 0, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(102, 0, 102, 0.08);
    border-radius: 100px;
    color: var(--purple-primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '⚡';
}

.hero h1 {
    color: var(--black);
    margin-bottom: 24px;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-primary);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 8px;
    font-weight: 300;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(102, 0, 102, 0.08);
    color: var(--purple-primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    color: var(--black);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray-primary);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ============================================
   TILES GRID (Объекты и Кейсы)
   ============================================ */
.tiles-section {
    background: var(--white);
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tile-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.tile-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.tile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 0, 102, 0.6) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.tile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.tile-card:hover::before {
    opacity: 0;
}

.tile-card:hover::after {
    opacity: 1;
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tile-card:hover .tile-image {
    transform: scale(1.1);
}

.tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    color: var(--white);
}

.tile-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tile-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.tile-card:hover .tile-desc {
    max-height: 100px;
    margin-top: 8px;
}

.tile-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateX(-10px);
}

.tile-card:hover .tile-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--purple-primary);
}

.tile-arrow svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

/* ============================================
   CATEGORY HUB PAGE (2 уровень)
   ============================================ */
.hub-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hub-hero-content {
    position: relative;
    z-index: 1;
}

.hub-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.hub-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    opacity: 0.5;
}

/* Sub-hubs Grid */
.subhubs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.subhub-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.subhub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple-primary), var(--purple-light));
    transition: var(--transition-smooth);
}

.subhub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.subhub-card:hover::before {
    width: 6px;
}

.subhub-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(102, 0, 102, 0.1), rgba(180, 77, 180, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.subhub-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.subhub-desc {
    color: var(--gray-primary);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.subhub-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(102, 0, 102, 0.08);
    color: var(--purple-primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Object List (3 level) */
.objects-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.object-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.object-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.object-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.object-content {
    padding: 24px;
}

.object-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(102, 0, 102, 0.08);
    color: var(--purple-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.object-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.object-excerpt {
    font-size: 0.9rem;
    color: var(--gray-primary);
    font-weight: 300;
    line-height: 1.5;
}

/* ============================================
   CAROUSELS (Товары, Кейсы, Продукты)
   ============================================ */
.carousel-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.carousel-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--purple-primary);
    background: var(--white);
    color: var(--purple-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--purple-primary);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 4px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0e6f0, #e6e6f0);
}

.product-content {
    padding: 24px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--purple-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--gray-primary);
    font-weight: 300;
    margin-bottom: 16px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--purple-primary);
}

/* Case Card (for carousel) */
.case-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.case-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--purple-primary);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.case-content {
    padding: 24px;
}

.case-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-light);
}

.case-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.case-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(102, 0, 102, 0.05);
    border-radius: 12px;
    margin-top: 16px;
}

.case-result-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.case-result-text {
    font-size: 0.85rem;
    color: var(--gray-primary);
    font-weight: 300;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
    padding: 80px 0;
    color: black;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--theme-base-color);
    color: white;
    width: 100vw;
    left: 0;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: -80px;
}
.cta-section h2{
    color: white;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--purple-primary);
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--purple-light);
    font-weight: 300;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.6;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--purple-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-light);
}
.main .banner-auto{
	margin-bottom: 0;
}
.result-span{
	overflow-wrap: break-word;    /* Современный аналог */
    white-space: normal; 
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .objects-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        display: none;
    }
    .tiles-grid {
        grid-template-columns: 1fr;
    }
    .subhubs-grid {
        grid-template-columns: 1fr;
    }
    .objects-list {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .nav {
        display: none;
    }
    .carousel-item {
        flex: 0 0 280px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }


        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', 'Segoe UI', 'Calibri', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 400;
            color: #1a1a1a;
            background: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::selection {
            background: rgba(102, 0, 102, 0.2);
            color: #660066;
        }

        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #660066;
            border-radius: 4px;
        }

        html { scroll-behavior: smooth; }

        .mobile-menu-btn {
            display: none;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #660066;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: flex; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .magnetic-btn:hover {
            transform: scale(1.05);
        }

        .glow:hover {
            box-shadow: 0 0 40px rgba(102, 0, 102, 0.5);
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Case-specific styles */
        .case-hero {
            color: black;
            position: relative;
            overflow: hidden;
        }

        .case-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .case-meta-bar {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 24px;
            position: relative;
            z-index: 1;
        }

        .case-meta-item {
            display: flex;
            flex-direction: column;
        }

        .case-meta-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 4px;
        }

        .case-meta-value {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .case-gallery {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 16px;
            margin: 48px 0;
        }

        .gallery-main {
            max-height: 400px;
            grid-row: span 2;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        .gallery-thumb {
            border-radius: 16px;
            overflow: hidden;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            max-height: 190px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
		.gallery-thumb img, .gallery-main img{
			width: 100%;
			height: 100%;
		}
        .gallery-thumb:hover {
            transform: scale(1.05);
        }
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 32px 0;
        }

        .result-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .result-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .result-number {
            font-size: 2rem;
            font-weight: 700;
            color: #660066;
            line-height: 1;
        }

        .result-label {
            font-size: 0.85rem;
            color: #545d6c;
            margin-top: 8px;
            font-weight: 300;
        }

        .products-used {
            background: linear-gradient(135deg, rgba(102,0,102,0.03), rgba(180,77,180,0.03));
            border-radius: 20px;
            padding: 32px;
            margin: 40px 0;
        }

        .products-used-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .product-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: white;
            border-radius: 100px;
            margin: 8px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            font-size: 0.9rem;
            color: #3a4049;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-tag:hover {
            background: #660066;
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .case-gallery { grid-template-columns: 1fr; }
            .gallery-main { grid-row: span 1; min-height: 250px; }
            .results-grid { grid-template-columns: repeat(2, 1fr); }
        }
/* End */


/* Start:/bitrix/templates/aspro-priority2/components/bitrix/catalog.section/catalog_block_n/style.min.css?17624309631596*/
.catalog-block__item{--padding:24px;padding:var(--padding);height:100%;}.catalog-block__inner{position:relative;}.catalog-block__item .catalog-block__item--img-corner{width:auto;margin:-24px -24px 0;}.catalog-block__info-bottom .catalog-block__info-btn{min-width:0;}.catalog-block__item .catalog-block__item--img-corner .sticker{top:24px;left:24px;}.catalog-block__item .catalog-block__item--img-corner img{border-radius:var(--theme-outer-border-radius) var(--theme-outer-border-radius) 0 0;}.grid-list--no-gap .catalog-block__item .catalog-block__item--img-corner img{border-radius:0;}.catalog-block__item .catalog-block__item--img-corner .countdown-list-image{left:24px;}body .catalog-block__info{margin-top:16px;flex-basis:auto;}.catalog-block__info-bottom{margin-top:16px;position:relative;}.catalog-block__item:hover .catalog-block__offers{opacity:1;visibility:visible;}@media (min-width:601px){.slider-solution .catalog-block__wrapper{width:50%}}@media (min-width:768px){.slider-solution .catalog-block__wrapper{width:33.33%}.catalog-block__wrapper{position:relative}.catalog-block__wrapper:hover{z-index:5}html:not(.mobile) .catalog-block__offers{opacity:0;visibility:hidden;position:absolute;top:100%;left:calc(calc(var(--padding) * -1) - 1px);right:calc(calc(var(--padding) * -1) - 1px);background-color:var(--card_bg_hover_black);box-shadow:0 14px 18px rgba(0,0,0,.1);border-radius:0 0 var(--theme-outer-border-radius) var(--theme-outer-border-radius);padding:0 var(--padding) var(--padding) var(--padding)}}@media (min-width:1200px){.slider-solution .catalog-block__wrapper{width:25%}}
/* End */


/* Start:/bitrix/templates/aspro-priority2/components/bitrix/catalog.element/keys-detail/themes/blue/style.min.css?1783323453902*/
.bx-blue .product-item-image-slider-progress-bar{background-color:#0083d1}.bx-blue .product-item-image-slider-control:hover{background-color:rgba(0,131,209,.8)}.bx-blue .product-item-image-slider-control.active,.bx-blue .product-item-image-slider-control:hover{background-color:#0083d1}.bx-blue .product-item-selected-scu,.bx-blue .product-item-detail-slider-controls-image:hover,.bx-blue .product-item-detail-slider-controls-image.active{outline-color:#006cc0}.bx-blue .product-item-scu-item-text-block:hover,.bx-blue .product-item-scu-item-color-block:hover,.bx-blue .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,.bx-blue .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{outline-color:#006cc0}.bx-blue .product-item-amount-field:focus{border-color:#006cc0}.bx-blue .product-item-detail-slider-progress-bar{background-color:#006cc0}
/* End */
/* /bitrix/templates/aspro-priority2/components/bitrix/catalog/my_keys/style.css?17847297151172 */
/* /bitrix/templates/aspro-priority2/components/bitrix/catalog.element/keys-detail/style.css?178453142130423 */
/* /bitrix/templates/aspro-priority2/components/bitrix/catalog.section/catalog_block_n/style.min.css?17624309631596 */
/* /bitrix/templates/aspro-priority2/components/bitrix/catalog.element/keys-detail/themes/blue/style.min.css?1783323453902 */
