/* ========================================
   ОБНУЛЕНИЕ И ПЕРЕМЕННЫЕ
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Тёмная тема WebBY — фиолетово-синий акцент */
    --bg-dark: #0B0D17;
    --bg-card: #131726;
    --bg-elevated: #1A1F33;
    --accent: #8B5CF6;
    --accent-secondary: #3B82F6;
    --accent-glow: rgba(139, 92, 246, 0.2);
    --accent-strong: rgba(139, 92, 246, 0.5);
    --text-primary: #F1F5F9;
    --text-secondary: #d9e0ec;
    --border: #1E293B;
    --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
}

/* ========================================
   ЛОКАЛЬНЫЕ ШРИФТЫ INTER
   ======================================== */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-cyrillic_latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-cyrillic_latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-cyrillic_latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-cyrillic_latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter-v20-cyrillic_latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 85px;
    overflow-x: hidden;
}

/* ========================================
   КОНТЕЙНЕР
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ========================================
   ТИПОГРАФИКА
   ======================================== */
h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-primary);
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 16px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; margin-bottom: 36px; }
}

/* ========================================
   КНОПКИ
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: #FFFFFF;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ========================================
   ШАПКА (НАВБАР)
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(11, 13, 23, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-weight: 700;
    font-size: 1.15rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.nav-phone:hover {
    filter: brightness(1.2);
}

/* Бургер */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 200;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}

/* Мобильное меню */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 13, 23, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: right 0.35s ease;
        z-index: 150;
        border-left: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 140;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ========================================
   HERO — ПЕРВЫЙ ЭКРАН
   ======================================== */
.hero {
    padding: 80px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.hero-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    background: rgba(19, 23, 38, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.hero-card:hover {
    border-color: var(--accent);
    background: rgba(19, 23, 38, 0.8);
    transform: translateX(6px);
}

.hero-card i {
    font-size: 1.6rem;
    color: var(--accent);
    width: 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
}

/* ========================================
   СЕКЦИИ — ОБЩИЕ ОТСТУПЫ
   ======================================== */
.services,
.portfolio,
.process,
.faq,
.contacts {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .services, .portfolio, .process, .faq, .contacts {
        padding: 60px 0;
    }
}

/* ========================================
   КАРТОЧКИ УСЛУГ
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(19, 23, 38, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.15);
    transform: translateY(-6px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex: 1;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--accent);
    font-size: 0.8rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.service-card .btn {
    text-align: center;
    margin-top: auto;
}

/* ========================================
   ПОРТФОЛИО — КАРТОЧКИ С ХОВЕР-ЭФФЕКТОМ
   ======================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(19, 23, 38, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 50px rgba(139, 92, 246, 0.2);
    transform: translateY(-4px);
}

.portfolio-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    aspect-ratio: 16 / 11;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.03);
}

/* Оверлей — только на десктопе */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 13, 23, 0.92);
    backdrop-filter: blur(8px);
    padding: 18px 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    pointer-events: none;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.overlay-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFF;
    line-height: 1.2;
}

.overlay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.overlay-tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* Мобильные — плашка снизу всегда видна */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .portfolio-card {
        display: flex;
        flex-direction: column;
    }
    
    .portfolio-image {
        position: relative;
    }
    
    .portfolio-img {
        aspect-ratio: 16 / 11;
    }
    
    .portfolio-overlay {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: rgba(19, 23, 38, 0.6);
        border-top: 1px solid rgba(139, 92, 246, 0.1);
        border-radius: 0 0 20px 20px;
    }
}
/* ========================================
   ПРОЦЕСС РАБОТЫ
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 28px 16px;
    background: rgba(19, 23, 38, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.06);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ========================================
   FAQ АККОРДЕОН
   ======================================== */
.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(19, 23, 38, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.25);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    gap: 16px;
}

.faq-question i {
    color: var(--accent);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   КОНТАКТЫ
   ======================================== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacts-info h2 {
    text-align: left;
}

.contacts-info h2::after {
    margin: 16px 0 0 0;
}

.contacts-info > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--accent);
}

.legal-note {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.legal-note i {
    color: var(--accent);
    margin-right: 6px;
}

/* Форма */
.callback-form input,
.callback-form textarea,
.callback-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(19, 23, 38, 0.5);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}

.callback-form input:focus,
.callback-form textarea:focus,
.callback-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
    color: #64748B;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ПЛАВАЮЩИЕ КНОПКИ
   ======================================== */
.float-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99;
}

.telegram-float,
.viber-float {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFF;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.telegram-float {
    background: #0088cc;
}

.viber-float {
    background: #7360f2;
}

.telegram-float:hover,
.viber-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient);
    color: #FFF;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .float-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .telegram-float,
    .viber-float,
    .scroll-to-top {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ========================================
   ФУТЕР
   ======================================== */
.footer {
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 28px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   ПЛАВАЮЩИЕ ФОНОВЫЕ ШАРЫ
   ======================================== */
.floating-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.floating-blur-1 {
    top: 10%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: var(--accent);
    animation: float1 18s ease-in-out infinite;
}

.floating-blur-2 {
    bottom: 5%;
    right: -6%;
    width: 450px;
    height: 450px;
    background: var(--accent-secondary);
    animation: float2 20s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 40px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -30px); }
}

body {
    /* существующие стили остаются */
   /* background-image: 
        linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px; */
}

/* ========================================
   КРАСИВЫЙ АЛЕРТ
   ======================================== */
.custom-alert {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    max-width: 90%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.custom-alert.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.custom-alert-success {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFF;
}

.custom-alert-error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #FFF;
}

.footer-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

/*  Градиентная линия между секциями */
section::after {
    content: '';
    display: block;
    height: 1px;
    margin-top: 40px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.3) 20%, 
        rgba(139, 92, 246, 0.6) 50%, 
        rgba(139, 92, 246, 0.3) 80%, 
        transparent 100%);
}

section:last-child::after {
    display: none;
}


/* Ховер на превью-ссылке */
a[href="/blog/landing-ili-vizitka"]:hover > div:last-child {
    background: rgba(139, 92, 246, 0.25) !important;
    border-color: #8B5CF6 !important;
    transform: scale(1.08);
}

/* Фоновая сетка (только для главной) */
.bg-grid {
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Кнопка-стрелка в превью блога */
.blog-preview-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

a:hover .blog-preview-btn {
    transform: scale(1.08);
}

/* Адаптив для карточек блога на мобильных */
@media (max-width: 768px) {
    article[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    article[style*="grid-template-columns"] a[style*="border-left"] {
        border-left: none !important;
        border-top: 1px solid rgba(139, 92, 246, 0.08) !important;
        min-height: 120px !important;
    }
}