
        :root {
            --primary-color: #3f66ff;
            --secondary-color: #77afee;
            --accent-cyan: #09fbd3;
            --accent-pink: #fe53bb;
            --dark-bg: #1d1b33;
            --card-bg: #262342;
            --text-light: #f2f2f2;
            --text-gray: #c6c5d4;
        }


        .laptop-container {
            position: relative;
			width: 600px;
			max-width: 600px;
        }

        .laptop {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; 
        }

        .laptop-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            z-index: 2;
        }

        .laptop-screen {
            position: absolute;
			top: 3.5%;
			left: 14.5%;
			width: 73%;
			height: 85%;
			background: #000;
			border-radius: 2px;
			overflow: hidden;
			z-index: 1;
        }


        .laptop-controls {
            position: absolute;
            top: 50%;
            left: -30px;
            right: -30px;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            z-index: 10;
        }

        .control-btn {
            width: 40px;
			height: 40px;
			border-radius: 50%;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			border: none;
			color: white;
			font-size: 1.5rem;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: all 0.3s ease;
        }

        .control-btn:hover {
            transform: scale(1.1);
        }

        .screen-content {
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .owl-carousel {
            width: 100%;
            height: 100%;
        }

        .owl-carousel .owl-stage-outer,
        .owl-carousel .owl-stage,
        .owl-carousel .owl-item {
            height: 100%;
        }

        .screenshot {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #111;
        }

        .screenshot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .owl-theme .owl-nav {
            display: none; 
        }

        .owl-theme .owl-dots {
            position: absolute;
            bottom: 10px;
            width: 100%;
        }

        .owl-theme .owl-dots .owl-dot span {
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            background: var(--accent-cyan);
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title h1 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-gray);
            font-size: 1.2rem;
        }


        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            .laptop-container {
                width: 95%;
            }
            
            .section-title h1 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .control-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .laptop-controls {
                left: -60px;
                right: -60px;
            }
        }

        @media (max-width: 480px) {
            .section-title h1 {
                font-size: 1.75rem;
            }
            
            .laptop-controls {
                left: -40px;
                right: -40px;
            }
            
            .control-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

.portfolio-page__top-param {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-page__top-param:hover {
    transform: translateY(-5px);
}

.portfolio-page__top-param::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-page__top-param::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: #764ba2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-page__top-param:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

.portfolio-page__top-param:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

.static hr {
border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin: 20px 0;
}


.static a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.static a:hover {
    color: #764ba2;
}

.news__block {
    display: block;
    flex-wrap: wrap;
    gap: 2rem;
}
.vacancy-cat {
    position: relative;
    margin-bottom: 0rem;
}
.news-cat__block {
    margin-bottom: 0rem;
}

/* Стили для таблиц с техническими требованиями */
.tech-table,
.software-table,
.load-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.tech-table th,
.software-table th,
.load-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    border: none;
}

.tech-table th:first-child,
.software-table th:first-child,
.load-table th:first-child {
    text-align: left;
    padding-left: 2rem;
}

.tech-table td,
.software-table td,
.load-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.tech-table td:first-child,
.software-table td:first-child,
.load-table td:first-child {
    text-align: left;
    padding-left: 2rem;
    font-weight: 600;
}

.tech-table tr:nth-child(even),
.software-table tr:nth-child(even),
.load-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.tech-table tr:hover,
.software-table tr:hover,
.load-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.tech-table tr:last-child td,
.software-table tr:last-child td,
.load-table tr:last-child td {
    border-bottom: none;
}

/* Специфические стили для каждой таблицы */
.software-table {
    margin-top: 1rem;
}

.software-table td:nth-child(2) {
    font-weight: 500;
}

.software-table td:nth-child(3) {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.load-table {
    margin-top: 1rem;
}

.load-table td:nth-child(2),
.load-table td:nth-child(3),
.load-table td:nth-child(4) {
    font-weight: 600;
}

.load-table td:nth-child(2) {
    color: #09fbd3;
}

.load-table td:nth-child(3) {
    color: #3f66ff;
}

.load-table td:nth-child(4) {
    color: #fe53bb;
}

.requirements-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgb(38 35 66);
    border-radius: 12px;
    border-left: 4px solid #6876df;
}

.requirements-note h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.requirements-note ul {
    margin: 0;
    padding-left: 0;
}

.requirements-note ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.requirements-note ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Адаптивность для таблиц */
@media (max-width: 1024px) {
    .tech-table,
    .software-table,
    .load-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .tech-table th,
    .software-table th,
    .load-table th,
    .tech-table td,
    .software-table td,
    .load-table td {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .tech-table th:first-child,
    .software-table th:first-child,
    .load-table th:first-child,
    .tech-table td:first-child,
    .software-table td:first-child,
    .load-table td:first-child {
        padding-left: 1rem;
    }
    
    .requirements-note {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tech-table th,
    .software-table th,
    .load-table th,
    .tech-table td,
    .software-table td,
    .load-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Стили для таблицы требований */
.requirements-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.requirements-table:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.requirements-table th {
    color: #ffffff;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(9, 251, 211, 0.3);
}

.requirements-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.requirements-table tr:last-child td {
    border-bottom: none;
}

.requirements-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Стили для различных уровней требований */
.req-minimal {
    border-left: 1px solid #ff6b6b;
}

.req-recommended {
    border-left: 1px solid #f39c12;
}

.req-optimal {
    border-left: 1px solid #27ae60;
}

/* Бейджи для заголовков колонок */
.badge {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 5px;
    font-size: 0.575rem;
    font-weight: 500;
    margin: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-minimal {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.badge-recommended {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.badge-optimal {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

/* Заголовки секций в таблице */
.section-header {
    background: linear-gradient(135deg, rgb(29 27 51) 0%, rgb(38 35 66) 100%) !important;
}

.section-header td {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(9, 251, 211, 0.3);
}

/* Стили для дополнительных блоков */
.recommendations-block {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.recommendations-block:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.2;
}

.recommendations-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Карточки рекомендаций */
.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.recommendation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recommendation-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.recommendation-card.shared {
    border-left-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, transparent 100%);
}

.recommendation-card.vps {
    border-left-color: #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, transparent 100%);
}

.recommendation-card.dedicated {
    border-left-color: #27ae60;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, transparent 100%);
}

.recommendation-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recommendation-card ul {
    margin: 1rem 0;
    padding-left: 1rem;
}

.recommendation-card li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.recommendation-card .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Блок с расширениями PHP */
.php-extensions {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.php-extensions:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.2;
}

.php-extensions h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}


.extensions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.extension-tag {
    background: linear-gradient(135deg, rgba(9, 251, 211, 0.2) 0%, rgba(254, 83, 187, 0.2) 100%);
    color: var(--accent-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(9, 251, 211, 0.3);
    transition: all 0.3s ease;
}

.extension-tag:hover {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 251, 211, 0.3);
}

/* Адаптивность для таблицы */
@media (max-width: 1024px) {
    .requirements-table {
        font-size: 0.9rem;
    }
    
    .requirements-table th,
    .requirements-table td {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .requirements-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .recommendation-cards {
        grid-template-columns: 1fr;
    }
    
    .extensions-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .requirements-table th,
    .requirements-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Дополнительные стили для таблицы стоимости */
.requirements-section {
    margin: 3rem 0;
}

.requirements-table td:nth-child(3) {
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}


/* Стили для блока с дополнительными услугами */
.recommendation-card .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .requirements-table {
        font-size: 0.9rem;
    }
    
    .requirements-table td:nth-child(3) strong {
        font-size: 1.1rem;
    }
    
    .recommendation-cards {
        grid-template-columns: 1fr;
    }
}

/* Стили для блока призыва к действию */
.cta-section {
}

.cta-container {
    width: 100%;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(38, 35, 66, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.cta-container:hover::before {
    opacity: 0.4;
}

.cta-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--dark-bg);
}

.cta-action {
    text-align: center;
}


.cta-custom-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    width: 330px;
}

.cta-custom-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-custom-button:hover::before {
    left: 100%;
}

.cta-custom-button:hover {
    color: white;
    text-decoration: none;
}

.cta-custom-button:active {
    transform: translateY(-1px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-custom-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-note {
    color: var(--text-gray);
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cta-container {
        padding: 2rem 1.5rem;
    }
	
	.static a>img {
		margin: 2rem 2rem 2rem 0rem;
		border-radius: 15px;
		overflow: hidden;
		max-width: 100%;
	}
	
	.static table {
		width: 100%;
		border-collapse: collapse;
		margin: 2rem 0;
		background: var(--card-bg);
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-custom-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-icon {
        font-size: 3rem;
    }
    
    .cta-custom-button {
        width: 100%;
        justify-content: center;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-container {
    animation: fadeInUp 0.6s ease-out;
}