/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background: #000;
    line-height: 1.6;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Верхнее меню */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 1640px;
    width: calc(100% - 40px);
    border-radius: 10px;
    /* Матовое стекло */
    /*background: rgba(59, 74, 93, 0.15);*/
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(59, 74, 93, 0.25);

}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 70px;
}


/* Логотип */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo a:hover .logo-text {
    color: #667eea;
}

/* Навигация */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Действия в шапке */
.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.phone a:hover {
    color: #3B4A5D;
}

.btn-contact {
    background: #3B4A5D;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem!important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-contact:hover {
    background: #2A3442;

    box-shadow: 0 8px 25px rgba(59, 74, 93, 0.3);
}

/* Иконка телефона для мобильных */
.mobile-phone-icon {
    display: none;
    width: 30px;
    height: 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(59, 74, 93, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.mobile-phone-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mobile-phone-icon:hover {
    background: rgba(59, 74, 93, 1);
    transform: scale(1.05);
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Контейнер слайдера */
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 120px;
    border-radius: 20px;
}

/* Анимированный фон с космическими пульсарами */
.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(59, 74, 93, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 70%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(59, 74, 93, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 10% 90%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    animation: cosmicPulse 20s ease-in-out infinite;
    z-index: 1;
}

.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(118, 75, 162, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 30% 80%, rgba(59, 74, 93, 0.3) 0%, transparent 45%),
                radial-gradient(circle at 70% 10%, rgba(102, 126, 234, 0.25) 0%, transparent 40%),
                radial-gradient(circle at 15% 15%, rgba(118, 75, 162, 0.2) 0%, transparent 35%);
    animation: cosmicPulse 25s ease-in-out infinite reverse;
    z-index: 1;
}

/* Анимация космических пульсаров */
@keyframes cosmicPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.1) rotate(90deg);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.9) rotate(180deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.05) rotate(270deg);
    }
}

/* Адаптивность контента для больших экранов (24+ дюймов) */
@media (min-width: 1920px) {
    .slide-content {
        max-width: 1400px;
        gap: 80px;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-description {
        font-size: 1.3rem;
        line-height: 1.7;
    }
    
    .btn {
        padding: 18px 36px;
        font-size: 1.2rem;
    }
}

@media (min-width: 2560px) {
    .slide-content {
        max-width: 1600px;
        gap: 100px;
    }
    
    .slide-title {
        font-size: 4rem;
    }
    
    .slide-description {
        font-size: 1.4rem;
        line-height: 1.8;
    }
    
    .btn {
        padding: 20px 40px;
        font-size: 1.3rem;
    }
}

/* Отключаем анимацию для пользователей с предпочтением уменьшенной анимации */
@media (prefers-reduced-motion: reduce) {
    .slider-container::before,
    .slider-container::after {
        animation: none;
        opacity: 0.3;
    }
}

/* Слайды */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide.active {
    opacity: 1;
}



/* Контент слайда */
.slide-content {
    max-width: 1200px;
    width: 90%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.slide-text {
    color: white;
    text-align: left;
    max-width: 600px;
    flex: 1;
    position: relative;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-img {
    max-width: 100%;
    height: auto;
    /*max-height: 400px;*/
    object-fit: contain;

}

.slide-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Кнопки */
.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Общие стили для всех кнопок */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    margin: 0;
    float: none;
    clear: none;
}

.btn-primary {
    background: #3B4A5D;
    color: #fff;
}

.btn-primary:hover {
    background: #2A3442;
}

.btn-primary:active {
    background: #1F2937;
}

.btn-primary:focus {
    outline: none;
}


.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3B4A5D;
    color: #3B4A5D;
    transform: translateY(-2px);
}

/* Навигация слайдера */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
    transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Стрелки навигации */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(59, 74, 93, 0.25);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease, pointer-events 0.3s ease;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 4px 16px rgba(59, 74, 93, 0.15);
 
}

.nav-prev {
    left: 30px;
}

.nav-next {
    right: 30px;
}

.nav-arrow:hover {
    background: rgba(59, 74, 93, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 74, 93, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .portfolio-card {
        width: 280px;
        height: 280px;
    }
    
    .header-actions {
        gap: 20px;
    }
    
    .phone a {
        font-size: 1rem;
    }
    
    .btn-contact {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .nav-prev {
        left: 20px;
    }
    
    .nav-next {
        right: 20px;
    }
}

/* Скрываем кнопку в меню на десктопе */
.mobile-contact-btn {
    display: none;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: stretch;
        position: relative;
    }
    
    /* Скрываем кнопку в header-actions на мобильных */
    .header-actions .btn-contact {
        display: none;
    }
    
    /* Показываем кнопку в навигационном меню на мобильных */
    .mobile-contact-btn {
        display: block !important;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 20px;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Стили для кнопки в навигационном меню */
    .nav-contact-btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
        background: #3B4A5D !important;
        color: white !important;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease, color 0.3s ease;
    }
    
    .nav-contact-btn:hover {
        background: #2A3442 !important;
    }
    
    /* Создаем верхнюю строку из логотипа и header-actions */
    .logo {
        order: 1;
    }
    
    .nav {
        order: 3;
    }
    
    .header-actions {
        order: 2;
        position: absolute;
        top: 0;
        right: 0;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    /* Мобильное меню */
    .nav {
        position: static;
        width: 100%;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        /* Анимация раздвижения */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav.active {
        max-height: 400px; /* Достаточно для 4 пунктов меню + кнопка */
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 15px;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        margin: 4px 12px;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease, font-weight 0.3s ease, color 0.3s ease;
    }
    
    .nav.active .nav-link {
        animation: slideInLeft 0.4s ease forwards;
    }
    
    .nav.active .nav-item:nth-child(1) .nav-link { animation-delay: 0.1s; }
    .nav.active .nav-item:nth-child(2) .nav-link { animation-delay: 0.15s; }
    .nav.active .nav-item:nth-child(3) .nav-link { animation-delay: 0.2s; }
    .nav.active .nav-item:nth-child(4) .nav-link { animation-delay: 0.25s; }
    .nav.active .nav-item:nth-child(5) .nav-contact-btn { 
        animation: slideInLeft 0.4s ease forwards; 
        animation-delay: 0.3s;
        opacity: 1 !important;
        transform: translateX(0) !important;
        display: block !important;
        margin:0 auto;
    }
    
    .nav-link:hover {
        color: rgba(255, 255, 255, 1);
        font-weight: 700;
        transform: translateX(4px);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-phone-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-actions {
        gap: 15px;
        align-items: center;
    }
    
    .phone {
        display: none;
    }
    
    .btn-contact {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .slide-content {
        width: 100%;
        height: 100vh;
        padding: 0;
        flex-direction: column;
        gap: 0;
    }
    
    .slide-text {
        padding: 40px 20px;
        max-width: none;
        flex: 1;
        order: 2;
    }
    
    .slide-image {
        order: 1;
        height: 50vh;
    }
    
    .slide-img {
        height: 50vh;
        object-fit: cover;
    }
    
    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .nav-prev {
        left: 15px;
    }
    
    .nav-next {
        right: 15px;
    }
    
    .slider-nav {
        bottom: 20px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 12px;
        height: 12px;
    }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .nav-prev {
        left: 10px;
    }
    
    .nav-next {
        right: 10px;
    }
}

/* Анимация появления контента */
.slide.active .slide-text {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 0px; /* Отступ для фиксированного заголовка */
}

/* Общие секции */
.section {
    padding: 80px 0;
    background: #000;
}

.section-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #aaa;
    margin-bottom: 40px;
}

/* Цены на услуги */
.pricing {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 74, 93, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing .section-title {
    color: #fff;
    text-align: left;
    margin-bottom: 16px;
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* Спойлер для мобильных */
.pricing-spoiler {
    display: none;
    margin-bottom: 30px;
}

.pricing-spoiler-btn {
    width: 100%;
    background: linear-gradient(135deg, #3B4A5D 0%, #2A3441 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-spoiler-btn:hover {
    background: linear-gradient(135deg, #4A5A6D 0%, #3A4451 100%);
    transform: translateY(-2px);
}

.spoiler-text {
    font-weight: 600;
}

.spoiler-action {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.spoiler-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.pricing-spoiler-btn.active .spoiler-arrow {
    transform: rotate(180deg);
}


/* Сетка цен */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(59, 74, 93, 0.15) 0%, rgba(59, 74, 93, 0.05) 100%);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B4A5D, #667EEA, #764BA2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-material {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.pricing-price {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-price {
    opacity: 0;
    transform: translateY(-10px);
}

.pricing-price .pricing-label + * {
    color: #667EEA !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-card-btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing-card:hover .pricing-card-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pricing-card-btn:hover {
    background: linear-gradient(135deg, #7B8CEB 0%, #8A5CB2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

/* Утилитарный класс для мобильных */
.mobile-only {
    display: none;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing .section-subtitle {
        margin-bottom: 40px;
    }
    
    .mobile-only {
        display: block;
    }
    
    .pricing-grid {
        display: none;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    
    .pricing-grid.active {
        display: grid;
        animation: slideDown 0.3s ease;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-material {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .pricing-details p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .pricing-card-btn {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 40px 0;
    }
    
    .pricing-spoiler-btn {
        padding: 16px;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .pricing-card-btn {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Портфолио */
.portfolio {
    background: #050505;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 120px;
}

/* Автоматическая карусель */
.portfolio-carousel {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    contain: layout style paint;
    transform: translateZ(0);
    will-change: transform;
}

.portfolio-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: max-content;
}

.portfolio-row {
    display: flex;
    gap: 20px;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    width: max-content;
}


/* Первый ряд - медленнее */
.portfolio-row:nth-child(1) {
    animation: scrollLeft 80s linear infinite;
}

/* Второй ряд - средняя скорость, обратное направление */
.portfolio-row:nth-child(2) {
    animation: scrollRight 70s linear infinite;
}

/* Третий ряд - быстрее */
.portfolio-row:nth-child(3) {
    animation: scrollLeft 60s linear infinite;
}

/* Интерактивность карусели */
.portfolio-row.paused {
    animation-play-state: paused !important;
}

/* Анимации карусели */
@keyframes scrollLeft {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollRight {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

.portfolio-card {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(59, 74, 93, 0.05);
    border: 1px solid rgba(59, 74, 93, 0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
    will-change: transform;
    transform: translateZ(0);
}


.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    background: linear-gradient(135deg, rgba(59, 74, 93, 0.1), rgba(59, 74, 93, 0.05));
    transform-origin: center center;
    opacity: 1;
    transition: filter 0.3s ease;
}

.portfolio-row:hover .portfolio-card img {
    filter: grayscale(0%);
}

.portfolio-card img[loading="lazy"] {
    background: linear-gradient(135deg, rgba(59, 74, 93, 0.15), rgba(59, 74, 93, 0.1));
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    padding: 40px 20px 20px;
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Модальное окно для увеличения изображений */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(59, 74, 93, 0.1);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(59, 74, 93, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.image-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #3B4A5D;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: #2A3442;
    transform: scale(1.1);
}

.image-modal-info {
    text-align: center;
    margin-top: 10px;
    color: white;
    flex-shrink: 0;
}

.image-modal-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.image-modal-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Анимированный фон убран для исправления проблем с остановкой */

/* Учитываем предпочитаемое сокращение анимаций */
@media (prefers-reduced-motion: reduce) {
    .portfolio-row { 
        animation: none !important; 
    }
}


/* Преимущества - Крутое оформление */
.advantages {

    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 74, 93, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 91, 109, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(42, 52, 66, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.advantages .container {
    position: relative;
    z-index: 2;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.adv-item {
    background: transparent;
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Вертикальные разделители между элементами */
.adv-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(59, 74, 93, 0.3) 20%,
        rgba(59, 74, 93, 0.6) 50%,
        rgba(59, 74, 93, 0.3) 80%,
        transparent 100%
    );
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Убираем линию справа от блока "Широкий выбор материалов" */
.adv-item:nth-child(3)::after {
    display: none;
}

.adv-item:hover {
    transform: translateY(-4px);
}

.adv-item:hover::after {
    opacity: 1;
}

/* Скрываем иконки */
.adv-icon {
    display: none;
}

.adv-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.adv-item:hover .adv-title {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.adv-text {
    color: #ccc;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.adv-item:hover .adv-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Задержки анимации для разных элементов */

.adv-item:nth-child(1) { animation-delay: 0.1s; }
.adv-item:nth-child(2) { animation-delay: 0.2s; }
.adv-item:nth-child(3) { animation-delay: 0.3s; }
.adv-item:nth-child(4) { animation-delay: 0.4s; }
.adv-item:nth-child(5) { animation-delay: 0.5s; }
.adv-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* CTA баннеры */
.cta {
    background: linear-gradient(135deg, rgba(59,74,93,0.12) 0%, rgba(42,52,66,0.12) 100%);
}

.cta-secondary {
    background: linear-gradient(135deg, rgba(74,91,109,0.15) 0%, rgba(59,74,93,0.15) 100%);
}

.cta-inner {
    background: rgba(59, 74, 93, 0.08);

    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
}

.cta-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text {
    color: #ccc;
    margin-bottom: 20px;
}

/* О компании */
.about {
    background: #050505;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-text p {
    color: #ccc;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.about-list {
    color: #bbb;
    list-style: none;
    padding-left: 0;
}

.about-list li {
    position: relative;
    padding-left: 22px;
    margin: 8px 0;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #3B4A5D;
}

.about-img {
    float:right
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width:100%
}

/* Партнёры */
.partners {
    background: #000;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partners-grid img,
.partner-logo-white-bg {
    width: 200px;
    height: 120px;
    flex-shrink: 0;
}

.partners-grid img {
    object-fit: contain;
    filter: contrast(0.95) brightness(1.2);
    opacity: 0.9;
}

.partner-logo-white-bg {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.partner-logo-white-bg img {
    width: auto !important;
    height: auto !important;
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
}

/* Подвал сайта */
.footer {
    background: #0f0f0f;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal {
    font-size: 0.8rem;
    color: #474747;
    margin-top: 10px;
    text-align: justify;
}

.footer-link:hover {
    color: #3B4A5D;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-weight: 600;
    /*color: #3B4A5D;*/
    font-size: 0.9rem;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3B4A5D;
}

.contact-text {
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3B4A5D;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #3B4A5D;
}

/* Адаптивность подвала */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Адаптивность новых секций */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .adv-item {
        padding: 28px 20px;
        text-align: center;
    }
    
    /* На планшетах разделители только между колонками */
    .adv-item:nth-child(odd):not(:nth-last-child(-n+2))::after {
        display: block;
    }
    
    .adv-item:nth-child(even)::after {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        gap: 30px;
    }
    
    .partners-grid img,
    .partner-logo-white-bg {
        width: 180px;
        height: 100px;
    }
    
    .partner-logo-white-bg {
        padding: 18px;
    }
    
    .partner-logo-white-bg img {
        max-width: 144px;
        max-height: 64px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px; /* Уменьшенный отступ для мобильных */
    }
    
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }
    
    .adv-item {
        padding: 24px 20px;
        text-align: center;
    }
    
    /* На мобильных убираем вертикальные разделители и добавляем горизонтальные */
    .adv-item:not(:last-child)::after {
        top: auto;
        bottom: -16px;
        right: 20%;
        left: 20%;
        width: 60%;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent 0%,
            rgba(59, 74, 93, 0.3) 20%,
            rgba(59, 74, 93, 0.6) 50%,
            rgba(59, 74, 93, 0.3) 80%,
            transparent 100%
        );
    }
    
    .adv-title {
        font-size: 1.2rem;
    }
    
    .adv-text {
        font-size: 0.95rem;
    }
    .portfolio-card {
        width: 240px;
        height: 180px;
    }
    
    /* Замедляем анимацию на мобильных */
    .portfolio-row:nth-child(1) {
        animation-duration: 70s;
    }
    
    .portfolio-row:nth-child(2) {
        animation-duration: 60s;
    }
    
    .portfolio-row:nth-child(3) {
        animation-duration: 50s;
    }
    .partners-grid {
        flex-direction: column;
        gap: 25px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .partners-grid img,
    .partner-logo-white-bg {
        width: 280px;
        height: 80px;
    }
    
    .partner-logo-white-bg {
        padding: 15px;
    }
    
    .partner-logo-white-bg img {
        max-width: 250px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 90px; /* Еще меньший отступ для малых экранов */
    }
    
    .partners-grid {
        flex-direction: column;
        gap: 20px;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .partners-grid img,
    .partner-logo-white-bg {
        width: 260px;
        height: 70px;
    }
    
    .partner-logo-white-bg {
        padding: 12px;
    }
    
    .partner-logo-white-bg img {
        max-width: 236px;
        max-height: 46px;
    }
}

.content {color:white}

/* Общая таблица */
.content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
  color: #e0e0e0;
  background-color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

/* Заголовки */
.content thead th {
  background-color: #252525;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #333;
}

/* Ячейки тела */
.content tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #2a2a2a;
  vertical-align: top;
}

/* Чередование строк */
.content tbody tr:nth-child(even) {
  background-color: #1e1e1e;
}

/* Ховер */
.content tbody tr:hover {
  background-color: #252a33;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .content table,
  .content thead,
  .content tbody,
  .content th,
  .content td,
  .content tr {
    display: block;
  }

  .content thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .content tr {
    border: 1px solid #333;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 8px;
    background-color: #1a1a1a;
  }

  .content td {
    border: none;
    position: relative;
    padding-left: 50% !important;
    text-align: right;
  }

  .content td:before {
    content: attr(data-label) ": ";
    position: absolute;
    left: 16px;
    width: 45%;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
  }
}








/* Заголовок статьи */
.content h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.2;
  color: #ffffff;
}

/* Подзаголовки */
.content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
  color: #ffffff;
}

.content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: #cccccc;
}

/* Основной текст */
.content p {
  margin: 0 0 18px;
}

/* Списки */
.content ul,
.content ol {
  margin: 16px 0 20px 24px;
  padding-left: 0;
}

.content li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.content ul {
  list-style: none;
  position: relative;
}

.content ul li::before {
  content: "•";
  color: #4da6ff; /* Светло-голубой акцент — под стиль MSSFAB */
  font-weight: bold;
  position: absolute;
  left: 0;
  margin-left: -16px;
}

/* Ссылки */
.content a {
  color: #4da6ff;
  text-decoration: none;
  transition: color 0.2s;
}

.content a:hover {
  color: #7fc8ff;

}

/* Цитаты / блоки рекомендаций */
.content blockquote {
  margin: 24px 0;
  padding: 20px;
  background-color: #1e1e1e; /* Чуть светлее фона */
  border-left: 4px solid #4da6ff;
  border-radius: 0 8px 8px 0;
  font-style: normal;
  color: #e0e0e0;
  font-size: 16px;
}

/* Жирный текст */
.content strong {
  color: #ffffff;
  font-weight: 600;
}

/* Код / технические термины */
.content code {
  background-color: #2a2a2a;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.95em;
  color: #ff7eb3; /* Розоватый — как в технических темах */
}

/* Хештеги или примечания */
.content p em {
  color: #888888;
  font-style: normal;
  font-size: 15px;
  margin-top: 30px;
  display: block;
}

/* Отступы для таблиц */
.content table {
  margin: 24px 0;
}





/* Список статей */
.blog-posts {
  display: grid;
  gap: 40px;
  margin: 40px 0;
}

.blog-post {
  padding: 24px;
  background-color: #1a1a1a;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.post-image img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.post-date {
  font-size: 14px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.post-title {
  font-size: 22px;
  margin: 0 0 12px;
}

.post-title a {
  color: #ffffff;
  text-decoration: none;
}

.post-title a:hover {
  color: #4da6ff;
}

.post-excerpt {
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 16px;
}

.post-read-more {
  color: #4da6ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.post-read-more:hover {
  text-decoration: underline;
}

/* Пагинация */
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 8px;
  margin: 32px 0;
  justify-content: center;
}

.pagination-item a {
  display: block;
  padding: 6px 12px;
  color: #ccc;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 4px;
}

.pagination-item a:hover {
  background-color: #252525;
  color: #4da6ff;
}

.pagination-item.active {
  background-color: #252525;
  color: #4da6ff;
  padding: 6px 12px;
  border: 1px solid #4da6ff;
  border-radius: 4px;
}


.breadcrumb {
  font-size: 15px;
  color: #888;
  margin: 16px 0 24px;
  padding: 0 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb a {
  color: #4da6ff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #ccc;
}






/* Вариант 2: Современные карточки */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.blog-modern-card {
    background: #2d2d2d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-modern-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-modern-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.blog-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #007bff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-card__title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card__title a {
    color: white;
    text-decoration: none;
}



.blog-card__excerpt {
    color: #bababa;
    line-height: 1.6;
    margin-bottom: 1rem;
}



.blog-card__link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none!important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-card__link:hover {

    transform: translateX(3px);
}

.blog-card__link svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-card__link:hover svg {
    transform: translateX(3px);
}

.content-bg {
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);}

#content section {background:none}