  :root {
            --bg-primary: #0F1115;
            --bg-secondary: #161A22;
            --accent-primary: #2EC4B6;
            --accent-cta: #FFD166;
            --text-primary: #FFFFFF;
            --text-secondary: #fff;
            --border-line: #242836;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
         body {
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
		
		
		
		html{
            scroll-behavior: smooth;
        }
		
      .header-main {
        background: rgba(22, 26, 34, 0.6);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-line);
        padding: 16px 0;
        font-size: 15px;
        position: relative;
        z-index: 997;
    }
    .header-main .header-wrap {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        box-sizing: border-box;
    }
    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 32px;
        color: var(--text-secondary);
    }
    .header-center .header-address {
        white-space: nowrap;
    }
    .header-center .header-socials {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .header-center .header-socials a {
        font-size: 20px;
        color: var(--text-secondary);
        transition: color 0.3s ease;
    }
    .header-center .header-socials a:hover {
        color: var(--accent-primary);
    }
    .header-left {
        display: flex;
        align-items: center;
    }
    .header-logo {
        font-size: 28px;
        font-weight: 900;
        letter-spacing: 1px;
        white-space: nowrap;
        color: var(--text-primary);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: 32px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .header-phones {
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: right;
    }
    .header-phones a {
        font-weight: 600;
        color: var(--text-primary);
        transition: color 0.3s ease;
        white-space: nowrap;
    }
    .header-phones a:hover {
        color: var(--accent-primary);
    }
    .header-callback-btn {
        padding: 12px 28px;
        background: var(--accent-cta);
        color: #0F1115;
        font-weight: 700;
        border-radius: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    .header-callback-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 209, 102, 0.3);
    }
    .header-burger-btn {
        display: none;
        font-size: 32px;
        background: none;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
    }
    .header-mobile-logo {
        display: none;
        font-size: 26px;
        font-weight: 900;
        letter-spacing: 1px;
        color: var(--text-primary);
        white-space: nowrap;
    }
    .site-nav {
        padding: 20px 0;
        border-bottom: 1px solid var(--border-line);
        background: rgba(22, 26, 34, 0.9);
        backdrop-filter: blur(12px);
        transition: all 0.3s ease;
    }
    .site-nav.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 998;
        border-bottom: none;
        padding: 16px 0;
    }
    .site-nav .header-wrap {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    .site-nav ul {
        display: flex;
        justify-content: center;
        gap: 48px;
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
    }
    .site-nav a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
    }
    .site-nav a:hover {
        color: var(--accent-primary);
    }
    .site-nav a::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--accent-primary);
        transition: width 0.3s ease;
    }
    .site-nav a:hover::after {
        width: 100%;
    }
    .mobile-menu-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bg-primary);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        padding: 100px 20px 60px;
    }
    .mobile-menu-panel.active {
        transform: translateY(0);
    }
    .mobile-menu-panel ul {
        list-style: none;
        text-align: center;
        margin: 0 0 60px;
        padding: 0;
    }
    .mobile-menu-panel li {
        margin: 16px 0;
    }
    .mobile-menu-panel a {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .mobile-menu-panel a:hover {
        color: var(--accent-primary);
    }
    .mobile-menu-panel .header-phones {
        text-align: center;
        margin-bottom: 30px;
    }
    .mobile-menu-panel .header-phones a {
        font-size: 24px;
        font-weight: 700;
        color: var(--text-primary);
    }
    .mobile-menu-panel .header-callback-btn {
        padding: 14px 36px;
        font-size: 18px;
    }
    .mobile-menu-close-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 40px;
        background: none;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
    }

    @media (max-width: 992px) {
        .header-center,
        .header-right,
        .header-left {
            display: none;
        }

        .header-main .header-wrap {
            position: relative;
            padding: 0;
            max-width: none;
            margin: 0;
        }

        .header-mobile-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 16px;
            box-sizing: border-box;
        }

        .header-mobile-logo {
            display: block;
            font-size: 26px;
        }

        .header-burger-btn {
            display: block;
            font-size: 32px;
            flex-shrink: 0;
        }

        .header-main {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 997;
        }

        body {
            padding-top: 78px;
			overflow-x: hidden;
        }

        .site-nav {
            display: none;
        }
    }
		
	@media (max-width: 992px) {

    .header-main {
        width: 100vw;
        left: 0;
        right: 0;
    }

    .header-main .header-wrap {
        position: relative;
        width: 100%;
        padding: 14px 0;
    }

    /* Логотип слева */
    .header-mobile-logo {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        max-width: calc(100vw - 96px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Бургер справа */
    .header-burger-btn {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
    }

    /* ГЛАВНОЕ — flex больше не управляет шириной */
    .header-main .header-wrap {
        display: block;
    }

    body {
        overflow-x: hidden;
    }
}



		
		
		
		
		
		
		
		
		
        /* Hero с видео-фоном */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
			background: url('/userfiles/images/fon-bg-2.webp') center/cover no-repeat fixed;
        }
		.hero::before {
          content: '';
        position: absolute;
        inset: 0;
        background: rgba(15, 17, 21, 0.7);
        z-index: 0;
        }
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        .hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .hero-left {
            opacity: 0;
            transform: translateY(60px);
            animation: fadeUp 1s ease forwards 0.3s;
        }
        .hero h2, .hero h1  {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 32px;
        }
        .hero-subtitle {
            font-size: 24px;
            color: var(--text-secondary);
            margin-bottom: 48px;
            max-width: 600px;
        }
        .hero-buttons {
            display: flex;
            gap: 24px;
        }
        .cta-main {
            padding: 20px 40px;
            background: var(--accent-cta);
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            border-radius: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255, 209, 102, 0.3);
        }
        .cta-main:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(255, 209, 102, 0.4);
			color: #0F1115;
        }
        .cta-wa {
            justify-content: center;
            padding: 20px 40px;
            background: #27A7E7;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        .cta-wa:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(46, 196, 182, 0.3);
			color: #0F1115;
        }
        .hero-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            opacity: 0;
            transform: translateY(60px);
            animation: fadeUp 1s ease forwards 0.6s;
        }
        .adv-item {
            text-align: center;
            padding: 32px 24px;
            background: rgba(22, 26, 34, 0.6);
            border-radius: 20px;
            border: 1px solid var(--border-line);
            transition: all 0.4s ease;
        }
        .adv-item:hover {
            transform: translateY(-12px);
            border-color: var(--accent-primary);
            box-shadow: 0 20px 40px rgba(46, 196, 182, 0.1);
        }
        .adv-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent-primary);
        }
        .adv-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .adv-text {
            font-size: 16px;
            color: var(--text-secondary);
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Адаптив */
        @media (max-width: 1024px) {
            .top-center {
                position: static;
                transform: none;
                order: 3;
                margin-top: 16px;
            }
            .top-bar .container {
                justify-content: center;
                text-align: center;
            }
            .top-left, .top-right {
                flex-direction: column;
                gap: 16px;
            }
            .phones {
                text-align: center;
            }
            .hero .container {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-right {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
           .hero .container {
                padding: 20px 20px 60px;
            }
            .top-bar .container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
			  .container {
            padding: 0 10px;
            max-width: none;
        }
            .top-left {
                order: 2;
                width: 100%;
                justify-content: center;
                gap: 20px;
            }
            .top-right {
                order: 1;
                width: 100%;
                justify-content: center;
            }
            .top-center {
                order: 3;
                margin-top: 8px;
            }
            .main-nav ul {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .hero h2, .hero h1 {
                font-size: 40px;
            }
            .hero-subtitle {
                font-size: 20px;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-right {
                grid-template-columns: 1fr 1fr;
            }
           .adv-item {
            padding: 22px 14px;
        }
        .adv-icon {
            font-size: 20px;
        }
        .adv-title {
            font-size: 16px;
        }
        .adv-text {
            font-size: 14px;
        }
      }
	  
	  
	  
	  
	  
	  
	  
	  
	  
	  
	  
	  
	  
	  
	   .why-section {
        padding: 140px 20px;
        background: #fff;
        position: relative;
        overflow: hidden;
    }
    .why-section .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }
    .why-header {
		background: rgba(0, 0, 0, 0.7);
        border: 2px solid #E2E8F0;
        border-radius: 24px;
        padding: 18px 40px;
        grid-column: 1 / 3;
        text-align: left;
        opacity: 0;
        transform: translateY(60px);
        animation: fadeUp 1s ease forwards 0.3s;
        position: relative;
        z-index: 3;
    }
	.why-header:hover {
        transform: translateY(-16px) scale(1.03);
        border-color: var(--accent-primary);
        box-shadow: 0 30px 60px rgba(46, 196, 182, 0.15);
    }
    .why-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: #2AF4E3;
        margin-bottom: 24px;
    }
    .why-header p {
        font-size: 24px;
        color: #fff;
        max-width: 900px;
    }
    .why-header-image {
        position: absolute;
        left: -10%;
        top: 25%;
        transform: translateY(-50%) rotate(8deg); 
        width: 800px;
        opacity: 0.3; 
        z-index: 1; 
        pointer-events: none;
        animation: slideInLeftFixed 1.5s ease forwards 0.6s;
    }
    .why-header-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    @keyframes slideInLeftFixed {
        from {
            opacity: 0;
            transform: translateX(-100%) translateY(-50%) rotate(8deg);
        }
        to {
            opacity: 0.3;
            transform: translateX(0) translateY(-50%) rotate(8deg);
        }
    }
    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 40px;
    }
    .why-card {
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid #E2E8F0;
        border-radius: 24px;
        padding: 18px 40px;
        display: flex;
        align-items: center;
        gap: 40px;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(60px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    .why-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .why-card:hover {
        transform: translateY(-16px) scale(1.03);
        border-color: var(--accent-primary);
        box-shadow: 0 30px 60px rgba(46, 196, 182, 0.15);
    }
    .why-card-content {
        flex: 1;
    }
    .why-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: #FFD166;
        margin-bottom: 20px;
    }
    .why-card p {
        font-size: 18px;
        line-height: 1.5;
        color: #fff;
    }
    .why-icon {
        font-size: 80px;
        color: var(--accent-primary);
        flex-shrink: 0;
    }
	 .why-icon img{
        width: 100px;
        height: auto;
    }
    .why-wide-row {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Адаптив */
    @media (max-width: 1024px) {
        .why-header {
            grid-column: 1 / -1;
        }
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .why-wide-row {
            grid-template-columns: 1fr;
        }
        .why-header h2 {
            font-size: 44px;
        }
        .why-header p {
            font-size: 22px;
        }
        .why-card {
            padding: 40px 32px;
            gap: 32px;
        }
        .why-icon {
            font-size: 70px;
        }
        .why-header-image {
            position: static;
            transform: none;
            width: 100%;
            max-width: 500px;
            margin: 40px auto 0;
            opacity: 0.4;
            animation: fadeUp 1s ease forwards 0.6s;
        }
        .why-header-image img {
            transform: none;
        }
    }
    @media (max-width: 768px) {
        .why-section {
            padding: 20px 20px 100px;
        }
        .why-header h2 {
            font-size: 36px;
			margin: 0 20px;
        }
        .why-header p {
            font-size: 20px;
			margin: 0 20px;
        }
        .why-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .why-wide-row {
            grid-template-columns: 1fr;
            gap: 16px;
        }
        .why-card {
            flex-direction: column;
            text-align: center;
            padding: 40px 28px;
            gap: 24px;
            margin: 0 auto;
        }
        .why-icon {
            font-size: 40px;
        }
        .why-card h3 {
            font-size: 18px;
        }
        .why-card p {
            font-size: 16px;
        }
        .why-grid, .why-wide-row {
            justify-content: center;
        }
        .why-card {
            width: 100%;
        }
        .why-header-image {
            max-width: 300px;
            opacity: 0.4;
        }
    }
	
	
	
	
	
	 .types-section {
        padding: 140px 20px;
        background: url('/userfiles/images/kinds-background_img.webp') center/cover no-repeat fixed;
        position: relative;
    }
    .types-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(15, 17, 21, 0.75);
        z-index: 0;
    }
    .types-section .container {
        position: relative;
        z-index: 1;
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        padding: 0 40px;
    }
    .types-header {
        text-align: center;
        margin-bottom: 60px;
    }
    .types-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .types-header p {
        font-size: 24px;
        color: var(--text-secondary);
        max-width: 800px;
        margin: 0 auto;
    }

    /* Кнопки-табы */
    .types-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 80px;
    }
    .types-tab {
        padding: 14px 28px;
        background: rgba(22, 26, 34, 0.6);
        border: 1px solid var(--border-line);
        border-radius: 16px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .types-tab.active {
        background: var(--accent-primary);
        color: #0F1115;
        border-color: var(--accent-primary);
    }
    .types-tab:hover:not(.active) {
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }

    .types-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 100px 40px;
        justify-items: center;
    }
    .type-card {
        background: rgba(22, 26, 32, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-line);
        border-radius: 24px;
        padding: 140px 32px 48px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        width: 100%;
        max-width: 420px;
        position: relative;
		top: 50px;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(60px);
    }
    .type-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .type-card:hover {
        transform: translateY(-16px);
        border-color: var(--accent-primary);
        box-shadow: 0 30px 60px rgba(46, 196, 182, 0.2);
    }

    /* Бейджи теперь под картинкой */
    .type-badges {
        display: block;
		position: relative;
		top: -30px;
		bottom: 20px;
        text-align: right;
        gap: 12px;
        z-index: 2;
    }
    .badge {
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        color: #0F1115;
        white-space: nowrap;
    }
    .badge-hit {
        background: #2EC4B6;
    }
    .badge-sale {
        background: var(--accent-cta);
    }

    .type-image {
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: auto;
        pointer-events: none;
    }
    .type-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    .type-name {
        font-size: 18px;
        font-weight: 800;
        color: var(--accent-cta);
        margin-bottom: 24px;
        text-align: center;
    }
    .type-specs {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
        font-size: 16px;
		line-height: 1;
        color: var(--text-primary);
    }
    .type-spec {
        display: flex;
        justify-content: space-between;
    }
    .type-spec span:first-child {
        color: var(--text-secondary);
    }
    .type-spec span:last-child {
        font-weight: 700;
    }

    /* Цена на одной строке */
    .type-price-wrapper {
        text-align: center;
        margin-bottom: 32px;
    }
    .type-price {
        display: inline-block;
        font-size: 32px; /* немного уменьшили для лучшего размещения */
        font-weight: 900;
        color: var(--accent-cta);
    }
    .old-price {
        display: inline-block;
        font-size: 22px;
        color: var(--text-secondary);
        text-decoration: line-through;
        margin-right: 12px;
        vertical-align: middle;
    }

    .type-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .type-btn-order {
        flex: 1;
        padding: 10px;
        background: var(--accent-primary);
        color: #0F1115;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        border-radius: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(46, 196, 182, 0.3);
        text-decoration: none;
    }
    .type-btn-order:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(46, 196, 182, 0.4);
    }
    .type-details {
        font-size: 20px;
        color: var(--accent-primary);
        text-decoration: none;
        border-bottom: 1px dashed var(--accent-primary);
        white-space: nowrap;
    }
    .type-details::after {
        content: ' ›';
        margin-left: 4px;
    }
    .type-details:hover {
        color: var(--text-primary);
        border-bottom-color: var(--text-primary);
    }

    /* Адаптив */
    @media (max-width: 1024px) {
        .types-header h2 {
            font-size: 44px;
        }
        .types-header p {
            font-size: 22px;
        }
        .types-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .type-image {
            width: 260px;
            top: -100px;
        }
        .type-card {
            padding: 120px 32px 48px;
        }
    }

    @media (max-width: 768px) {
        .types-section {
            padding: 100px 0;
            background-attachment: scroll;
        }

        .types-section .container {
            padding: 0 10px;
            max-width: none;
        }

        .types-header {
            padding: 0;
        }

        .types-tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 0 0 80px 0;
            max-width: none;
        }
        .types-tab {
            padding: 16px 10px;
            font-size: 15px;
            justify-self: stretch;
        }
        .types-tab:nth-child(5) {
            grid-column: 1 / -1;
            justify-self: stretch;
        }

        .types-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0;
        }

        .type-card {
			top: -70px;
            padding: 220px 20px 48px;
            width: 100%;
            max-width: none;
            margin: 0;
            border-radius: 20px;
        }
        .type-image {
            width: 280px;
            top: 0;
        }
        .type-badges {
            top: -20px;
			bottom: 20px;
        }
        .type-name {
            font-size: 22px;
        }
        .type-specs {
            font-size: 15px;
        }
        .type-price {
            font-size: 28px;
        }
        .old-price {
            font-size: 20px;
        }
        .type-actions {
            flex-direction: column;
            gap: 16px;
        }
        .type-btn-order {
            width: 100%;
        }
        .type-details {
            align-self: center;
        }
    }
	
	
	
	
	
	
	   .process-section {
        padding: 140px 20px;
        background: #fff;
        position: relative;
        overflow: hidden;
    }
    .process-section .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }
    .process-header {
        text-align: center;
        margin-bottom: 120px;
    }
    .process-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .process-header p {
        font-size: 24px;
        color: #000;
        max-width: 800px;
        margin: 0 auto;
    }
    .process-steps {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }
    .process-steps::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--border-line);
        z-index: 1;
    }
    .process-steps::after {
        content: '';
        position: absolute;
        top: 80px;
        left: 0;
        width: 0;
        height: 6px;
        background: var(--accent-primary);
        z-index: 2;
        transition: width 1.5s ease;
    }
    .process-section.visible .process-steps::after {
        width: 100%;
    }
    .step {
        flex: 1;
        text-align: center;
        position: relative;
        z-index: 3;
        opacity: 0;
        transform: translateY(60px);
        transition: all 0.8s ease;
    }
    .process-section.visible .step {
        opacity: 1;
        transform: translateY(0);
    }
    .process-section.visible .step:nth-child(1) { transition-delay: 0.3s; }
    .process-section.visible .step:nth-child(2) { transition-delay: 0.6s; }
    .process-section.visible .step:nth-child(3) { transition-delay: 0.9s; }
    .process-section.visible .step:nth-child(4) { transition-delay: 1.2s; }
    .process-section.visible .step:nth-child(5) { transition-delay: 1.5s; }
    .step-circle {
        width: 160px;
        height: 160px;
        background: var(--bg-primary);
        border: 8px solid var(--accent-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 40px;
        font-size: 80px;
        color: var(--accent-primary);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.4s ease;
    }
    .step:hover .step-circle {
        transform: scale(1.1);
        box-shadow: 0 30px 60px rgba(46, 196, 182, 0.3);
    }
    .step-number {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 60px;
        height: 60px;
        background: var(--accent-cta);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 900;
        color: #0F1115;
    }
	 .step-content {
            padding: 0 20px;
        }
    .step h3 {
        font-size: 24px;
        font-weight: 800;
        color: #000;
        margin-bottom: 20px;
    }
    .step p {
        font-size: 18px;
        color: #000;
        max-width: 280px;
        margin: 0 auto;
    }
    .process-bg-image {
        position: absolute;
        right: -5%;
        top: 25%;
        transform: translateY(-50%) rotate(-8deg); 
        width: 600px;
        opacity: 0.5; 
        z-index: 1;
        pointer-events: none;
        animation: slideInRight 1.8s ease forwards 0.6s;
    }
    .process-bg-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(100%) translateY(-50%) rotate(-8deg);
        }
        to {
            opacity: 0.25;
            transform: translateX(0) translateY(-50%) rotate(-8deg);
        }
    }
    /* Адаптив */
    @media (max-width: 1024px) {
        .process-header h2 {
            font-size: 44px;
        }
        .process-header p {
            font-size: 22px;
        }
        .step-circle {
            width: 140px;
            height: 140px;
            font-size: 70px;
        }
        .step-number {
            width: 50px;
            height: 50px;
            font-size: 28px;
        }
        .process-bg-image {
            width: 500px;
        }
    }
    @media (max-width: 768px) {
        .process-section {
            padding: 100px 20px;
        }
        .process-header h2 {
            font-size: 36px;
        }
        .process-header p {
            font-size: 20px;
        }
        .process-steps {
            flex-direction: column;
            gap: 80px;
            align-items: flex-start;
        }
        .process-steps::before,
        .process-steps::after {
            content: none;
        }
        .process-steps-mobile-line {
            position: absolute;
            left: 80px;
            top: 0;
            width: 4px;
            height: 0;
            background: var(--border-line);
            z-index: 1;
            transition: height 1.5s ease;
        }
        .process-steps-mobile-progress {
            position: absolute;
            left: 80px;
            top: 0;
            width: 4px;
            height: 0;
            background: var(--accent-primary);
            z-index: 2;
            transition: height 1.5s ease;
        }
        .process-section.visible .process-steps-mobile-line {
            height: 100%;
        }
        .process-section.visible .process-steps-mobile-progress {
            height: 100%;
        }
        .step {
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .step-circle {
            width: 60px;
            height: 60px;
            font-size: 30px;
            margin: 0;
            flex-shrink: 0;
        }
        .step-number {
            width: 40px;
            height: 40px;
            font-size: 22px;
        }
        .step-content {
            flex: 1;
        }
        .step h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }
        .step p {
            font-size: 16px;
            max-width: none;
        }
        .process-bg-image {
            display: none; 
        }
    }
	
	
	
	
	
	
	
	   .calc-section {
        padding: 140px 20px;
        background: url('/userfiles/images/selection-background.webp') center/cover no-repeat fixed;
        position: relative;
    }
    .calc-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(15, 17, 21, 0.82);
        z-index: 0;
    }
    .calc-section .container {
        position: relative;
        z-index: 1;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .calc-header {
        text-align: center;
        margin-bottom: 100px;
    }
    .calc-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .calc-header p {
        font-size: 24px;
        color: var(--text-secondary);
        max-width: 800px;
        margin: 0 auto;
    }
    .calc-card {
        background: rgba(22, 26, 32, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-line);
        border-radius: 32px;
        padding: 80px 100px;
        max-width: 1000px;
        margin: 0 auto;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    }
    .calc-progress {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
    }
    .calc-step-indicator {
        width: 60px;
        height: 60px;
        background: var(--border-line);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
        color: var(--text-secondary);
        transition: all 0.4s ease;
    }
    .calc-step-indicator.active {
        background: var(--accent-primary);
        color: #0F1115;
        box-shadow: 0 0 0 8px rgba(46, 196, 182, 0.3);
    }
    .calc-step-indicator.completed {
        background: var(--accent-primary);
        color: #0F1115;
    }
    .calc-step {
        display: none;
    }
    .calc-step.active {
        display: block;
        animation: fadeIn 0.6s ease;
    }
    .calc-field {
        margin-bottom: 40px;
    }
    .calc-field label {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 16px;
    }

    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .radio-label {
        position: relative;
        display: flex;
        align-items: center;
        padding: 24px 32px 24px 80px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--border-line);
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 18px;
        color: var(--text-primary);
    }
    .radio-label:hover {
        border-color: var(--accent-primary);
        background: rgba(46, 196, 182, 0.1);
    }
    .radio-label input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }
    .radio-label::before {
        content: '';
        position: absolute;
        left: 32px;
        width: 28px;
        height: 28px;
        border: 2px solid var(--border-line);
        border-radius: 50%;
        background: transparent;
        transition: all 0.3s ease;
    }
    .radio-label::after {
        content: '';
        position: absolute;
        left: 38px;
        top: 50%;
        transform: translateY(-50%) scale(0);
        width: 16px;
        height: 16px;
        background: #0F1115;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }
    .radio-label input[type="radio"]:checked + span {
        font-weight: 600;
    }
    .radio-label:has(input[type="radio"]:checked) {
        border-color: var(--accent-primary);
        background: rgba(46, 196, 182, 0.1);
    }
    .radio-label:has(input[type="radio"]:checked)::before {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.3);
    }
    .radio-label:has(input[type="radio"]:checked)::after {
        transform: translateY(-50%) scale(1);
    }

    .calc-field input[type="text"],
    .calc-field input[type="tel"] {
        width: 100%;
        padding: 24px 32px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--border-line);
        border-radius: 20px;
        color: var(--text-primary);
        font-size: 18px;
        transition: all 0.3s ease;
    }
    .calc-field input:focus {
        outline: none;
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.2);
    }

    .calc-result {
        text-align: center;
        padding: 60px;
        background: rgba(46, 196, 182, 0.1);
        border-radius: 32px;
        margin: 60px 0;
        opacity: 0;
        transition: opacity 0.6s ease;
    }
    .calc-result.active {
        opacity: 1;
    }
    .calc-result-price {
        font-size: 72px;
        font-weight: 900;
        color: var(--accent-primary);
        margin-bottom: 20px;
    }
    .calc-result-text {
        font-size: 28px;
        color: var(--text-primary);
        margin-bottom: 40px;
    }
    .calc-btns {
        display: flex;
        justify-content: center;
        gap: 32px;
    }
    .calc-next,
    .calc-prev {
        padding: 24px 60px;
        font-size: 20px;
        font-weight: 700;
        border-radius: 24px;
        cursor: pointer;
        transition: all 0.4s ease;
    }
    .calc-prev {
        background: transparent;
        border: 3px solid var(--accent-primary);
        color: var(--accent-primary);
    }
    .calc-prev:hover {
        background: rgba(46, 196, 182, 0.1);
    }
    .calc-next {
        background: var(--accent-cta);
        color: #0F1115;
        border: none;
        box-shadow: 0 12px 30px rgba(255, 209, 102, 0.4);
    }
    .calc-next:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(255, 209, 102, 0.5);
    }
    .calc-submit {
        padding: 28px 80px;
        background: var(--accent-cta);
        color: #0F1115;
        font-size: 24px;
        font-weight: 900;
        border: none;
        border-radius: 32px;
        cursor: pointer;
        box-shadow: 0 20px 50px rgba(255, 209, 102, 0.5);
        transition: all 0.4s ease;
    }
    .calc-submit:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(255, 209, 102, 0.6);
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
        .calc-section {
            padding: 80px 16px;
        }
		.calc-section .container {
        width: 420px;
		margin-left: -45px;
        }
        .calc-header h2 {
            font-size: 36px;
        }
        .calc-header p {
            font-size: 20px;
        }
        .calc-card {
            padding: 48px 24px;
            background: rgba(22, 26, 32, 0.96); 
            border-radius: 24px;
            max-width: none;
            margin: 0;
        }
        .calc-progress {
            gap: 12px;
        }
        .calc-step-indicator {
            width: 48px;
            height: 48px;
            font-size: 22px;
        }
        .calc-result-price {
            font-size: 56px;
        }
        .calc-result-text {
            font-size: 24px;
        }
        .calc-btns {
            flex-direction: column;
            gap: 16px;
        }
        .calc-next,
        .calc-prev {
            padding: 20px 40px;
            font-size: 18px;
        }
        .calc-submit {
            padding: 24px 40px;
            font-size: 20px;
        }

        .radio-group {
            gap: 20px;
            width: 100%;
        }
        .radio-label {
            width: 100%;
            padding: 32px 40px 32px 100px;
            font-size: 18px;
            border-radius: 24px;
            justify-content: flex-start;
            box-sizing: border-box;
        }
        .radio-label::before {
            left: 40px;
            width: 32px;
            height: 32px;
        }
        .radio-label::after {
            display: none; 
        }
        .radio-label:has(input[type="radio"]:checked)::before {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 8px rgba(46, 196, 182, 0.3);
        }
    }

    @media (max-width: 480px) {
        .calc-card {
            padding: 40px 20px;
        }
        .radio-label {
            padding: 28px 32px 28px 92px;
        }
        .radio-label::before {
            left: 32px;
        }
    }
	
	
	
	
	
	  .advantages-section {
        padding: 140px 20px;
        background: #fff;
        position: relative;
        overflow: hidden;
    }
    .advantages-section .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }
    .advantages-header {
		background: rgba(0, 0, 0, 0.7);
        border: 2px solid #E2E8F0;
        border-radius: 24px;
        padding: 18px 40px;
        grid-column: 2 / 4;
        text-align: right;
        opacity: 0;
        transform: translateY(60px);
        animation: fadeUp 1s ease forwards 0.3s;
        position: relative;
        z-index: 3;
    }
	
    .advantages-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: #2AF4E3;
        margin-bottom: 24px;
    }
    .advantages-header p {
        font-size: 24px;
        color: #fff;
        max-width: 900px;
        margin-left: auto;
    }
    .advantages-header-image {
        position: absolute;
        right: 0;
        top: 30%;
        transform: translateY(-50%) rotate(-8deg);
        width: 700px;
        opacity: 0.5;
        z-index: 1;
        pointer-events: none;
        animation: slideInRightFixed 1.5s ease forwards 0.6s;
    }
    .advantages-header-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    @keyframes slideInRightFixed {
        from {
            opacity: 0;
            transform: translateX(100%) translateY(-50%) rotate(-8deg);
        }
        to {
            opacity: 0.3;
            transform: translateX(0) translateY(-50%) rotate(-8deg);
        }
    }
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 40px;
    }
    .advantages-card {
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid #E2E8F0;
        border-radius: 24px;
        padding: 18px 40px;
        display: flex;
        align-items: center;
        gap: 40px;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(60px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    .advantages-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .advantages-card:hover {
        transform: translateY(-16px) scale(1.03);
        border-color: var(--accent-primary);
        box-shadow: 0 30px 60px rgba(46, 196, 182, 0.15);
    }
    .advantages-card-content {
        flex: 1;
    }
    .advantages-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: #FFD166;
        margin-bottom: 20px;
    }
    .advantages-card p {
        font-size: 18px;
        line-height: 1.7;
        color: #fff;
    }
    .advantages-icon {
        font-size: 80px;
        color: var(--accent-primary);
        flex-shrink: 0;
    }
    .advantages-wide-row {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Адаптив */
    @media (max-width: 1024px) {
        .advantages-header {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 40px;
        }
        .advantages-header p {
            margin: 0 auto;
        }
        .advantages-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .advantages-wide-row {
            grid-template-columns: 1fr;
        }
        .advantages-header h2 {
            font-size: 44px;
        }
        .advantages-header p {
            font-size: 22px;
        }
        .advantages-card {
            padding: 40px 32px;
            gap: 32px;
        }
        .advantages-icon {
            font-size: 70px;
        }
        .advantages-header-image {
            position: static;
            transform: none;
            width: 100%;
            max-width: 500px;
            margin: 40px auto 0;
            opacity: 0.4;
            animation: fadeUp 1s ease forwards 0.6s;
        }
        .advantages-header-image img {
            transform: none;
        }
    }
    @media (max-width: 768px) {
        .advantages-section {
            padding: 100px 20px;
        }
        .advantages-header h2 {
            font-size: 36px;
        }
        .advantages-header p {
            font-size: 20px;
        }
        .advantages-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .advantages-wide-row {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .advantages-grid > .advantages-card:first-child {
            grid-column: 1 / -1;
        }
        .advantages-card {
            flex-direction: column;
            text-align: center;
            padding: 40px 28px;
            gap: 24px;
            margin: 0 auto;
            width: 100%;
            max-width: none;
        }
        .advantages-icon {
            font-size: 40px;
        }
        .advantages-card h3 {
            font-size: 18px;
        }
        .advantages-card p {
            font-size: 16px;
        }
        .advantages-grid, .advantages-wide-row {
            justify-content: center;
        }
        .advantages-header-image {
            max-width: 300px;
            opacity: 0.4;
        }
    }
	
	
	
	
	
	
	
	
	  .projects-section {
        padding: 140px 20px;
        background: #fff;
        position: relative;
    }
    .projects-section .container {
        position: relative;
        z-index: 1;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .projects-header {
        text-align: center;
        margin-bottom: 100px;
    }
    .projects-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .projects-header p {
        font-size: 24px;
        color: #000;
        max-width: 800px;
        margin: 0 auto;
    }
    .projects-swiper {
        max-width: 1200px;
        margin: 0 auto;
    }
    .project-slide {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }
    .project-before-after {
        display: flex;
        height: 600px;
    }
    .project-img {
        flex: 1;
        position: relative;
    }
    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .project-label {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: var(--text-primary);
        padding: 12px 24px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 20px;
    }
    .project-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        padding: 60px 40px 40px;
        color: var(--text-primary);
        text-align: center;
    }
    .project-city {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 12px;
    }
    .project-info {
        font-size: 20px;
        color: var(--text-secondary);
    }
    .projects-swiper .swiper-button-next,
    .projects-swiper .swiper-button-prev {
        width: 60px;
        height: 60px;
        background: rgba(46, 196, 182, 0.3);
        border: 2px solid var(--accent-primary);
        border-radius: 50%;
        color: var(--accent-primary);
    }
    .projects-swiper .swiper-button-next:after,
    .projects-swiper .swiper-button-prev:after {
        font-size: 32px;
    }
    .projects-swiper .swiper-button-next:hover,
    .projects-swiper .swiper-button-prev:hover {
        background: var(--accent-primary);
        color: #0F1115;
    }

    /* Адаптив */
    @media (max-width: 1024px) {
        .projects-header h2 {
            font-size: 44px;
        }
        .projects-header p {
            font-size: 22px;
        }
        .project-before-after {
            height: 500px;
        }
    }

    @media (max-width: 768px) {
        .projects-section {
            padding: 100px 0; 
        }

        
        .projects-section .container {
            padding: 0 10px;
            max-width: none;
        }

        .projects-header {
            padding: 0;
            margin-bottom: 80px;
        }
        .projects-header h2 {
            font-size: 36px;
        }
        .projects-header p {
            font-size: 20px;
        }

        .projects-swiper {
            max-width: none;
            margin: 0;
        }

        .project-before-after {
            flex-direction: column;
            height: auto;
        }
        .project-img {
            height: 300px;
        }
		 .project-img img{
            height: 250px;
        }
        .project-caption {
            position: static;
            background: rgba(0,0,0,0.8);
            padding: 32px 20px;
        }
        .project-city {
            font-size: 22px;
        }
        .project-info {
            font-size: 18px;
        }
        .projects-swiper .swiper-button-next,
        .projects-swiper .swiper-button-prev {
            width: 50px;
            height: 50px;
        }
        .projects-swiper .swiper-button-next:after,
        .projects-swiper .swiper-button-prev:after {
            font-size: 28px;
        }
    }
	
	
	
	
	
	   .comparison-section {
        padding: 140px 20px;
        background: var(--bg-secondary);
        position: relative;
        overflow: hidden;
    }
    .comparison-section .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }
    .comparison-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .comparison-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .comparison-header p {
        font-size: 24px;
        color: var(--text-secondary);
        max-width: 800px;
        margin: 0 auto;
    }
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
    .comparison-col {
        display: flex;
        flex-direction: column;
        opacity: 0;
        transition: all 1.2s ease;
    }
    .comparison-col.visible {
        opacity: 1;
    }
    .pit-col {
        transform: translateX(-100px);
    }
    .our-col {
        transform: translateX(100px);
    }
    .pit-col.visible {
        transform: translateX(0);
    }
    .our-col.visible {
        transform: translateX(0);
    }
    .comparison-col h3 {
        font-size: 36px;
        font-weight: 900;
        color: var(--text-primary);
        text-align: left;
		margin-bottom: 20px;
    }
    .comparison-image-wrapper {
        height: 300px;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    }
    .comparison-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .comparison-features {
        display: flex;
        flex-direction: column;
        gap: 0 40px;
    }
    .feature {
        display: flex;
        align-items: center;
        gap: 32px;
    }
    .feature-icon {
        font-size: 40px;
        flex-shrink: 0;
        width: 40px;
        text-align: center;
    }
    .feature-icon.check {
        color: var(--accent-primary);
    }
    .feature-icon.cross {
        color: #FF6B6B;
    }
    .feature-text {
        font-size: 24px;
        font-weight: 600;
        color: var(--text-primary);
    }
    .pit-col h3 {
        color: #FF6B6B;
    }
    .our-col h3 {
        color: var(--accent-primary);
    }
    .comparison-bg-image {
        position: absolute;
        right: 0;
        bottom: 100px;
        width: 700px;
        opacity: 0.25;
        z-index: 1;
        pointer-events: none;
    }
    .comparison-bg-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Адаптив */
    @media (max-width: 1024px) {
        .comparison-header h2 {
            font-size: 44px;
        }
        .comparison-header p {
            font-size: 22px;
        }
        .comparison-grid {
            gap: 60px;
        }
        .comparison-col h3 {
            font-size: 32px;
        }
        .comparison-image-wrapper {
            height: 400px;
        }
        .feature-text {
            font-size: 22px;
        }
        .feature-icon {
            font-size: 50px;
            width: 50px;
        }
        .comparison-bg-image {
            width: 500px;
        }
    }

    @media (max-width: 768px) {
        .comparison-section {
            padding: 100px 0; 
        }

        .comparison-section .container {
            padding: 0 10px;
            max-width: none;
        }

        .comparison-header {
            padding: 0;
            margin-bottom: 80px;
        }
        .comparison-header h2 {
            font-size: 36px;
        }
        .comparison-header p {
            font-size: 20px;
        }

        .comparison-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .comparison-image-wrapper {
            height: 150px;
        }
        .feature {
            gap: 24px;
        }
        .feature-text {
            font-size: 20px;
        }
        .feature-icon {
            font-size: 28px;
            width: 28px;
        }
        .comparison-bg-image {
            display: none;
        }
        .comparison-col {
            transform: translateY(60px);
        }
        .comparison-col.visible {
            transform: translateY(0);
        }
    }
	
	
	
	    .reviews-section {
        padding: 0 20px 140px;
        background: #fff;
        position: relative;
    }
    .reviews-section .container {
        position: relative;
        z-index: 1;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .reviews-header {
        text-align: center;
        margin-bottom: 100px;
    }
    .reviews-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .reviews-header p {
        font-size: 24px;
        color: #000;
        max-width: 800px;
        margin: 0 auto;
    }
    .reviews-swiper {
        max-width: 1200px;
        margin: 0 auto;
    }
    .swiper-wrapper {
        align-items: stretch;
    }
    .review-card {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-line);
        border-radius: 24px;
        padding: 48px 40px;
        height: 700px; 
        display: flex;
        flex-direction: column;
        transition: all 0.4s ease;
        box-sizing: border-box;
    }
    .review-card:hover {
        transform: translateY(-16px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }
    .review-header-card {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-bottom: 32px;
    }
    .review-photo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--accent-primary);
        flex-shrink: 0;
    }
    .review-author {
        flex: 1;
    }
    .review-name {
        font-size: 20px;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 8px;
    }
    .review-city {
        font-size: 18px;
        color: var(--text-secondary);
    }
    .review-media {
        position: relative;
        margin-bottom: 32px;
        border-radius: 20px;
        overflow: hidden;
        flex: 1; 
        min-height: 220px;
    }
    .review-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .review-video-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(46, 196, 182, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        color: #0F1115;
        transition: all 0.3s ease;
    }
    .review-media:hover .review-video-icon {
        transform: translate(-50%, -50%) scale(1.15);
    }
    .review-text {
        font-size: 18px;
        line-height: 1.7;
        color: var(--text-primary);
        margin-bottom: 12px;
    }
    .review-stars {
        font-size: 32px;
        color: var(--accent-cta);
        margin-top: auto;
        text-align: right;
    }

    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        width: 60px;
        height: 60px;
        background: rgba(46, 196, 182, 0.3);
        border: 2px solid var(--accent-primary);
        border-radius: 50%;
        color: var(--accent-primary);
    }
    .reviews-swiper .swiper-button-next:after,
    .reviews-swiper .swiper-button-prev:after {
        font-size: 32px;
    }
    .reviews-swiper .swiper-button-next:hover,
    .reviews-swiper .swiper-button-prev:hover {
        background: var(--accent-primary);
        color: #0F1115;
    }

    /* Адаптив */
    @media (max-width: 1024px) {
        .reviews-header h2 {
            font-size: 44px;
        }
        .reviews-header p {
            font-size: 22px;
        }
        .review-card {
            height: 580px;
        }
    }
    @media (max-width: 768px) {
		 .reviews-section {
            padding: 100px 0; 
        }
        .reviews-section .container {
            padding: 0 10px;
            max-width: none;
        }
        .reviews-header h2 {
            font-size: 36px;
        }
        .reviews-header p {
            font-size: 20px;
        }
        .review-card {
            height: 700px;
            padding: 40px 32px;
        }
        .review-header-card {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        .review-photo {
            width: 70px;
            height: 70px;
        }
        .review-name {
            font-size: 18px;
        }
        .review-city {
            font-size: 16px;
        }
        .review-text {
            font-size: 16px;
        }
        .review-stars {
            font-size: 28px;
        }
        .reviews-swiper .swiper-button-next,
        .reviews-swiper .swiper-button-prev {
            width: 50px;
            height: 50px;
        }
        .reviews-swiper .swiper-button-next:after,
        .reviews-swiper .swiper-button-prev:after {
            font-size: 28px;
        }
        .review-media {
            min-height: 250px;
        }
    }
	
	
	
	
	
	   .trust-section {
        padding: 140px 20px 60px;
        background: #fff;
        position: relative;
        overflow: hidden;
    }
    .trust-section .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }
    .trust-header {
        text-align: center;
        margin-bottom: 80px;
    }
    .trust-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .trust-header p {
        font-size: 24px;
        color: #000;
        max-width: 800px;
        margin: 0 auto;
    }
    .trust-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 100px;
    }
    .trust-item {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(12px);
        border: 2px solid var(--border-line);
        border-radius: 24px;
        padding: 40px 32px;
        text-align: center;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(60px);
    }
    .trust-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .trust-item:hover {
        transform: translateY(-16px);
        border-color: var(--accent-primary);
        box-shadow: 0 30px 60px rgba(46, 196, 182, 0.15);
    }
    .trust-img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        margin-bottom: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .trust-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
    }
    .brands-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 60px;
        align-items: center;
    }
    .brand-logo {
        opacity: 0.6;
        transition: opacity 0.4s ease;
        filter: grayscale(100%);
    }
    .brand-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }
    .brand-logo img {
        width: 100%;
        height: auto;
        max-height: 80px;
        object-fit: contain;
    }
    .trust-bg-image {
        position: absolute;
        left: -30%;
        top: -15%;
        width: 800px;
        opacity: 0.25;
        z-index: 1;
        pointer-events: none;
        transform: rotate(12deg); 
        animation: slideInTopLeft 1.8s ease forwards 0.6s;
    }
    .trust-bg-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    @keyframes slideInTopLeft {
        from {
            opacity: 0;
            transform: translateX(-100%) translateY(-100%) rotate(12deg);
        }
        to {
            opacity: 0.25;
            transform: translateX(0) translateY(0) rotate(12deg);
        }
    }

    /* Адаптив */
    @media (max-width: 1024px) {
        .trust-header h2 {
            font-size: 44px;
        }
        .trust-header p {
            font-size: 22px;
        }
        .trust-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .brands-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        .trust-bg-image {
            width: 500px;
        }
    }
    @media (max-width: 768px) {
		 .trust-section {
            padding: 100px 0; 
        }
        .trust-section .container {
            padding: 0 10px;
            max-width: none;
        }
        .trust-header h2 {
            font-size: 36px;
        }
        .trust-header p {
            font-size: 20px;
        }
        .trust-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .trust-item {
            padding: 32px 24px;
        }
        .brands-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .brand-logo img {
            max-height: 60px;
        }
        .trust-bg-image {
            display: none; 
        }
    }
	
	
	
	
	  .faq-section {
        padding: 140px 20px;
    
        position: relative;
    }
    .faq-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(15, 17, 21, 0.82);
        z-index: 0;
    }
    .faq-section .container {
        position: relative;
        z-index: 1;
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .faq-header {
        text-align: center;
        margin-bottom: 100px;
    }
    .faq-header h2 {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: var(--accent-primary);
        margin-bottom: 24px;
    }
    .faq-header p {
        font-size: 24px;
        color: var(--text-secondary);
        max-width: 800px;
        margin: 0 auto;
    }
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .faq-column {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .faq-item {
        background: rgba(22, 26, 32, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-line);
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    .faq-question {
        padding: 32px 40px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 22px;
        font-weight: 700;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }
    .faq-question:hover {
        color: var(--accent-primary);
    }
    .faq-question::after {
        content: '+';
        font-size: 36px;
        font-weight: 300;
        color: var(--accent-primary);
        transition: transform 0.4s ease;
    }
    .faq-item.active .faq-question::after {
        content: '−';
        transform: rotate(0);
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease, padding 0.6s ease;
        padding: 0 40px;
    }
    .faq-item.active .faq-answer {
        max-height: 500px; 
        padding: 0 40px 40px;
    }
    .faq-answer p {
        font-size: 18px;
        line-height: 1.7;
        color: var(--text-secondary);
    }

    /* Адаптив */
    @media (max-width: 1024px) {
        .faq-header h2 {
            font-size: 44px;
        }
        .faq-header p {
            font-size: 22px;
        }
        .faq-grid {
            gap: 40px;
        }
        .faq-question {
            font-size: 20px;
            padding: 28px 36px;
        }
    }
    @media (max-width: 768px) {
		.faq-section {
            padding: 100px 0; 
        }
        .faq-section .container {
            padding: 0 10px;
            max-width: none;
        }
        .faq-header h2 {
            font-size: 36px;
        }
        .faq-header p {
            font-size: 20px;
        }
        .faq-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .faq-question {
            font-size: 18px;
            padding: 24px 28px;
        }
        .faq-question::after {
            font-size: 32px;
        }
        .faq-answer p {
            font-size: 17px;
        }
        .faq-item.active .faq-answer {
            padding: 0 28px 32px;
        }
    }
	
	
	
	
	
	  .final-section {
        padding: 140px 20px 0;
        background: var(--bg-secondary);
    }
    .final-section .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .cta-full {
        background: linear-gradient(135deg, var(--accent-primary), #26B0A2);
        border-radius: 32px;
        padding: 80px 60px;
        text-align: center;
        box-shadow: 0 40px 100px rgba(46, 196, 182, 0.4);
        margin-bottom: 100px;
        transition: all 0.4s ease;
    }
    .cta-full:hover {
        transform: translateY(-20px);
        box-shadow: 0 60px 120px rgba(46, 196, 182, 0.5);
    }
    .cta-title {
        font-size: 52px;
        font-weight: 900;
        line-height: 1.2;
        color: #0F1115;
        margin-bottom: 32px;
    }
    .cta-subtitle {
        font-size: 28px;
        color: #0F1115;
        margin-bottom: 60px;
        opacity: 0.9;
    }
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 32px;
    }
    .cta-btn-main {
        padding: 28px 60px;
        background: var(--accent-cta);
        color: #0F1115;
        font-size: 24px;
        font-weight: 900;
        border-radius: 32px;
        box-shadow: 0 20px 50px rgba(255, 209, 102, 0.5);
        transition: all 0.4s ease;
    }
    .cta-btn-main:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(255, 209, 102, 0.6);
    }
    .cta-btn-wa {
        padding: 28px 60px;
        background: #27A7E7;
        color: #FFFFFF;
        font-size: 24px;
        font-weight: 700;
        border-radius: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        box-shadow: 0 20px 50px rgba(37, 115, 211, 0.4);
        transition: all 0.4s ease;
    }
    .cta-btn-wa:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(37, 115, 211, 0.4);
    }
    .contacts-grid {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 60px;
        align-items: stretch; 
    }
    .contacts-info {
        background: rgba(22, 26, 32, 0.6);
        backdrop-filter: blur(12px);
        border: 1px solid var(--border-line);
        border-radius: 32px;
        padding: 20px 40px;
		margin: 40px auto 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .contacts-phone {
        font-size: 42px;
        font-weight: 900;
        color: var(--text-primary);
        margin-bottom: 48px;
        text-align: center;
    }
    .contacts-phone a {
        color: inherit;
        transition: color 0.3s ease;
    }
    .contacts-phone a:hover {
        color: var(--accent-primary);
    }
    .contacts-messengers {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 48px;
    }
    .contacts-messengers a {
        font-size: 56px;
        transition: all 0.3s ease;
    }
    .contacts-messengers a:hover {
        transform: translateY(-10px);
        color: var(--accent-primary);
    }
    .contacts-schedule {
        text-align: center;
        font-size: 24px;
        color: var(--text-secondary);
        line-height: 1.8;
    }

    .mobile-callback{
        display: none;
    }
    /* Адаптив */
    @media (max-width: 1024px) {


        .mobile-callback{
            display: block;
        }
        .cta-full {
            padding: 60px 40px;
        }
        .cta-title {
            font-size: 44px;
        }
        .cta-subtitle {
            font-size: 24px;
        }
        .contacts-grid {
            grid-template-columns: 1fr;
            gap: 80px;
        }
        .contacts-map {
            height: 500px;
        }
    }


    @media (max-width: 768px) {



		.final-section {
            padding: 100px 0; 
        }
        .final-section .container {
            padding: 0 10px;
            max-width: none;
        }
        .cta-title {
            font-size: 36px;
        }
        .cta-subtitle {
            font-size: 20px;
        }
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        .cta-btn-main,
        .cta-btn-wa {
            padding: 24px 50px;
            font-size: 20px;
            width: 100%;
            max-width: 400px;
        }
        .contacts-phone {
            font-size: 36px;
        }
        .contacts-messengers {
            gap: 32px;
        }
        .contacts-messengers a {
            font-size: 48px;
        }
        .contacts-schedule {
            font-size: 20px;
        }
        .contacts-map {
            height: 400px;
        }
    }


    @media (max-width: 440px) {

        .calc-section .container {
            width: 100%;
            margin-left: 0px;
            padding: 0 5px;
    }

    .why-section .container {

        padding: 0 5px;

    }
    .why-grid, .why-wide-row {
       display: flex;
       flex-direction: column;
    }
    .types-section .container {
        padding: 0 5px;}
    .types-grid {

        display: flex;
        flex-direction: column;

    }

}

.multi-window-show{
    cursor: pointer;
}

.header-logo, .header-mobile-logo{
    text-decoration: none;
}


/* BLOG */

  
.blog-cont{padding:160px 0;background:#fff;position:relative;overflow:hidden;isolation:isolate}
.container-blog{max-width:1440px;width:100%;margin:0 auto;padding:0 60px;position:relative;z-index:2;box-sizing:border-box}
.blog-cont a{text-decoration:none !important;color:inherit}

.blog__header{
    display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:32px;align-items:start;margin-bottom:48px
}
.blog__title-wrap{
    grid-column:1 / 3;display:flex;flex-direction:column;align-items:flex-start
}
.blog__main-title{
    font-size:52px;font-weight:900;line-height:1.2;color:#000000;margin:0;
    opacity:0;transform:translateY(30px);
    animation:fadeUp 1.4s ease-out .4s forwards
}
.blog__subtitle{
    font-size:26px;line-height:1.5;color:#1e2a38;margin:20px 0 0;max-width:680px;
    opacity:0;transform:translateY(20px);
    animation:fadeUp 1.4s ease-out .8s forwards
}
.blog__main-btn{
    margin-top:32px;padding:18px 44px;font-size:18px;font-weight:800;color:#ffffff !important;
/*         background:linear-gradient(135deg,#2c5f7a,#46728a); */
    background-color:#1E88E5 ;
    
    border-radius:50px;
    box-shadow:0 10px 30px rgba(44,95,122,.35);
    display:flex;align-items:center;justify-content:center;
    opacity:0;transform:translateY(30px);
    animation:fadeUp 1.4s ease-out 1.1s forwards;transition:all .4s
}
.blog__main-btn:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(44,95,122,.5)}

.blog__card{
    background:rgba(255,255,255,.88);backdrop-filter:blur(16px);
    border:4px solid transparent;border-radius:28px;overflow:hidden;display:flex;flex-direction:column;height:100%;
    background:linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) padding-box,
                linear-gradient(135deg,#2c5f7a,#46728a,#1E88E5,#FFC107) border-box;
    box-shadow:0 12px 40px rgba(0,0,0,.12);transition:all .45s;
    opacity:0;transform:translateY(30px);animation:fadeUp 1s ease-out forwards
}
.blog__card:hover{transform:translateY(-10px);box-shadow:0 24px 60px rgba(0,0,0,.2)}
.blog__card-img{width:100%;height:180px;object-fit:cover;flex-shrink:0}
.blog__card-content{padding:28px 24px;flex-grow:1;display:flex;flex-direction:column}
.blog__card-title{font-size:18px;font-weight:800;color:#004c80;line-height:1.3;margin-bottom:12px}
.blog__card-text{font-size:17px;line-height:1.6;color:#1e2a38;flex-grow:1;margin-bottom:20px}
.blog__card-btn{
    margin-top:auto;padding:16px 20px;
    background-color: #FFC107;
  /*   background:linear-gradient(135deg,#ff8c38,#e63946,#a0522d,#8b4513); */
    color:#000000;font-weight:800;font-size:16px;text-align:center;border-radius:12px;
    transition:all .35s;display:flex;align-items:center;justify-content:center;
    text-decoration: none;
}
.blog__card:hover .blog__card-btn{transform:scale(1.05);box-shadow:0 8px 25px rgba(230,57,70,.5)}

.blog__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}

/* Анимации появления */
.blog__header > .blog__card:nth-of-type(1){animation-delay:.9s}
.blog__header > .blog__card:nth-of-type(2){animation-delay:1.1s}
.blog__grid .blog__card:nth-child(1){animation-delay:1.3s}
.blog__grid .blog__card:nth-child(2){animation-delay:1.5s}
.blog__grid .blog__card:nth-child(3){animation-delay:1.7s}
.blog__grid .blog__card:nth-child(4){animation-delay:1.9s}

@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}




.blog-floating-img{
    position:absolute;top:50%;right:-220px;transform:translateY(-50%);
    width:820px;height:100%;background:url('') center/cover no-repeat;
    border-radius:32px;opacity:0;pointer-events:none;z-index:1;
    transition:all 2.2s cubic-bezier(.16,1,.3,1)
}
.blog-cont.animated .blog-floating-img{right:20px;opacity:.15}

/* Адаптив */
@media(max-width:1200px){
    .container-blog{padding:0 40px}
    .blog__header{grid-template-columns:1fr 1fr;gap:32px}
    .blog__title-wrap{grid-column:1/-1;text-align:center;align-items:center}
    .blog__subtitle{font-size:19px;max-width:100%}
}
@media(max-width:900px){
    .container-blog{padding:0 30px}
    .blog__header{grid-template-columns:1fr}
    .blog__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
    .container-blog{padding:0 20px}
    .blog-cont{padding:90px 0}
    .blog__main-title{font-size:36px}
    .blog__subtitle{font-size:17px;margin:16px 0 0}
    .blog__main-btn{margin-top:28px;padding:16px 36px;font-size:17px}
    .blog__card-img{height:160px}
    .blog__card-content{padding:24px 20px}
    .blog__card-title{font-size:20px}
    .blog__card-text{font-size:16.5px}
}
@media(max-width:540px){
    .container-blog{padding:0 15px}
    .blog__grid{grid-template-columns:1fr}
    .blog__card-img{height:200px}
    .blog__main-btn{min-width:auto;width:100%;max-width:320px}
    .blog__subtitle{font-size:16px}
}


.articles-hero{padding:160px 60px;
    
    
  background-image: url("/userfiles/images/fon-bg-2.webp");
  background-size: cover;
  background-repeat: no-repeat;
/*   background:linear-gradient(135deg,rgba(11,30,45,.96),rgba(26,51,68,.93) 30%,rgba(47,80,112,.86) 65%,rgba(160,77,43,.82)); */
  
  
  position:relative;overflow:hidden}
.articles-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,30,60,.9),rgba(120,80,50,.15));pointer-events:none}
.articles-hero .container-articles{max-width:1440px;margin:0 auto;position:relative;z-index:2}
.articles__main-title{font-size:56px;font-weight:900;line-height:1.2;background:linear-gradient(135deg,#ffbb66,#ffcc88,#ffaa44,#ff9933);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;opacity:0;transform:translateY(30px);animation:fadeUp 1.4s ease-out .4s forwards}
.articles__subtitle{font-size:26px;line-height:1.5;color:#000000;max-width:680px;opacity:0;transform:translateY(20px);animation:fadeUp 1.4s ease-out .8s forwards;margin:24px 0}
.articles__header{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:40px;align-items:start}
.articles__title-wrap{grid-column:1 / 3;display:flex;flex-direction:column;justify-content:center;margin-top:50px;}
.articles-cont{padding:160px 0;background:#fff;position:relative;overflow:hidden}
.container-articles{max-width:1440px;width:100%;margin:0 auto;padding:0 60px;box-sizing:border-box}
.articles__card-img{width:100%;height:260px;object-fit:cover;flex-shrink:0}
.articles__card-content{padding:32px 28px;flex-grow:1;display:flex;flex-direction:column}
.articles__card-title{font-size:20px;font-weight:800;color:#004c80;line-height:1.3;margin-bottom:14px}
.articles__card-text{font-size:17px;line-height:1.6;color:#1e2a38;flex-grow:1;margin-bottom:20px}
.articles__card-btn{margin-top:auto;padding:16px 20px;background:linear-gradient(135deg,#ff8c38,#e63946,#a0522d,#8b4513);color:#fff;font-weight:800;font-size:16px;text-align:center;border-radius:12px;transition:all .35s;display:flex;align-items:center;justify-content:center}
.articles__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}
.articles__header > .articles__card:nth-of-type(1){animation-delay:1s}
.articles__header > .articles__card:nth-of-type(2){animation-delay:1.2s}
.articles__grid .articles__card:nth-child(1){animation-delay:1.4s}
.articles__grid .articles__card:nth-child(2){animation-delay:1.6s}
.articles__grid .articles__card:nth-child(3){animation-delay:1.8s}
.articles__grid .articles__card:nth-child(4){animation-delay:2s}
.articles__grid .articles__card:nth-child(5){animation-delay:2.2s}
.articles__grid .articles__card:nth-child(6){animation-delay:2.4s}
.articles__grid .articles__card:nth-child(7){animation-delay:2.6s}
.articles__grid .articles__card:nth-child(8){animation-delay:2.8s}

@media(max-width:1200px){
  .articles-hero{padding:140px 40px}
  .articles__header{grid-template-columns:1fr 1fr}
  .articles__title-wrap{grid-column:1/-1;text-align:center}
}
@media(max-width:900px){
  .articles-hero{padding:120px 0}
  .articles__header{grid-template-columns:1fr}
  .articles__grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .articles-hero{padding:100px 0}
  .articles__main-title{font-size:42px}
  .articles__subtitle{font-size:22px}
  .articles__card-img{height:200px}
  .articles-cont{padding:100px 0}
}
@media(max-width:540px){
  .articles-hero{padding:80px 0}
  .articles__main-title{font-size:36px}
  .articles__grid{grid-template-columns:1fr}
}
