.lpq-ultimate-wrap {
    width: 100%;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    padding-top: 80px;
    overflow: visible;
}

.lpq-header-area {
    padding-left: 0;
    padding-right: 20px;
    margin-bottom: 300px;
}

.lpq-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #0062ff;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 20px;
}

.lpq-header-area h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(38px, 7vw, 90px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    color: #1a1d23;
    margin: 0;
}

.lpq-full-grid {
    display: flex;
    width: 100%;
    border-top: 2px solid #1a1d23;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lpq-grid-cell {
    flex: 1;
    min-height: 480px;
    padding: 60px 40px;
    border-right: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.lpq-grid-cell:first-child { padding-left: 0; }
.lpq-grid-cell:first-child .cell-top,
.lpq-grid-cell:first-child .cell-main { padding-left: 10px; }
.lpq-grid-cell:last-child { border-right: none; }

.lpq-grid-cell:hover {
    background: linear-gradient(180deg, #0056b3 0%, #00d4ff 100%) !important;
    padding-top: 80px;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.3);
    z-index: 2;
}

.cell-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cell-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #1a1d23;
    transition: color 0.4s ease;
}

.cell-arrow {
    color: #1a1d23;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.lpq-grid-cell:hover .cell-num,
.lpq-grid-cell:hover h3,
.lpq-grid-cell:hover p {
    color: #ffffff !important;
}

.lpq-grid-cell:hover .cell-arrow {
    color: #ffffff;
    opacity: 1;
    transform: translateX(0);
}

.cell-main h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1d23;
    transition: color 0.4s ease;
}

.cell-main p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    max-width: 90%;
    transition: color 0.4s ease;
}

@media (max-width: 1024px) {
    .lpq-full-grid { flex-wrap: wrap; }
    .lpq-grid-cell { flex: 0 0 50%; border-bottom: 1px solid rgba(0,0,0,0.1); padding-left: 40px !important; }
}

@media (max-width: 767px) {
    .lpq-header-area { margin-bottom: 50px; }
    .lpq-header-area h2 { font-size: 48px; }
    .lpq-grid-cell { flex: 0 0 100%; min-height: 350px; border-right: none; padding-left: 20px !important; }
}